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

wmixvideo / nfe / #7646

24 Jun 2025 02:03AM UTC coverage: 51.461% (+1.1%) from 50.347%
#7646

push

web-flow
Merge 80a657e41 into bb9f583b3

13 of 19 new or added lines in 1 file covered. (68.42%)

816 existing lines in 46 files now uncovered.

14017 of 27238 relevant lines covered (51.46%)

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

3
public enum NFNotaInfoImpostoTributacaoIS {
×
4

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

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

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

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

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

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

32
  @Override
33
  public String toString() {
UNCOV
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