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

wmixvideo / nfe / #9033

19 May 2026 10:05PM UTC coverage: 50.336% (-1.1%) from 51.412%
#9033

push

web-flow
Bump slf4j.version from 2.0.13 to 2.0.18 (#1162)

Bumps `slf4j.version` from 2.0.13 to 2.0.18.

Updates `org.slf4j:slf4j-api` from 2.0.13 to 2.0.18

Updates `org.slf4j:slf4j-simple` from 2.0.13 to 2.0.18

---
updated-dependencies:
- dependency-name: org.slf4j:slf4j-api
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.slf4j:slf4j-simple
  dependency-version: 2.0.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Diego Fincatto <58352+fincatto@users.noreply.github.com>

14777 of 29357 relevant lines covered (50.34%)

0.5 hits per line

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

90.0
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/NFDebito.java
1
package com.fincatto.documentofiscal.nfe400.classes;
2

3
public enum NFDebito {
1✔
4

5
  TRANSFERENCIA_CREDITO_COOPERATIVA("01", "Transfer\u00eancia de cr\u00e9ditos para Cooperativas"),
1✔
6
  ANULACAO_CREDITO_SAIDA_IMUNE_ISENTA("02", "Anula\u00e7\u00e3o de Cr\u00e9dito por Sa\u00eddas Imunes/Isentas"),
1✔
7
  DEBITO_NOTAS_NAO_PROCESSADAS_APURACAO("03", "D\u00e9bitos de notas fiscais n\u00e3o processadas na apura\u00e7\u00e3o"),
1✔
8
  MULTA_JUROS("04", "Multa e juros"),
1✔
9
  TRANSFERENCIA_CREDITO_SUCESSAO("05", "Transfer\u00eancia de cr\u00e9dito na sucess\u00e3o"),
1✔
10
  PAGAMENTO_ANTECIPADO("06", "Pagamento antecipado"),
1✔
11
  PERDA_ESTOQUE("07", "Perda em estoque"),
1✔
12
  DESENQUADRAMENTO_SN("08", "Desenquadramento do SN");
1✔
13

14
  private final String codigo;
15
  private final String descricao;
16

17
  NFDebito(final String codigo, final String descricao) {
1✔
18
    this.codigo = codigo;
1✔
19
    this.descricao = descricao;
1✔
20
  }
1✔
21

22
  public String getCodigo() {
23
    return this.codigo;
1✔
24
  }
25

26
  public String getDescricao() {
27
    return this.descricao;
1✔
28
  }
29

30
  public static NFDebito valueOfCodigo(final String codigo) {
31
    for (final NFDebito tipo : NFDebito.values()) {
1✔
32
      if (tipo.getCodigo().equals(codigo)) {
1✔
33
        return tipo;
1✔
34
      }
35
    }
36
    return null;
×
37
  }
38

39
  @Override
40
  public String toString() {
41
    return codigo + " - " + descricao;
×
42
  }
43
}
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