Searched defs:methodCall (Results 1 - 1 of 1) sorted by relevance

/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java692 MethodCall methodCall = new MethodCall(method, callSite, args);
693 innerVerify(method, matchers, methodCall, proxy, callSite, mHowManyTimes, mOrderCounter);
714 MethodCall methodCall = new MethodCall(method, callSite, args);
715 innerStub(method, matchers, methodCall, callSite, mStubbingAction);
728 MethodCall methodCall = new MethodCall(method, callSite, args);
729 return innerRecord(method, args, methodCall, proxy, callSite);
758 MethodCall methodCall, Object proxy, StackTraceElement callSite) throws Throwable {
769 mRecordedCalls.add(methodCall);
771 if (areMethodsSame(stubbedCall.mMethodCall.mMethod, methodCall.mMethod)) {
772 if (stubbedCall.mMethodCall.argsMatch(methodCall
757 innerRecord(Method method, final Object[] args, MethodCall methodCall, Object proxy, StackTraceElement callSite) argument
782 innerStub(Method method, final ArgumentMatcher[] matchers, MethodCall methodCall, StackTraceElement callSite, final Action stubbingAction) argument
847 innerVerify(Method method, ArgumentMatcher[] matchers, MethodCall methodCall, Object proxy, StackTraceElement callSite, CallCount callCount, OrderChecker orderCounter) argument
875 countMatchingInvocations(Method method, ArgumentMatcher[] matchers, MethodCall methodCall) argument
891 formatFailedVerifyMessage(MethodCall methodCall, int total, long timeoutMillis, CallCount callCount) argument
972 StubbedCall(MethodCall methodCall, Action action) argument
[all...]

Completed in 812 milliseconds