doc / ch.tutteli.atrium / AtriumFactory / newCollectingPlant

newCollectingPlant

fun <T : Any> newCollectingPlant(subjectProvider: () -> T): CollectingAssertionPlant<T>

Overrides IAtriumFactory.newCollectingPlant

Creates a CollectingAssertionPlant which is intended to be used as receiver object in lambdas to collect created Assertions inside the lambda.

Notice, that this AssertionPlant might not even provide a AssertionPlant.subject in which case it throws a PlantHasNoSubjectException if subject is accessed. Use newCheckingPlant instead if you want to know whether the assertions hold.

Parameters

subjectProvider - The function which will either provide the subject for this plant or throw an PlantHasNoSubjectException in case it cannot be provided.

Return
The newly created assertion plant.