• 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

95.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFInfoModalRodoviarioANTT.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import java.util.List;
4

5
import org.simpleframework.xml.Element;
6
import org.simpleframework.xml.ElementList;
7
import org.simpleframework.xml.Root;
8

9
import com.fincatto.documentofiscal.DFBase;
10
import com.fincatto.documentofiscal.validadores.DFStringValidador;
11

12
/**
13
 * Created by Eldevan Nery Junior on 01/11/17.
14
 * <h1>Grupo de informações para Agência Reguladora</h1>
15
 */
16
@Root(name = "infANTT")
17
public class MDFInfoModalRodoviarioANTT extends DFBase {
1✔
18
    private static final long serialVersionUID = -5412043951034386272L;
19
    /**
20
     * <h1>Registro Nacional de Transportadores Rodoviários de Carga</h1>
21
     * <p>
22
     * Registro obrigatório do emitente do MDF-e junto à ANTT para exercer a atividade de transportador rodoviário de cargas por conta de terceiros e mediante remuneração.
23
     * </p>
24
     */
25
    @Element(name = "RNTRC", required = false)
26
    private String rntrc;
27
    /**
28
     * <h1>Dados do CIOT.</h1>
29
     */
30
    @ElementList(entry = "infCIOT", inline = true, required = false)
31
    private List<MDFInfoModalRodoviarioInfCIOT> infCIOT;
32
    /**
33
     * Informações de Vale Pedágio
34
     */
35
    @Element(name = "valePed", required = false)
36
    private MDFInfoModalRodoviarioPedagio valePedagio;
37

38
    @ElementList(entry = "infContratante", inline = true, required = false)
39
    protected List<MDFInfoModalRodoviarioInfContratante> infContratante;
40

41
    @Element(name = "infContrato", required = false)
42
    private MDFInfoModalRodoviarioInfContrato infContrato;
43

44
    @ElementList(entry = "infPag", inline = true, required = false)
45
    protected List<MDFInfoModalRodoviarioInfPag> infPag;
46

47
    public String getRntrc() {
48
        return this.rntrc;
1✔
49
    }
50

51
    public void setRntrc(final String rntrc) {
52
        DFStringValidador.validador(rntrc, "Registro Nacional de Transportadores Rodoviários de Carga(RNTRC) ", 8, true, true);
1✔
53
        this.rntrc = rntrc;
1✔
54
    }
1✔
55

56
    public List<MDFInfoModalRodoviarioInfCIOT> getInfCIOT() {
57
        return this.infCIOT;
1✔
58
    }
59

60
    public void setInfCIOT(final List<MDFInfoModalRodoviarioInfCIOT> infCIOT) {
61
        this.infCIOT = infCIOT;
1✔
62
    }
1✔
63

64
    public MDFInfoModalRodoviarioPedagio getValePedagio() {
65
        return this.valePedagio;
1✔
66
    }
67

68
    public void setValePedagio(final MDFInfoModalRodoviarioPedagio valePedagio) {
69
        this.valePedagio = valePedagio;
1✔
70
    }
1✔
71

72
    public List<MDFInfoModalRodoviarioInfContratante> getInfContratante() {
UNCOV
73
        return this.infContratante;
×
74
    }
75

76
    public void setInfContratante(final List<MDFInfoModalRodoviarioInfContratante> infContratante) {
77
        this.infContratante = infContratante;
1✔
78
    }
1✔
79

80
    public List<MDFInfoModalRodoviarioInfPag> getInfPag() {
81
        return infPag;
1✔
82
    }
83

84
    public void setInfPag(List<MDFInfoModalRodoviarioInfPag> infPag) {
85
        this.infPag = infPag;
1✔
86
    }
1✔
87

88
    public MDFInfoModalRodoviarioInfContrato getInfContrato() {
89
        return infContrato;
1✔
90
    }
91

92
    public void setInfContrato(final MDFInfoModalRodoviarioInfContrato infContrato) {
93
        this.infContrato = infContrato;
1✔
94
    }
1✔
95
}
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