Package org.mockito
Interface MockedConstruction.Context
-
- Enclosing interface:
- MockedConstruction<T>
public static interface MockedConstruction.Context
The context for a construction mock.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<?>
arguments()
Get the arguments that were passed to the constructor.Constructor<?>
constructor()
Get the constructor that is invoked during the mock creation.int
getCount()
-
-
-
Method Detail
-
getCount
int getCount()
-
constructor
Constructor<?> constructor()
Get the constructor that is invoked during the mock creation.- Returns:
- the constructor.
-
arguments
List<?> arguments()
Get the arguments that were passed to the constructor.- Returns:
- the arguments passed to the constructor, as a list.
-
-