• 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/NFEnviaEventoEpec.java
1
package com.fincatto.documentofiscal.nfe400.classes.evento.epec;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import java.math.BigDecimal;
5
import java.util.List;
6

7
import org.simpleframework.xml.Attribute;
8
import org.simpleframework.xml.Element;
9
import org.simpleframework.xml.ElementList;
10
import org.simpleframework.xml.Namespace;
11
import org.simpleframework.xml.Root;
12

13
import com.fincatto.documentofiscal.validadores.DFBigDecimalValidador;
14
import com.fincatto.documentofiscal.validadores.DFListValidador;
15
import com.fincatto.documentofiscal.validadores.DFStringValidador;
16

17
@Root(name = "envEvento")
18
@Namespace(reference = "http://www.portalfiscal.inf.br/nfe")
19
public class NFEnviaEventoEpec extends DFBase {
×
20

21
        private static final long serialVersionUID = 1L;
22

23
        @Attribute(name = "versao", required = true)
24
        private String versao;
25

26
        @Element(name = "idLote", required = true)
27
        private String idLote;
28

29
        @ElementList(entry = "evento", inline = true, required = true)
30
        private List<NFEventoEpec> evento;
31

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

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

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

44
        public String getIdLote() {
UNCOV
45
                return this.idLote;
×
46
        }
47

48
        public void setIdLote(final String idLote) {
UNCOV
49
                DFStringValidador.tamanho15N(idLote, "ID do Lote");
×
UNCOV
50
                this.idLote = idLote;
×
51
        }
×
52

53
        public List<NFEventoEpec> getEvento() {
UNCOV
54
                return this.evento;
×
55
        }
56

57
        public void setEvento(final List<NFEventoEpec> evento) {
UNCOV
58
                DFListValidador.tamanho20(evento, "Evento de Conting\u00eancia EPEC");
×
UNCOV
59
                this.evento = evento;
×
60
        }
×
61
}
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