Package com.gemstone.gemfire.cache.query

Examples of com.gemstone.gemfire.cache.query.SelectResults.asList()


  @Test
  public void testToCollectionWithSelectResults() {
    SelectResults mockSelectResults = mock(SelectResults.class, "testToCollectionWithSelectResults.SelectResults");
    List<String> expectedList = Arrays.asList("one", "two", "three");

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

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

    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.