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

wmixvideo / nfe / #7324

18 Nov 2025 12:44PM UTC coverage: 52.488%. Remained the same
#7324

push

web-flow
Merge 5aad707ce into 2d4409cab

272 of 387 new or added lines in 14 files covered. (70.28%)

704 existing lines in 45 files now uncovered.

14639 of 27890 relevant lines covered (52.49%)

0.52 hits per line

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

0.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/evento/epec/NFEventoEpec.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento.epec;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature;
5
import com.fincatto.documentofiscal.nfe400.classes.nota.NFNota;
6
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
7
import java.math.BigDecimal;
8

9
import org.simpleframework.xml.Attribute;
10
import org.simpleframework.xml.Element;
11
import org.simpleframework.xml.Root;
12
import org.simpleframework.xml.Transient;
13

14

15
@Root(name = "evento")
16
public class NFEventoEpec extends DFBase {
×
17

18
        private static final long serialVersionUID = 1L;
19

20
        @Attribute(name = "versao", required = true)
21
        private String versao;
22

23
        @Element(name = "infEvento", required = true)
24
        private NFInfoEventoEpec infoEvento;
25

26
        @Element(name = "Signature", required = false)
27
        private NFSignature assinatura;
28

29
        @Transient
30
        private NFNota nota;
31

32
        public void setVersao(final BigDecimal versao) {
UNCOV
33
                this.versao = DFBigDecimalValidador.tamanho5Com2CasasDecimais(versao, "Versao");
×
UNCOV
34
        }
×
35

36
        public NFInfoEventoEpec getInfoEvento() {
UNCOV
37
                return this.infoEvento;
×
38
        }
39

40
        public String getVersao() {
UNCOV
41
                return this.versao;
×
42
        }
43

44
        public void setVersao(String versao) {
UNCOV
45
                this.versao = versao;
×
UNCOV
46
        }
×
47

48
        public void setInfoEvento(final NFInfoEventoEpec infoEvento) {
UNCOV
49
                this.infoEvento = infoEvento;
×
UNCOV
50
        }
×
51

52
        public void setAssinatura(final NFSignature assinatura) {
UNCOV
53
                this.assinatura = assinatura;
×
UNCOV
54
        }
×
55

56
        public NFSignature getAssinatura() {
UNCOV
57
                return this.assinatura;
×
58
        }
59

60
        public NFNota getNota() {
UNCOV
61
                return nota;
×
62
        }
63

64
        public void setNota(NFNota nota) {
UNCOV
65
                this.nota = nota;
×
UNCOV
66
        }
×
67

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