public static AbstractLocalDateTimeAssert<?> resultOf(CheckedLocalDateTimeSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(LocalDateTime)} */ default AbstractLocalDateTimeAssert<?> then(LocalDateTime localDateTime) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(localDateTime); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(LocalDateTime)} */ default AbstractLocalDateTimeAssert<?> and(LocalDateTime localDateTime) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(localDateTime); }
/** * Delegate call to public static org.assertj.core.api.AbstractLocalDateTimeAssert<?> org.assertj.core.api.Assertions.assertThat(java.time.LocalDateTime) * {@link org.assertj.core.api.Assertions#assertThat(java.time.LocalDateTime)} */ default AbstractLocalDateTimeAssert<?> assertThat(LocalDateTime actual) { return Assertions.assertThat(actual); }