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