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

wmixvideo / nfe / #8046

24 Jun 2025 02:03AM UTC coverage: 51.461% (+24.5%) from 26.994%
#8046

push

web-flow
Merge 80a657e41 into bb9f583b3

11 of 16 new or added lines in 1 file covered. (68.75%)

2980 existing lines in 402 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/cte200/classes/cte/CTInfoEndereco.java
1
package com.fincatto.documentofiscal.cte200.classes.cte;
2

3
import com.fincatto.documentofiscal.DFPais;
4
import com.fincatto.documentofiscal.validadores.DFStringValidador;
5
import org.simpleframework.xml.Element;
6

7
import com.fincatto.documentofiscal.DFBase;
8
import com.fincatto.documentofiscal.DFUnidadeFederativa;
9

UNCOV
10
public class CTInfoEndereco extends DFBase {
×
11
    private static final long serialVersionUID = -3018557372923308651L;
12

13
    @Element(name = "xLgr")
14
    private String logradouro;
15

16
    @Element(name = "nro")
17
    private String numero;
18

19
    @Element(name = "xCpl", required = false)
20
    private String complemento;
21

22
    @Element(name = "xBairro")
23
    private String bairro;
24

25
    @Element(name = "cMun")
26
    private String codigoMunicipio;
27

28
    @Element(name = "xMun")
29
    private String descricaoMunicipio;
30

31
    @Element(name = "CEP", required = false)
32
    private String cep;
33

34
    @Element(name = "UF")
35
    private DFUnidadeFederativa unidadeFederativa;
36

37
    @Element(name = "cPais", required = false)
38
    private DFPais codigoPais;
39

40
    @Element(name = "xPais", required = false)
41
    private String descricaoPais;
42

43
    // Emitente
44
    @Element(name = "fone", required = false)
45
    private String telefone;
46

47
    public String getLogradouro() {
UNCOV
48
        return this.logradouro;
×
49
    }
50

51
    public void setLogradouro(final String logradouro) {
UNCOV
52
        this.logradouro = logradouro;
×
UNCOV
53
    }
×
54

55
    public String getNumero() {
UNCOV
56
        return this.numero;
×
57
    }
58

59
    public void setNumero(final String numero) {
UNCOV
60
        this.numero = numero;
×
UNCOV
61
    }
×
62

63
    public String getComplemento() {
UNCOV
64
        return this.complemento;
×
65
    }
66

67
    public void setComplemento(final String complemento) {
UNCOV
68
        this.complemento = complemento;
×
UNCOV
69
    }
×
70

71
    public String getBairro() {
UNCOV
72
        return this.bairro;
×
73
    }
74

75
    public void setBairro(final String bairro) {
UNCOV
76
        this.bairro = bairro;
×
UNCOV
77
    }
×
78

79
    public String getCodigoMunicipio() {
UNCOV
80
        return this.codigoMunicipio;
×
81
    }
82

83
    public void setCodigoMunicipio(final String codigoMunicipio) {
UNCOV
84
        this.codigoMunicipio = codigoMunicipio;
×
UNCOV
85
    }
×
86

87
    public String getDescricaoMunicipio() {
UNCOV
88
        return this.descricaoMunicipio;
×
89
    }
90

91
    public void setDescricaoMunicipio(final String descricaoMunicipio) {
UNCOV
92
        this.descricaoMunicipio = descricaoMunicipio;
×
UNCOV
93
    }
×
94

95
    public String getCep() {
UNCOV
96
        return this.cep;
×
97
    }
98

99
    public void setCep(final String cep) {
UNCOV
100
        this.cep = cep;
×
UNCOV
101
    }
×
102

103
    public DFUnidadeFederativa getUnidadeFederativa() {
UNCOV
104
        return this.unidadeFederativa;
×
105
    }
106

107
    public void setUnidadeFederativa(final DFUnidadeFederativa unidadeFederativa) {
UNCOV
108
        this.unidadeFederativa = unidadeFederativa;
×
UNCOV
109
    }
×
110

111
    public void setCodigoPais(final String codigoPais) {
UNCOV
112
        DFStringValidador.tamanho2a4(codigoPais, "Codigo do pais");
×
UNCOV
113
        this.codigoPais = DFPais.valueOfCodigo(codigoPais);
×
114
    }
×
115

116
    public void setCodigoPais(final DFPais codigoPais) {
UNCOV
117
        this.codigoPais = codigoPais;
×
118
    }
×
119

120
    public String getDescricaoPais() {
UNCOV
121
        return this.descricaoPais;
×
122
    }
123

124
    public void setDescricaoPais(final String descricaoPais) {
UNCOV
125
        this.descricaoPais = descricaoPais;
×
126
    }
×
127

128
    public String getTelefone() {
UNCOV
129
        return this.telefone;
×
130
    }
131

132
    public void setTelefone(final String telefone) {
UNCOV
133
        this.telefone = telefone;
×
UNCOV
134
    }
×
135

136
}
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