Package br.com.objectos.comuns.cnab

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


    int inicio = 0;
    int fim = 3;
    int tamanho = 4;
    String valor = " ";

    writer = new ColunaVazia(inicio, fim).set(valor);
    String res = writer.get();

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


    int inicio = 0;
    int fim = 2;
    int tamanho = 3;
    String valor = "0";

    writer = new ColunaVazia(inicio, fim).set(valor);
    String res = writer.get();

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

TOP

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

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.