doc / ch.tutteli.atrium.creating / BaseReportingAssertionPlant

BaseReportingAssertionPlant

interface BaseReportingAssertionPlant<out T, out A : BaseAssertionPlant<T, A>> : BaseAssertionPlant<T, A>, AssertionPlantWithCommonFields<T>

Represents a plant for Assertions and offers methods to addAssertions to this plant.

It defines what ReportingAssertionPlant and ReportingAssertionPlantNullable have in common.

Parameters

T - The type of the subject of this AssertionPlant. A - A subtype of BaseAssertionPlant which is used in the fluent style API.

Properties

subject

open val subject: T

The subject for which this plant will create, check and report Assertions.

Inherited Properties

commonFields

abstract val commonFields: CommonFields<T>

CommonFields of this plant.

Inherited Functions

addAssertion

abstract fun addAssertion(assertion: Assertion): A

Adds the given assertion to this plant.

Inheritors

ReportingAssertionPlant

interface ReportingAssertionPlant<out T : Any> : AssertionPlant<T>, BaseReportingAssertionPlant<T, AssertionPlant<T>>

Represents a plant for Assertions and offers the possibility to addAssertions and to report them.

ReportingAssertionPlantNullable

interface ReportingAssertionPlantNullable<out T> : AssertionPlantNullable<T>, BaseReportingAssertionPlant<T, AssertionPlantNullable<T>>