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

wmixvideo / nfe / #8927

11 May 2026 12:09PM UTC coverage: 50.346% (+23.4%) from 26.994%
#8927

push

web-flow
feat: adicionando schema 1.14 para cte 4.00 (#1156)

Co-authored-by: Matteus Colins Moreira <matteuscolins@Colinss-MacBook-Pro.local>

0 of 1 new or added line in 1 file covered. (0.0%)

2981 existing lines in 403 files now uncovered.

14775 of 29347 relevant lines covered (50.35%)

0.5 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