interface Builder
(source)
The entry point of the Throwable thrown
contract.
abstract val act: () -> Unit |
|
abstract val assertionVerb: Translatable |
|
abstract val reporter: Reporter |
fun Builder.notToThrow(): Unit
Makes the assertion that no Throwable is thrown at all. |
|
fun Builder.notToThrow(): Unit
Makes the assertion that no Throwable is thrown at all. |
|
fun <TExpected : Throwable> Builder.
Makes the assertion that the thrown Throwable is of type TExpected. fun <TExpected : Throwable> Builder.
Makes the assertion that the thrown Throwable is of type TExpected and holds all assertions the assertionCreator might create in addition. |
|
fun <TExpected : Throwable> Builder.
Makes the assertion that the thrown Throwable is of type TExpected. infix fun <TExpected : Throwable> Builder.
Makes the assertion that the thrown Throwable is of type TExpected and holds all assertions the assertionCreator might create in addition. |
|
fun <TExpected : Throwable> Builder.toThrow(assertionCreator: Assert<TExpected>.() -> Unit): Unit
Makes the assertion that the thrown Throwable is of type TExpected and holds all assertions the assertionCreator might create in addition. |
|
infix fun <TExpected : Throwable> Builder.toThrow(assertionCreator: Assert<TExpected>.() -> Unit): Unit
Makes the assertion that the thrown Throwable is of type TExpected and holds all assertions the assertionCreator might create in addition. |
|
fun <TExpected : Throwable> Builder.wirft(assertionCreator: Assert<TExpected>.() -> Unit): Unit
Makes the assertion that the thrown Throwable is of type TExpected and holds all assertions the assertionCreator might create in addition. fun <TExpected : Throwable> Builder.
Makes the assertion that the thrown Throwable is of type TExpected. |
|
fun Builder.wirftNichts(): Unit
Makes the assertion that no Throwable is thrown at all. |
class
Represents the deprecated entry point of the fluent API of sophisticated a Throwable |