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