public static OptionalLongAssert resultOf(CheckedOptionalLongSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(java.util.OptionalLong)} */ default OptionalLongAssert then(OptionalLong optional) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(optional); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(java.util.OptionalLong)} */ default OptionalLongAssert and(OptionalLong optional) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(optional); }
/** * Delegate call to public static org.assertj.core.api.OptionalLongAssert org.assertj.core.api.Assertions.assertThat(java.util.OptionalLong) * {@link org.assertj.core.api.Assertions#assertThat(java.util.OptionalLong)} */ default OptionalLongAssert assertThat(OptionalLong actual) { return Assertions.assertThat(actual); }