Home
last modified time | relevance | path

Searched refs:collectionArgMethod (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/matchers/
DMoreMatchersTest.java99 when(mock.collectionArgMethod(anyCollectionOf(String.class))).thenReturn("collection"); in should_help_out_with_unnecessary_casting_of_collections()
101 assertEquals("collection", mock.collectionArgMethod(new ArrayList<String>())); in should_help_out_with_unnecessary_casting_of_collections()
102 assertEquals("collection", mock.collectionArgMethod(Collections.<String>emptyList())); in should_help_out_with_unnecessary_casting_of_collections()
/external/mockito/src/test/java/org/mockitousage/
DIMethods.java213 Object collectionArgMethod(Collection<String> collection); in collectionArgMethod() method
DMethodsImpl.java402 public Object collectionArgMethod(Collection<String> collection) { in collectionArgMethod() method in MethodsImpl