Package br.com.objectos.comuns.cnab

Examples of br.com.objectos.comuns.cnab.ColunaLocalDate


    int inicio = 0;
    int fim = 5;
    LocalDate data = new LocalDate(2012, 1, 1);
    int tamanho = 6;

    writer = new ColunaLocalDate(inicio, fim).set(data);
    String res = writer.get();

    assertThat(res.length(), equalTo(tamanho));
    assertThat(res, equalTo("010112"));
  }
View Full Code Here


    int inicio = 0;
    int fim = 5;
    LocalDate data = null;
    int tamanho = 6;

    writer = new ColunaLocalDate(inicio, fim).set(data);
    String res = writer.get();

    assertThat(res.length(), equalTo(tamanho));
    assertThat(res, equalTo("000000"));
  }
View Full Code Here

TOP

Related Classes of br.com.objectos.comuns.cnab.ColunaLocalDate

Copyright © 2018 www.massapicom. 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.