Package com.gemstone.gemfire.cache.query.internal

Examples of com.gemstone.gemfire.cache.query.internal.ResultsBag.asList()


  @Test
  public void testToCollectionWithResultsBag() {
    ResultsBag mockResultsBag = mock(ResultsBag.class, "testToCollectionWithResultsBag.ResultsBag");
    List<String> expectedList = Arrays.asList("a", "b", "c");

    when(mockResultsBag.asList()).thenReturn(expectedList);

    Collection<?> actualList = repositoryQuery.toCollection(mockResultsBag);

    assertSame(expectedList, actualList);
  }
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.