• 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

80.0
/src/main/java/com/fincatto/documentofiscal/mdfe3/classes/nota/MDFInfoSuplementar.java
1
package com.fincatto.documentofiscal.mdfe3.classes.nota;
2

3
import com.fincatto.documentofiscal.DFBase;
4
import com.fincatto.documentofiscal.validadores.DFStringValidador;
5
import org.simpleframework.xml.Element;
6
import org.simpleframework.xml.Namespace;
7
import org.simpleframework.xml.Root;
8

9
/**
10
 * Created by Eldevan Nery Junior on 07/10/19.
11
 * <h1>Informações suplementares do MDF-e</h1>
12
 */
13
@Root(name = "infMDFeSupl")
14
@Namespace(reference = "http://www.portalfiscal.inf.br/mdfe")
15
public class MDFInfoSuplementar extends DFBase {
1✔
16

17
    private static final long serialVersionUID = 1L;
18
        @Element(data = true, name = "qrCodMDFe")
19
    private String qrCodMDFe;
20
    
21

22
    public void setQrCodMDFe(final String qrCode) {
23
        DFStringValidador.validaIntervalo(qrCode, 50, 1000,"MDF-e QR Code");
1✔
24
        this.qrCodMDFe = qrCode;
1✔
25
    }
1✔
26

27
    public String getQrCodMDFe() {
UNCOV
28
        return this.qrCodMDFe;
×
29
    }
30

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