@Test public void testarFormatacaoTamanhoMaior() { try { PISPASEP.formatar("111111111111"); } catch (AlfredException ae) { } }
@Test public void testarFormatacao() { String pisPasep = PISPASEP.formatar("11111111114"); Assert.assertEquals(pisPasep.charAt(3), '.'); Assert.assertEquals(pisPasep.charAt(9), '.'); Assert.assertEquals(pisPasep.charAt(12), '-'); }