OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unstubbed
(Results
1 - 10
of
10
) sorted by null
/external/mockito/src/org/mockito/internal/debugging/
FindingsListener.java
11
void foundStubCalledWithDifferentArgs(Invocation unused, InvocationMatcher
unstubbed
);
15
void foundUnstubbed(InvocationMatcher
unstubbed
);
LoggingListener.java
22
public void foundStubCalledWithDifferentArgs(Invocation unused, InvocationMatcher
unstubbed
) {
27
"BUT called with different args " +
unstubbed
.getInvocation().getLocation(),
35
public void foundUnstubbed(InvocationMatcher
unstubbed
) {
39
unstubbed
,
40
unstubbed
.getInvocation().getLocation(),
WarningsFinder.java
33
InvocationMatcher
unstubbed
= unstubbedIterator.next();
local
34
if(
unstubbed
.hasSimilarMethod(unused)) {
35
findingsListener.foundStubCalledWithDifferentArgs(unused,
unstubbed
);
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
ReturnsSmartNulls.java
22
* This implementation can be helpful when working with legacy code.
Unstubbed
24
*
unstubbed
call you get a NullPointerException. This implementation of
27
* line where
unstubbed
method was called. You just click on the stack trace.
66
return "SmartNull returned by this
unstubbed
method call on a mock:\n" +
/external/mockito/src/org/mockito/
ReturnValues.java
23
* Configures return values for an
unstubbed
invocation
31
* return value for an
unstubbed
invocation
Mockito.java
44
* <a href="#14">14. Changing default return values of
unstubbed
invocations (Since 1.7) </a><br/>
546
* The corollary is that when an <b>*
unstubbed
*</b> method is called <b>*on the spy*</b> but <b>*not on the real instance*</b>,
559
* <h3 id="14">14. Changing <a class="meaningful_link" href="#defaultreturn">default return values of
unstubbed
invocations</a> (Since 1.7)</h3>
[
all
...]
Spy.java
77
* The corollary is that when an <b>*
unstubbed
*</b> method is called <b>*on the spy*</b> but <b>*not on the real instance*</b>,
/external/mockito/src/org/mockito/internal/stubbing/answers/
CallsRealMethods.java
15
* {@link Answer} can be used to define the return values of
unstubbed
invocations.
18
* When this implementation is used,
unstubbed
methods will delegate to the real implementation.
/external/mockito/src/org/mockito/configuration/
IMockitoConfiguration.java
16
* A reason of configuring Mockito might be if you disagree with the {@link ReturnsEmptyValues}
unstubbed
mocks return.
47
* Allows configuring the default return values of
unstubbed
invocations
55
* Allows configuring the default answers of
unstubbed
invocations
/external/littlemock/src/com/google/testing/littlemock/
LittleMock.java
69
* assertEquals(null, mockFoo.aString(6)); //
Unstubbed
method calls return a sensible default.
[
all
...]
Completed in 395 milliseconds