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

wmixvideo / nfe / #6481

06 Jun 2025 01:51AM UTC coverage: 52.669% (+25.7%) from 26.996%
#6481

push

web-flow
ajustado urls da NFC-e para o estado do CE (#1040)

Co-authored-by: Giovane Boeing <giovane@brazilsistem.com.br>

6 of 6 new or added lines in 1 file covered. (100.0%)

2924 existing lines in 401 files now uncovered.

14001 of 26583 relevant lines covered (52.67%)

0.53 hits per line

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

70.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFe.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import org.simpleframework.xml.Element;
4
import org.simpleframework.xml.Namespace;
5
import org.simpleframework.xml.Root;
6

7
import com.fincatto.documentofiscal.DFBase;
8
import com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature;
9

10
/**
11
 * Created by Eldevan Nery Junior on 03/11/17. Tipo Manifesto de Documentos
12
 * Fiscais EletrĂ´nicos.
13
 */
14
@Root(name = "MDFe")
15
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
16
public class MDFe extends DFBase {
1✔
17

18
    private static final long serialVersionUID = -4082665506491508726L;
19

20
    public static final String VERSAO = "3.00";
21

22
    @Element(name = "infMDFe")
23
    private MDFInfo info;
24

25
    @Element(name = "infMDFeSupl", required = false)
26
    private MDFInfoSuplementar mdfInfoSuplementar;
27

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

31
    public MDFInfo getInfo() {
32
        return this.info;
×
33
    }
34

35
    public void setInfo(final MDFInfo info) {
36
        this.info = info;
1✔
37
    }
1✔
38

39
    public MDFInfoSuplementar getMdfInfoSuplementar() {
40
        return mdfInfoSuplementar;
×
41
    }
42

43
    public void setMdfInfoSuplementar(MDFInfoSuplementar mdfInfoSuplementar) {
44
        this.mdfInfoSuplementar = mdfInfoSuplementar;
1✔
45
    }
1✔
46

47
    public NFSignature getAssinatura() {
UNCOV
48
        return this.assinatura;
×
49
    }
50

51
    public void setAssinatura(final NFSignature assinatura) {
52
        this.assinatura = assinatura;
1✔
53
    }
1✔
54
}
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