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