• 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/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
        @Attribute(name = "versao", required = true)
22
        private String versao;
23

24
        @Element(name = "idLote", required = true)
25
        private String idLote;
26

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

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

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

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

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

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

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

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