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

wmixvideo / nfe / #6290

19 Apr 2016 08:37PM UTC coverage: 80.934% (+2.4%) from 78.549%
#6290

push

travis-ci

fincatto
Corrigido testes.

4470 of 5523 relevant lines covered (80.93%)

52.06 hits per line

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

63.64
/src/main/java/com/fincatto/nfe310/classes/lote/envio/NFLoteIndicadorProcessamento.java
1
package com.fincatto.nfe310.classes.lote.envio;
2

3
public enum NFLoteIndicadorProcessamento {
1✔
4

5
    PROCESSAMENTO_ASSINCRONO("0"),
1✔
6
    PROCESSAMENTO_SINCRONO("1");
1✔
7

8
    private String codigo;
9

10
    private NFLoteIndicadorProcessamento(final String codigo) {
2✔
11
        this.codigo = codigo;
2✔
12
    }
2✔
13

14
    public String getCodigo() {
15
        return this.codigo;
3✔
16
    }
17

18
    public static NFLoteIndicadorProcessamento valueOfCodigo(final String codigo) {
19
        for (final NFLoteIndicadorProcessamento indicadorProcessamento : NFLoteIndicadorProcessamento.values()) {
×
20
            if (indicadorProcessamento.getCodigo().equals(codigo)) {
×
21
                return indicadorProcessamento;
×
22
            }
23
        }
24
        return null;
×
25
    }
26
}
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