• 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

70.0
/src/main/java/com/fincatto/documentofiscal/nfe310/classes/lote/consulta/NFLoteConsulta.java
1
package com.fincatto.documentofiscal.nfe310.classes.lote.consulta;
2

3
import com.fincatto.documentofiscal.DFAmbiente;
4
import com.fincatto.documentofiscal.DFBase;
5
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
6
import org.simpleframework.xml.Attribute;
7
import org.simpleframework.xml.Element;
8
import org.simpleframework.xml.Namespace;
9
import org.simpleframework.xml.Root;
10

11
import java.math.BigDecimal;
12

13
@Root(name = "consReciNFe")
14
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
15
public class NFLoteConsulta extends DFBase {
1✔
16
    private static final long serialVersionUID = 205828108320121890L;
17
    
18
    @Attribute(name = "versao")
19
    private String versao;
20
    
21
    @Element(name = "tpAmb")
22
    private DFAmbiente ambiente;
23
    
24
    @Element(name = "nRec")
25
    private String recibo;
26

27
    public String getVersao() {
UNCOV
28
        return this.versao;
×
29
    }
30

31
    public void setVersao(final BigDecimal versao) {
32
        this.versao = DFBigDecimalValidador.tamanho4Com2CasasDecimais(versao, "Versao");
1✔
33
    }
1✔
34

35
    public DFAmbiente getAmbiente() {
UNCOV
36
        return this.ambiente;
×
37
    }
38

39
    public void setAmbiente(final DFAmbiente ambiente) {
40
        this.ambiente = ambiente;
1✔
41
    }
1✔
42

43
    public String getRecibo() {
UNCOV
44
        return this.recibo;
×
45
    }
46

47
    public void setRecibo(final String recibo) {
48
        this.recibo = recibo;
1✔
49
    }
1✔
50
}
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