static AbstractAssertion |
Assertions.assertPojoMethodsFor(ClassAndFieldPredicatePair baseClassAndFieldPredicatePair,
ClassAndFieldPredicatePair... classAndFieldPredicatePairs) |
|
static AbstractAssertion |
Assertions.assertPojoMethodsFor(Class<?> clazz) |
Creates assertion for class.
|
static AbstractAssertion |
Assertions.assertPojoMethodsFor(Class<?> clazz,
Predicate<String> fieldPredicate) |
Creates assertion for class and field predicate.
|
static AbstractAssertion |
Assertions.assertPojoMethodsFor(String qualifiedClassName) |
Creates assertion for class, by qualified class name.
|
static AbstractAssertion |
Assertions.assertPojoMethodsFor(String qualifiedClassName,
Predicate<String> fieldPredicate) |
Creates assertion for class, by qualified class name and field predicate.
|
static AbstractAssertion |
Assertions.assertPojoMethodsForAll(ClassAndFieldPredicatePair... classesAndFieldPredicatesPairs) |
|
static AbstractAssertion |
Assertions.assertPojoMethodsForAll(PackageFilter packageFilter) |
|
static AbstractAssertion |
Assertions.assertPojoMethodsForAll(Class... classes) |
Creates assertion for all classes.
|
static AbstractAssertion |
Assertions.assertPojoMethodsForAll(String... qualifiedClassNames) |
Creates assertion for all classes, by classes names.
|
AbstractAssertion |
AbstractAssertion.create(Class<?> clazz,
ConstructorParameters constructorParameters) |
Indicates, that class should be constructed using given constructor parameters.
|
AbstractAssertion |
AbstractAssertion.create(Class<?> clazz,
Object[] constructorParameters,
Class<?>[] constructorParameterTypes) |
Indicates, that class should be constructed using given constructor parameters.
|
AbstractAssertion |
AbstractAssertion.create(String qualifiedClassName,
ConstructorParameters constructorParameters) |
Indicates, that class should be constructed using given constructor parameters.
|
AbstractAssertion |
AbstractAssertion.create(String qualifiedClassName,
Object[] constructorParameters,
Class<?>[] constructorParameterTypes) |
Indicates, that class should be constructed using given constructor parameters.
|
AbstractAssertion |
AbstractAssertion.quickly() |
Specifies generation of O(N) test objects for N fields.
|
AbstractAssertion |
AbstractAssertion.testing(Method method) |
Specifies what test will be performed.
|
AbstractAssertion |
AbstractAssertion.testing(Method... methods) |
Specifies what tests will be performed.
|
AbstractAssertion |
AbstractAssertion.thoroughly() |
Specifies generation of O(2^N) test objects for N fields.
|
AbstractAssertion |
AbstractAssertion.using(AbstractFieldValueChanger abstractFieldValueChanger) |
Specifies what field values changer will be used for testing.
|