HomeSort by relevance Sort by last modified time
    Searched refs:collectionArgMethod (Results 1 - 3 of 3) sorted by null

  /external/mockito/src/test/java/org/mockitousage/matchers/
MoreMatchersTest.java 93 when(mock.collectionArgMethod(anyCollectionOf(String.class))).thenReturn("collection");
95 assertEquals("collection", mock.collectionArgMethod(new ArrayList<String>()));
96 assertEquals("collection", mock.collectionArgMethod(Collections.<String>emptyList()));
  /external/mockito/src/test/java/org/mockitousage/
IMethods.java 213 Object collectionArgMethod(Collection<String> collection);
MethodsImpl.java 402 public Object collectionArgMethod(Collection<String> collection) {

Completed in 1323 milliseconds