Searched refs:iterableArgMethod (Results 1 – 3 of 3) sorted by relevance
109 when(mock.iterableArgMethod(anyIterableOf(String.class))).thenReturn("iterable"); in should_help_out_with_unnecessary_casting_of_iterables()111 assertEquals("iterable", mock.iterableArgMethod(new ArrayList<String>())); in should_help_out_with_unnecessary_casting_of_iterables()112 assertEquals("iterable", mock.iterableArgMethod(Collections.<String>emptyList())); in should_help_out_with_unnecessary_casting_of_iterables()
215 Object iterableArgMethod(Iterable<String> collection); in iterableArgMethod() method
406 public Object iterableArgMethod(Iterable<String> iterable) { in iterableArgMethod() method in MethodsImpl