Searched refs:forIterable (Results 1 – 3 of 3) sorted by relevance
72 when(mock.forIterable(anyIterableOf(String.class))).thenReturn("matched"); in shouldAllowAnyIterable()74 assertEquals("matched", mock.forIterable(new HashSet<String>())); in shouldAllowAnyIterable()75 assertEquals(null, mock.forIterable(null)); in shouldAllowAnyIterable()77 verify(mock, times(1)).forIterable(anyIterableOf(String.class)); in shouldAllowAnyIterable()
201 String forIterable(Iterable<String> iterable); in forIterable() method
378 public String forIterable(Iterable<String> iterable) { in forIterable() method in MethodsImpl