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

wmixvideo / nfe / #7148

04 Dec 2025 02:00PM UTC coverage: 52.281% (+25.3%) from 26.996%
#7148

push

web-flow
Ajuste conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10 (#1126)

* Merge from master

* Revert "Merge from master"

This reverts commit e2ed141c3.

* Revert "Revert "Merge from master""

This reverts commit 05781623b.

* Adição do campo indDoacao e grupo de informações de estorno de crédito. Exclusão do grupo de informações do crédito presumido por não se aplicar aos cClassTrib associados ao CTe. Conforme CTe_Nota_Tecnica_2025_001_RTC_v1.10.

103 of 276 new or added lines in 17 files covered. (37.32%)

2968 existing lines in 404 files now uncovered.

14761 of 28234 relevant lines covered (52.28%)

0.52 hits per line

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

75.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/nota/NFNotaInfoItemProdutoArmamento.java
1
package com.fincatto.documentofiscal.nfe400.classes.nota;
2

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

8
public class NFNotaInfoItemProdutoArmamento extends DFBase {
1✔
9
    private static final long serialVersionUID = -4438932795183476289L;
10
    
11
    @Element(name = "tpArma")
12
    private NFNotaInfoItemProdutoArmamentoTipo tipo;
13
    
14
    @Element(name = "nSerie")
15
    private String numeroSerieArma;
16
    
17
    @Element(name = "nCano")
18
    private String numeroSerieCano;
19
    
20
    @Element(name = "descr")
21
    private String descricao;
22

23
    public void setTipo(final NFNotaInfoItemProdutoArmamentoTipo tipo) {
24
        this.tipo = tipo;
1✔
25
    }
1✔
26

27
    public void setNumeroSerieArma(final String numeroSerieArma) {
28
        DFStringValidador.tamanho15(numeroSerieArma, "Numero Serie Arma Armamento");
1✔
29
        this.numeroSerieArma = numeroSerieArma;
1✔
30
    }
1✔
31

32
    public void setNumeroSerieCano(final String numeroSerieCano) {
33
        DFStringValidador.tamanho15(numeroSerieCano, "Numero Serie Cano Armamento");
1✔
34
        this.numeroSerieCano = numeroSerieCano;
1✔
35
    }
1✔
36

37
    public void setDescricao(final String descricao) {
38
        DFStringValidador.tamanho256(descricao, "Descricao Armamento");
1✔
39
        this.descricao = descricao;
1✔
40
    }
1✔
41

42
    public NFNotaInfoItemProdutoArmamentoTipo getTipo() {
UNCOV
43
        return this.tipo;
×
44
    }
45

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

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

54
    public String getDescricao() {
UNCOV
55
        return this.descricao;
×
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