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