• 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

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
    @Element(data = true, name = "qrCodMDFe")
18
    private String qrCodMDFe;
19
    
20

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

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

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