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