public static AbstractShortAssert<?> resultOf(CheckedShortSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(short)} */ default AbstractShortAssert<?> then(short actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(short)} */ default AbstractShortAssert<?> and(short actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Short)} */ default AbstractShortAssert<?> then(Short actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Short)} */ default AbstractShortAssert<?> and(Short actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractShortAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Short) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Short)} */ default AbstractShortAssert<?> assertThat(Short actual) { return Assertions.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractShortAssert<?> org.assertj.core.api.Assertions.assertThat(short) * {@link org.assertj.core.api.Assertions#assertThat(short)} */ default AbstractShortAssert<?> assertThat(short actual) { return Assertions.assertThat(actual); }