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