Interface Mocker<T>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Mocker<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static <T> Class<? extends T>
load(Class<T> clazz)
T
make(Object... args)
static <T> Supplier<T>
nullary(Class<T> clazz)
static <T> Mocker<T>
variadic(Class<T> clazz)
-