Package br.com.objectos.way.boleto

Examples of br.com.objectos.way.boleto.NossoNumero.longValue()


  public void numero() {
    String numero = "1234";

    NossoNumero res = new NossoNumero(numero);

    assertThat(res.longValue(), equalTo(123l));
    assertThat(res.getDigito(), equalTo('4'));
  }

  @Test(expectedExceptions = IllegalArgumentException.class)
  public void nao_numero() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.