Class MockInjection
- java.lang.Object
-
- org.mockito.internal.configuration.injection.MockInjection
-
public final class MockInjection extends java.lang.Object
Internal injection configuration utility.Allow the user of this class to configure the way the injection of mocks will happen.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MockInjection.OngoingMockInjection
Ongoing configuration of the mock injector.
-
Constructor Summary
Constructors Modifier Constructor Description private
MockInjection()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MockInjection.OngoingMockInjection
onField(java.lang.reflect.Field field, java.lang.Object ofInstance)
Create a new configuration setup for a fieldstatic MockInjection.OngoingMockInjection
onFields(java.util.Set<java.lang.reflect.Field> fields, java.lang.Object ofInstance)
Create a new configuration setup for fields
-
-
-
Method Detail
-
onField
public static MockInjection.OngoingMockInjection onField(java.lang.reflect.Field field, java.lang.Object ofInstance)
Create a new configuration setup for a field- Parameters:
field
- Field needing mock injectionofInstance
- Instance owning thefield
- Returns:
- New configuration builder
-
onFields
public static MockInjection.OngoingMockInjection onFields(java.util.Set<java.lang.reflect.Field> fields, java.lang.Object ofInstance)
Create a new configuration setup for fields- Parameters:
fields
- Fields needing mock injectionofInstance
- Instance owning thefield
- Returns:
- New configuration builder
-
-