open fun <T : Any> newReportingPlantAndAddAssertionsCreatedBy(assertionVerb: Translatable, subject: T, reporter: Reporter, assertionCreator: AssertionPlant<T>.() -> Unit): AssertionPlant<T>
Creates a ReportingAssertionPlant which AssertionPlant.addAssertionsCreatedBy the given assertionCreator lambda where the created Assertions are added as a group and usually (depending on the configured Reporter) reported as a whole.
It creates a IAtriumFactory.newThrowingAssertionChecker based on the given reporter for assertion checking.
assertionVerb
- The assertion verb which will be used inter alia in reporting
(see AssertionPlantWithCommonFields.CommonFields.assertionVerb).
subject
- The subject for which this plant will create/check Assertions.
(see BaseAssertionPlant.subject).
reporter
- The reporter which will be used for a newThrowingAssertionChecker.
AssertionError
- The newly created AssertionPlant might throw an AssertionError in case a
created Assertion does not hold.
Return
The newly created AssertionPlant which can be used to postulate further assertions.