fun <E, T : Result<E>> Expect<T>.isSuccess(): Expect<E>
Expects that the subject of the assertion (a Result) is a Success and returns an Expect for the inner type E.
AssertionError
- Might throw an AssertionError if the given assertion is not a success.
Return
The newly created Expect if the given assertion is success
Since
0.9.0
fun <E, T : Result<E>> Expect<T>.isSuccess(assertionCreator: Expect<E>.() -> Unit): Expect<T>
Expects that the subject of the assertion (a Result) is a Success and that it holds all assertions the given assertionCreator creates.
AssertionError
- Might throw an AssertionError if the given assertions are not success.
Return
This assertion container to support a fluent API.
Since
0.9.0