OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:doesNothing
(Results
1 - 5
of
5
) sorted by null
/external/mockito/src/test/java/org/mockito/internal/stubbing/answers/
DoesNothingTest.java
9
import static org.mockito.internal.stubbing.answers.
DoesNothing
.
doesNothing
;
41
assertThat(
doesNothing
().answer(invocation_Void)).isNull();
42
assertThat(
doesNothing
().answer(invocation_void)).isNull();
43
assertThat(
doesNothing
().answer(invocation_String)).isNull();
48
doesNothing
().validateFor(invocation_String);
53
doesNothing
().validateFor(invocation_void);
58
doesNothing
().validateFor(invocation_Void);
/external/mockito/src/test/java/org/mockito/internal/junit/
UnusedStubbingsTest.java
19
import static org.mockito.internal.stubbing.answers.
DoesNothing
.
doesNothing
;
41
new StubbedInvocationMatcher(
doesNothing
(), new InvocationBuilder().toInvocationMatcher(), null),
42
new StubbedInvocationMatcher(
doesNothing
(), new InvocationBuilder().toInvocationMatcher(), null)
/external/mockito/src/main/java/org/mockito/internal/stubbing/answers/
DoesNothing.java
15
public class
DoesNothing
implements Answer<Object>, ValidableAnswer, Serializable {
19
private static final
DoesNothing
SINGLETON = new
DoesNothing
();
21
private
DoesNothing
() {}
23
public static
DoesNothing
doesNothing
(){
/art/test/624-checker-stringops/src/
Main.java
281
/// CHECK-START: void Main.
doesNothing
() instruction_simplifier (before)
284
/// CHECK-START: void Main.
doesNothing
() instruction_simplifier (after)
286
static void
doesNothing
() {
319
doesNothing
();
/external/mockito/src/main/java/org/mockito/internal/stubbing/
StubberImpl.java
22
import static org.mockito.internal.stubbing.answers.
DoesNothing
.
doesNothing
;
118
answers.add(
doesNothing
());
Completed in 443 milliseconds