fun <T> Assert<Result<T>>.isSuccess(): Assert<T>
Asserts the given assertk.Result successful returned a value, returning it's result if it did or failing if it didn't.
assertThat { 1 + 1 }.isSuccess().isEqualTo(2)