/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Comparable)} */ default <T extends Comparable<? super T>> AbstractComparableAssert<?, T> then(T actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Comparable)} */ default <T extends Comparable<? super T>> AbstractComparableAssert<?, T> and(T actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
public AbstractComparableAssert<?, Mode> mode() { isNotNull(); return assertThat(actual.getMode()).as(description("mode")); }
public static AbstractComparableAssert<?, Duration> assertRelativeTime(String relativeTime) { return assertThat(PredictionRequest.parseRelativeTime(relativeTime)).as(relativeTime); }
/** * Delegate call to public static <T> org.assertj.core.api.AbstractComparableAssert<?, T> org.assertj.core.api.Assertions.assertThat(T) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Comparable)} */ default <T extends Comparable<? super T>> AbstractComparableAssert<?, T> assertThat(T assertion) { return Assertions.assertThat(assertion); }