Home
last modified time | relevance | path

Searched refs:buildIntArgMethod (Results 1 – 2 of 2) sorted by relevance

/external/mockito/src/test/java/org/mockito/internal/verification/checkers/
DMissingInvocationInOrderCheckerTest.java73 invocations = asList(buildIntArgMethod().arg(1111).toInvocation()); in shouldReportArgumentsAreDifferent()
74 wanted = buildIntArgMethod().arg(2222).toInvocationMatcher(); in shouldReportArgumentsAreDifferent()
90 Invocation invocation1 = buildIntArgMethod().arg(1111).toInvocation(); in shouldReportWantedDiffersFromActual()
91 Invocation invocation2 = buildIntArgMethod().arg(2222).toInvocation(); in shouldReportWantedDiffersFromActual()
95 wanted = buildIntArgMethod().arg(2222).toInvocationMatcher(); in shouldReportWantedDiffersFromActual()
108 private InvocationBuilder buildIntArgMethod() { in buildIntArgMethod() method in MissingInvocationInOrderCheckerTest
DMissingInvocationCheckerTest.java58 wanted = buildIntArgMethod().arg(2222).toInvocationMatcher(); in shouldReportWantedInvocationDiffersFromActual()
59 invocations = asList(buildIntArgMethod().arg(1111).toInvocation()); in shouldReportWantedInvocationDiffersFromActual()
71 private InvocationBuilder buildIntArgMethod() { in buildIntArgMethod() method in MissingInvocationCheckerTest