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