Package net.jqwik.api.facades
Class ReflectionSupportFacade
java.lang.Object
net.jqwik.api.facades.ReflectionSupportFacade
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionabstract <T> TnewInstanceInTestContext(Class<T> clazz, Object context) Create instance of a class that can potentially be a non static inner class and its outer instance might becontextabstract <T> TnewInstanceWithDefaultConstructor(Class<T> clazz) Create instance of a class that can potentially be a non static inner class
- 
Field Details- 
implementation
 
- 
- 
Constructor Details- 
ReflectionSupportFacadepublic ReflectionSupportFacade()
 
- 
- 
Method Details- 
newInstanceInTestContextCreate instance of a class that can potentially be a non static inner class and its outer instance might becontext- Type Parameters:
- T- The type of the instance to create
- Parameters:
- clazz- The class to instantiate
- context- The potential context instance
- Returns:
- the newly created instance
 
- 
newInstanceWithDefaultConstructorCreate instance of a class that can potentially be a non static inner class- Type Parameters:
- T- The type of the instance to create
- Parameters:
- clazz- The class to instantiate
- Returns:
- the newly created instance
 
 
-