• 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/nfe400/classes/nota/NFInfoSolicitacaoNFF.java
1
/*
2
 * Copyright 2020 Edivaldo Merlo Stens.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *      http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package com.fincatto.documentofiscal.nfe400.classes.nota;
17

18
import com.fincatto.documentofiscal.DFBase;
19
import com.fincatto.documentofiscal.validadores.DFStringValidador;
20
import org.simpleframework.xml.Element;
21
import org.simpleframework.xml.Root;
22

23
@Root(name = "infSolicNFF")
24
public class NFInfoSolicitacaoNFF extends DFBase {
1✔
25

26
    private static final long serialVersionUID = 1L;
27
        @Element(name="xSolic", required = true)
28
    protected String solicitacao;
29

30
    public String getSolicitacao() {
UNCOV
31
        return solicitacao;
×
32
    }
33

34
    public void setSolicitacao(String solicitacao) {
35
        DFStringValidador.tamanho2ate60(solicitacao, "xSolic");
1✔
36
        this.solicitacao = solicitacao;
1✔
37
    }
1✔
38
    
39
}
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