Search in sources :

Example 11 with LazyLongIterable

use of org.eclipse.collections.api.LazyLongIterable in project mapdb by jankotek.

the class AbstractLazyLongIterableTestCase method appendString.

@Test
public void appendString() {
    StringBuilder appendable2 = new StringBuilder();
    LazyLongIterable iterable = this.newWith(1L, 2L);
    iterable.appendString(appendable2);
    Assert.assertTrue("1, 2".equals(appendable2.toString()) || "2, 1".equals(appendable2.toString()));
    StringBuilder appendable3 = new StringBuilder();
    iterable.appendString(appendable3, "/");
    Assert.assertTrue("1/2".equals(appendable3.toString()) || "2/1".equals(appendable3.toString()));
    StringBuilder appendable4 = new StringBuilder();
    iterable.appendString(appendable4, "[", ", ", "]");
    Assert.assertEquals(iterable.toString(), appendable4.toString());
    StringBuilder appendable7 = new StringBuilder();
    LazyLongIterable iterable1 = this.newWith(0L, 31L);
    iterable1.appendString(appendable7);
    Assert.assertTrue(appendable7.toString(), "0, 31".equals(appendable7.toString()) || "31, 0".equals(appendable7.toString()));
    StringBuilder appendable8 = new StringBuilder();
    LazyLongIterable iterable2 = this.newWith(31L, 32L);
    iterable2.appendString(appendable8, "/");
    Assert.assertTrue(appendable8.toString(), "31/32".equals(appendable8.toString()) || "32/31".equals(appendable8.toString()));
    StringBuilder appendable9 = new StringBuilder();
    LazyLongIterable iterable4 = this.newWith(32L, 33L);
    iterable4.appendString(appendable9, "[", "/", "]");
    Assert.assertTrue(appendable9.toString(), "[32/33]".equals(appendable9.toString()) || "[33/32]".equals(appendable9.toString()));
    StringBuilder appendable10 = new StringBuilder();
    LazyLongIterable iterable5 = this.newWith(0L, 1L);
    iterable5.appendString(appendable10);
    Assert.assertTrue(appendable10.toString(), "0, 1".equals(appendable10.toString()) || "1, 0".equals(appendable10.toString()));
    StringBuilder appendable11 = new StringBuilder();
    iterable5.appendString(appendable11, "/");
    Assert.assertTrue(appendable11.toString(), "0/1".equals(appendable11.toString()) || "1/0".equals(appendable11.toString()));
    StringBuilder appendable12 = new StringBuilder();
    iterable5.appendString(appendable12, "[", "/", "]");
    Assert.assertTrue(appendable12.toString(), "[0/1]".equals(appendable12.toString()) || "[1/0]".equals(appendable12.toString()));
}
Also used : LazyLongIterable(org.eclipse.collections.api.LazyLongIterable) Test(org.junit.Test)

Aggregations

LazyLongIterable (org.eclipse.collections.api.LazyLongIterable)11 Test (org.junit.Test)11