OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MockInjection
(Results
1 - 2
of
2
) sorted by null
/external/mockito/src/test/java/org/mockito/internal/configuration/
MockInjectionTest.java
10
import org.mockito.internal.configuration.injection.
MockInjection
;
34
MockInjection
.onField((Field) null, this);
39
MockInjection
.onFields((Set<Field>) null, this);
44
MockInjection
.onField(field("withConstructor"), null);
49
MockInjection
.onField(field("withConstructor"), this).withMocks(null);
55
MockInjection
.onField(field("withConstructor"), this).withMocks(oneSetMock()).tryConstructorInjection().apply();
62
MockInjection
.onField(field("withoutConstructor"), this).withMocks(otherKindOfMocks()).tryConstructorInjection().apply();
69
MockInjection
.onField(field("withoutConstructor"), this).withMocks(oneSetMock()).tryPropertyOrFieldInjection().apply();
76
MockInjection
.onField(field("withoutConstructor"), this).withMocks(otherKindOfMocks()).tryPropertyOrFieldInjection().apply();
/external/mockito/src/main/java/org/mockito/internal/configuration/injection/
MockInjection.java
25
public class
MockInjection
{
Completed in 57 milliseconds