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

wmixvideo / nfe / #6266

21 Mar 2025 11:46AM UTC coverage: 52.671% (+25.7%) from 26.996%
#6266

push

luciano.antunes
Nota Fiscal Fácil

0 of 21 new or added lines in 2 files covered. (0.0%)

2924 existing lines in 401 files now uncovered.

14002 of 26584 relevant lines covered (52.67%)

0.53 hits per line

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

69.23
/src/main/java/com/fincatto/documentofiscal/nfe310/classes/nota/NFNotaInfoItemImpostoICMSSN500.java
1
package com.fincatto.documentofiscal.nfe310.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.nfe310.classes.NFNotaSituacaoOperacionalSimplesNacional;
5
import com.fincatto.documentofiscal.nfe310.classes.NFOrigem;
6
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
7
import org.simpleframework.xml.Element;
8

9
import java.math.BigDecimal;
10

11
public class NFNotaInfoItemImpostoICMSSN500 extends DFBase {
1✔
12
    private static final long serialVersionUID = 83636755742035633L;
13
    
14
    @Element(name = "orig")
15
    private NFOrigem origem;
16
    
17
    @Element(name = "CSOSN")
18
    private NFNotaSituacaoOperacionalSimplesNacional situacaoOperacaoSN;
19

20
    @Element(name = "vBCSTRet", required = false)
21
    private String valorBCICMSSTRetido;
22

23
    @Element(name = "vICMSSTRet", required = false)
24
    private String valorICMSSTRetido;
25

26
    public void setOrigem(final NFOrigem origem) {
27
        this.origem = origem;
1✔
28
    }
1✔
29

30
    public void setSituacaoOperacaoSN(final NFNotaSituacaoOperacionalSimplesNacional situacaoOperacaoSN) {
31
        this.situacaoOperacaoSN = situacaoOperacaoSN;
1✔
32
    }
1✔
33

34
    public void setValorBCICMSSTRetido(final BigDecimal valorBCICMSSTRetido) {
35
        this.valorBCICMSSTRetido = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorBCICMSSTRetido, "Valor BC ICMS ST Retido ICMSSN500");
1✔
36
    }
1✔
37

38
    public void setValorICMSSTRetido(final BigDecimal valorICMSSTRetido) {
39
        this.valorICMSSTRetido = DFBigDecimalValidador.tamanho15Com2CasasDecimais(valorICMSSTRetido, "Valor ICMS ST Retido ICMSSN500");
1✔
40
    }
1✔
41

42
    public NFOrigem getOrigem() {
UNCOV
43
        return this.origem;
×
44
    }
45

46
    public NFNotaSituacaoOperacionalSimplesNacional getSituacaoOperacaoSN() {
UNCOV
47
        return this.situacaoOperacaoSN;
×
48
    }
49

50
    public String getValorBCICMSSTRetido() {
UNCOV
51
        return this.valorBCICMSSTRetido;
×
52
    }
53

54
    public String getValorICMSSTRetido() {
UNCOV
55
        return this.valorICMSSTRetido;
×
56
    }
57
}
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