org.mockito.internal.configuration.injection
Class MockInjection
java.lang.Object
org.mockito.internal.configuration.injection.MockInjection
public 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.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MockInjection
public MockInjection()
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 the field
- 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 the field
- Returns:
- New configuration builder