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

wmixvideo / nfe / #7632

23 Jul 2025 01:31AM UTC coverage: 51.794% (+24.8%) from 26.994%
#7632

push

web-flow
Merge e37a5245a into cb8c6ab74

122 of 122 new or added lines in 1 file covered. (100.0%)

2980 existing lines in 402 files now uncovered.

14360 of 27725 relevant lines covered (51.79%)

0.52 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/NFNotaInfoItemImpostoICMS60.java
1
package com.fincatto.documentofiscal.nfe310.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.nfe310.classes.NFNotaInfoImpostoTributacaoICMS;
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 NFNotaInfoItemImpostoICMS60 extends DFBase {
1✔
12
    private static final long serialVersionUID = 1325261415800285939L;
13
    
14
    @Element(name = "orig")
15
    private NFOrigem origem;
16
    
17
    @Element(name = "CST")
18
    private NFNotaInfoImpostoTributacaoICMS situacaoTributaria;
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 setSituacaoTributaria(final NFNotaInfoImpostoTributacaoICMS situacaoTributaria) {
31
        this.situacaoTributaria = situacaoTributaria;
1✔
32
    }
1✔
33

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

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

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

46
    public NFNotaInfoImpostoTributacaoICMS getSituacaoTributaria() {
UNCOV
47
        return this.situacaoTributaria;
×
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