Searched refs:doFun (Results 1 – 2 of 2) sorted by relevance
17 String doFun(String something); in doFun() method24 when(mockFun.doFun((String) anyObject())).thenReturn("value"); in shouldAllowPassingNullArgument()27 mockFun.doFun(null); in shouldAllowPassingNullArgument()31 verify(mockFun).doFun("hello"); in shouldAllowPassingNullArgument()
22 void doFun(double prmitive); in doFun() method32 fun.doFun(1.0); in shouldAutoboxSafely()35 verify(fun).doFun(captor.capture()); in shouldAutoboxSafely()