• 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

88.24
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/NFCredito.java
1
package com.fincatto.documentofiscal.nfe400.classes;
2

3
public enum NFCredito {
1✔
4

5
  MULTA_JUROS("01", "Multa e juros"),
1✔
6
  APROPRIACAO_CREDITO_PRESUMIDO_IBS_SALDO_DEVEDOR_ZFM("02", "Apropria\u00e7\u00e3o de cr\u00e9dito presumido de IBS sobre o saldo devedor na ZFM (art. 450, § 1º, LC 214/25)"),
1✔
7
  RETORNO_RECUSA_ENTREGA_DESTINATARIO_NAO_LOCALIZADO("03", "Retorno por recusa na entrega ou por n\u00e3o localiza\u00e7\u00e3o do destinat\u00e1rio na tentativa de entrega"),
1✔
8
  REDUCAO_VALORES("04", "Redu\u00e7\u00e3o de valores"),
1✔
9
  TRANSFERENCIA_CREDITO_SUCESSAO("05", "Transfer\u00eancia de cr\u00e9dito na sucess\u00e3o");
1✔
10

11
  private final String codigo;
12
  private final String descricao;
13

14
  NFCredito(final String codigo, final String descricao) {
1✔
15
    this.codigo = codigo;
1✔
16
    this.descricao = descricao;
1✔
17
  }
1✔
18

19
  public String getCodigo() {
20
    return this.codigo;
1✔
21
  }
22

23
  public String getDescricao() {
24
    return this.descricao;
1✔
25
  }
26

27
  public static NFCredito valueOfCodigo(final String codigo) {
28
    for (final NFCredito tipo : NFCredito.values()) {
1✔
29
      if (tipo.getCodigo().equals(codigo)) {
1✔
30
        return tipo;
1✔
31
      }
32
    }
33
    return null;
×
34
  }
35

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