Searched refs:anyIterableOf (Results 1 – 3 of 3) sorted by relevance
72 when(mock.forIterable(anyIterableOf(String.class))).thenReturn("matched"); in shouldAllowAnyIterable()77 verify(mock, times(1)).forIterable(anyIterableOf(String.class)); in shouldAllowAnyIterable()
103 when(mock.iterableArgMethod(anyIterableOf(String.class))).thenReturn("iterable"); in should_help_out_with_unnecessary_casting_of_iterables()
767 public static <T> Iterable<T> anyIterableOf(Class<T> clazz) { in anyIterableOf() method in ArgumentMatchers