use of org.eclipse.collections.api.LazyLongIterable in project mapdb by jankotek.
the class AbstractLazyLongIterableTestCase method asLazy.
@Test
public void asLazy() {
LazyLongIterable iterable = this.classUnderTest();
Assert.assertEquals(iterable.toSet(), iterable.asLazy().toSet());
Verify.assertInstanceOf(LazyLongIterable.class, iterable.asLazy());
Assert.assertSame(iterable, iterable.asLazy());
}
Aggregations