Searched refs:methodInvocationReport (Results 1 – 3 of 3) sorted by relevance
33 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation() argument35 printStubInfo(methodInvocationReport); in reportInvocation()36 printInvocation(methodInvocationReport.getInvocation()); in reportInvocation()37 printReturnedValueOrThrowable(methodInvocationReport); in reportInvocation()41 private void printReturnedValueOrThrowable(MethodInvocationReport methodInvocationReport) { in printReturnedValueOrThrowable() argument42 if (methodInvocationReport.threwException()) { in printReturnedValueOrThrowable()43 …String message = methodInvocationReport.getThrowable().getMessage() == null ? "" : " with message … in printReturnedValueOrThrowable()44 … printlnIndented("has thrown: " + methodInvocationReport.getThrowable().getClass() + message); in printReturnedValueOrThrowable()46 …String type = (methodInvocationReport.getReturnedValue() == null) ? "" : " (" + methodInvocationRe… in printReturnedValueOrThrowable()47 … printlnIndented("has returned: \"" + methodInvocationReport.getReturnedValue() + "\"" + type); in printReturnedValueOrThrowable()[all …]
27 void reportInvocation(MethodInvocationReport methodInvocationReport); in reportInvocation() argument
132 public void reportInvocation(MethodInvocationReport methodInvocationReport) { in reportInvocation() argument