Searched refs:collectionArgMethod (Results 1 – 3 of 3) sorted by relevance
99 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()
213 Object collectionArgMethod(Collection<String> collection); in collectionArgMethod() method
402 public Object collectionArgMethod(Collection<String> collection) { in collectionArgMethod() method in MethodsImpl