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