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

wmixvideo / nfe / #7381

14 Nov 2025 04:39PM UTC coverage: 52.346% (-0.1%) from 52.488%
#7381

push

web-flow
Merge 2dbd6443e into f1539e1c0

27 of 195 new or added lines in 15 files covered. (13.85%)

755 existing lines in 47 files now uncovered.

14736 of 28151 relevant lines covered (52.35%)

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
        @Attribute(name = "versao", required = true)
19
        private String versao;
20

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

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

27
        @Transient
28
        private NFNota nota;
29

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

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

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

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

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

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

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

58
        public NFNota getNota() {
UNCOV
59
                return nota;
×
60
        }
61

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

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