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

wmixvideo / nfe / #7632

23 Jul 2025 01:31AM UTC coverage: 51.794% (+24.8%) from 26.994%
#7632

push

web-flow
Merge e37a5245a into cb8c6ab74

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

2980 existing lines in 402 files now uncovered.

14360 of 27725 relevant lines covered (51.79%)

0.52 hits per line

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

77.78
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/nota/NFNotaInfoObservacao.java
1
package com.fincatto.documentofiscal.nfe400.classes.nota;
2

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

8
public class NFNotaInfoObservacao extends DFBase {
1✔
9
    private static final long serialVersionUID = 7420062278238333996L;
10
    
11
    @Attribute(name = "xCampo")
12
    private String identificacaoCampo;
13
    
14
    @Element(name = "xTexto")
15
    private String conteudoCampo;
16

17
    public void setIdentificacaoCampo(final String identificacaoCampo) {
18
        DFStringValidador.tamanho20(identificacaoCampo, "Identificacao Campo Obs");
1✔
19
        this.identificacaoCampo = identificacaoCampo;
1✔
20
    }
1✔
21

22
    public void setConteudoCampo(final String conteudoCampo) {
23
        DFStringValidador.tamanho60(conteudoCampo, "Conteudo Campo Obs");
1✔
24
        this.conteudoCampo = conteudoCampo;
1✔
25
    }
1✔
26

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

31
    public String getIdentificacaoCampo() {
UNCOV
32
        return this.identificacaoCampo;
×
33
    }
34
}
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