• 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

71.43
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/nota/NFNotaInfoCartao.java
1
package com.fincatto.documentofiscal.nfe400.classes.nota;
2

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

7
public class NFNotaInfoCartao extends DFBase {
1✔
8
    private static final long serialVersionUID = 8908558834476720280L;
9
    
10
    @Element(name = "tpIntegra")
11
    private NFTipoIntegracaoPagamento tipoIntegracao;
12

13
    @Element(name = "CNPJ", required = false)
14
    private String cnpj;
15

16
    @Element(name = "tBand", required = false)
17
    private NFOperadoraCartao operadoraCartao;
18

19
    @Element(name = "cAut", required = false)
20
    private String numeroAutorizacaoOperacaoCartao;
21
    
22
    @Element(name = "CNPJReceb", required = false)
23
    private String cnpjBenefPagamento;
24
    
25
    @Element(name = "idTermPag", required = false)
26
    private String identificadorTerminalPagamento;
27

28
    public void setCnpj(final String cnpj) {
29
        DFStringValidador.cnpj(cnpj);
1✔
30
        this.cnpj = cnpj;
1✔
31
    }
1✔
32

33
    public void setNumeroAutorizacaoOperacaoCartao(final String numeroAutorizacaoOperacaoCartao) {
34
        DFStringValidador.tamanho128(numeroAutorizacaoOperacaoCartao, "Numero Autorizacao Operacao Cartao");
1✔
35
        this.numeroAutorizacaoOperacaoCartao = numeroAutorizacaoOperacaoCartao;
1✔
36
    }
1✔
37

38
    public void setOperadoraCartao(final NFOperadoraCartao operadoraCartao) {
39
        this.operadoraCartao = operadoraCartao;
1✔
40
    }
1✔
41

42
    public String getCnpj() {
UNCOV
43
        return this.cnpj;
×
44
    }
45

46
    public String getNumeroAutorizacaoOperacaoCartao() {
UNCOV
47
        return this.numeroAutorizacaoOperacaoCartao;
×
48
    }
49

50
    public NFOperadoraCartao getOperadoraCartao() {
UNCOV
51
        return this.operadoraCartao;
×
52
    }
53

54
    public NFTipoIntegracaoPagamento getTipoIntegracao() {
UNCOV
55
        return this.tipoIntegracao;
×
56
    }
57

58
    public void setTipoIntegracao(final NFTipoIntegracaoPagamento tipoIntegracao) {
59
        this.tipoIntegracao = tipoIntegracao;
1✔
60
    }
1✔
61

62
    public String getCnpjBenefPagamento() {
UNCOV
63
        return cnpjBenefPagamento;
×
64
    }
65

66
    public void setCnpjBenefPagamento(String cnpjBenefPagamento) {
67
        this.cnpjBenefPagamento = cnpjBenefPagamento;
1✔
68
    }
1✔
69

70
    public String getIdentificadorTerminalPagamento() {
UNCOV
71
        return identificadorTerminalPagamento;
×
72
    }
73

74
    public void setIdentificadorTerminalPagamento(String identificadorTerminalPagamento) {
75
        this.identificadorTerminalPagamento = identificadorTerminalPagamento;
1✔
76
    }
1✔
77

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

© 2025 Coveralls, Inc