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

wmixvideo / nfe / #9105

22 May 2026 11:53AM UTC coverage: 50.605%. First build
#9105

push

web-flow
Merge 60c561605 into b9fe1dd17

39 of 84 new or added lines in 75 files covered. (46.43%)

14856 of 29357 relevant lines covered (50.6%)

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/cte300/classes/os/CTeOSInfoCTeAnulacao.java
1
package com.fincatto.documentofiscal.cte300.classes.os;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.cte.CTeConfig;
5
import com.fincatto.documentofiscal.validadores.DFStringValidador;
6
import org.simpleframework.xml.Element;
7
import org.simpleframework.xml.Namespace;
8
import org.simpleframework.xml.Root;
9

10
import java.time.LocalDate;
11

12
@Root(name = "infCteAnu")
13
@Namespace(reference = CTeConfig.NAMESPACE)
14
public class CTeOSInfoCTeAnulacao extends DFBase {
×
15
    private static final long serialVersionUID = 3248640412163502446L;
16

17
    @Element(name = "chCte")
18
    private String chave;
19
    
20
    @Element(name = "dEmi")
21
    private LocalDate dataEmissao;
22

23
    public String getChave() {
24
        return this.chave;
×
25
    }
26

27
    /**
28
     * Chave de acesso do CT-e original a ser anulado e substituído
29
     */
30
    public void setChave(final String chave) {
NEW
31
        DFStringValidador.exatamente44(chave, "Chave de acesso do CT-e original a ser anulado e substituído");
×
32
        this.chave = chave;
×
33
    }
×
34

35
    public LocalDate getDataEmissao() {
36
        return this.dataEmissao;
×
37
    }
38

39
    /**
40
     * Data de emissão da declaração do tomador não contribuinte do ICMS
41
     */
42
    public void setDataEmissao(final LocalDate dataEmissao) {
43
        this.dataEmissao = dataEmissao;
×
44
    }
×
45
}
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