Searched refs:setArgMethod (Results 1 – 3 of 3) sorted by relevance
79 when(mock.setArgMethod(anySetOf(String.class))).thenReturn("set"); in should_help_out_with_unnecessary_casting_of_sets()81 assertEquals("set", mock.setArgMethod(new HashSet<String>())); in should_help_out_with_unnecessary_casting_of_sets()82 assertEquals("set", mock.setArgMethod(Collections.<String>emptySet())); in should_help_out_with_unnecessary_casting_of_sets()
217 Object setArgMethod(Set<String> set); in setArgMethod() method
410 public Object setArgMethod(Set<String> set) { in setArgMethod() method in MethodsImpl