• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #6494

23 Jun 2025 09:10PM UTC coverage: 51.423% (-1.2%) from 52.669%
#6494

push

web-flow
Merge branch 'master' into master

23 of 677 new or added lines in 32 files covered. (3.4%)

14003 of 27231 relevant lines covered (51.42%)

0.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/NFNotaInfoImpostoTributacaoIS.java
1
package com.fincatto.documentofiscal.nfe400.classes;
2

NEW
3
public enum NFNotaInfoImpostoTributacaoIBSCBS {
×
4

NEW
5
  A_DEFINIR("00", "A Definir");
×
6

7
  private final String codigo;
8
  private final String descricao;
9

NEW
10
  NFNotaInfoImpostoTributacaoIBSCBS(final String codigo, final String descricao) {
×
NEW
11
    this.codigo = codigo;
×
NEW
12
    this.descricao = descricao;
×
NEW
13
  }
×
14

15
  public String getCodigo() {
NEW
16
    return this.codigo;
×
17
  }
18

19
  public String getDescricao() {
NEW
20
    return this.descricao;
×
21
  }
22

23
  public static NFNotaInfoImpostoTributacaoIBSCBS valueOfCodigo(final String codigoICMS) {
NEW
24
    for (final NFNotaInfoImpostoTributacaoIBSCBS icms : NFNotaInfoImpostoTributacaoIBSCBS.values()) {
×
NEW
25
      if (icms.getCodigo().equals(codigoICMS)) {
×
NEW
26
        return icms;
×
27
      }
28
    }
NEW
29
    return null;
×
30
  }
31

32
  @Override
33
  public String toString() {
NEW
34
    return codigo + " - " + descricao;
×
35
  }
36
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc