OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ParameterizedConstructorInstantiator
(Results
1 - 2
of
2
) sorted by null
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
ParameterizedConstructorInstantiatorTest.java
16
import org.mockito.internal.util.reflection.FieldInitializer.
ParameterizedConstructorInstantiator
;
56
new
ParameterizedConstructorInstantiator
(this, field("whateverForNow"), resolver);
62
new
ParameterizedConstructorInstantiator
(this, field("withNoArgConstructor"), resolver).instantiate();
75
new
ParameterizedConstructorInstantiator
(this, field("withMultipleConstructor"), resolver).instantiate();
89
new
ParameterizedConstructorInstantiator
(this, field("withMultipleConstructor"), resolver).instantiate();
101
new
ParameterizedConstructorInstantiator
(this, field("withThrowingConstructor"), resolver).instantiate();
113
new
ParameterizedConstructorInstantiator
(this, field("withVarargConstructor"), resolver).instantiate();
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldInitializer.java
64
this(fieldOwner, field, new
ParameterizedConstructorInstantiator
(fieldOwner, field, argResolver));
225
static class
ParameterizedConstructorInstantiator
implements ConstructorInstantiator {
255
ParameterizedConstructorInstantiator
(Object testClass, Field field, ConstructorArgumentResolver argumentResolver) {
Completed in 767 milliseconds