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

wmixvideo / nfe / #7141

09 Aug 2016 11:45AM UTC coverage: 78.549% (+1.9%) from 76.628%
#7141

push

travis-ci

jefperito
Corrigido erro de javadoc

Erro corrigido: Exit code: 1 -
/home/travis/build/wmixvideo/nfe/src/main/java/com/fincatto/nfe310/class
es/NFAutorizador31.java:93: error: bad use of '>'

14 of 14 new or added lines in 1 file covered. (100.0%)

538 existing lines in 82 files now uncovered.

4764 of 6065 relevant lines covered (78.55%)

50.43 hits per line

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

90.48
/src/main/java/com/fincatto/nfe310/classes/nota/NFFormaPagamentoMoeda.java
1
package com.fincatto.nfe310.classes.nota;
2

3
public enum NFFormaPagamentoMoeda {
2✔
4

5
    DINHEIRO("01", "Dinheiro"),
1✔
6
    CHEQUE("02", "Cheque"),
1✔
7
    CARTAO_CREDITO("03", "Cart\u00e3o de cr\u00e9dito"),
1✔
8
    CARTAO_DEBITO("04", "Cart\u00e3o de d\u00e9bito"),
1✔
9
    CARTAO_LOJA("05", "Cart\u00e3o da loja"),
1✔
10
    VALE_ALIMENTACAO("10", "Vale alimenta\u00e7\u00e3o"),
1✔
11
    VALE_REFEICAO("11", "Vale refei\u00e7\u00e3o"),
1✔
12
    VALE_PRESENTE("12", "Vale presente"),
1✔
13
    VALE_COMBUSTIVEL("13", "Vale combust\u00edvel"),
1✔
14
    OUTRO("99", "Outro");
1✔
15

16
    private final String codigo;
17
    private final String descricao;
18

19
    NFFormaPagamentoMoeda(final String codigo, final String descricao) {
10✔
20
        this.codigo = codigo;
10✔
21
        this.descricao = descricao;
10✔
22
    }
10✔
23

24
    public String getCodigo() {
25
        return this.codigo;
21✔
26
    }
27

28
    public static NFFormaPagamentoMoeda valueOfCodigo(final String codigo) {
29
        for (final NFFormaPagamentoMoeda formaPagamentoMoeda : NFFormaPagamentoMoeda.values()) {
3✔
30
            if (formaPagamentoMoeda.getCodigo().equals(codigo)) {
3✔
31
                return formaPagamentoMoeda;
1✔
32
            }
33
        }
UNCOV
34
        return null;
×
35
    }
36

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