public static AbstractCharacterAssert<?> resultOf(CheckedCharacterSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Character)} */ default AbstractCharacterAssert<?> then(Character actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Character)} */ default AbstractCharacterAssert<?> and(Character actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(char)} */ default AbstractCharacterAssert<?> then(char actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(char)} */ default AbstractCharacterAssert<?> and(char actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractCharacterAssert<?> org.assertj.core.api.Assertions.assertThat(char) * {@link org.assertj.core.api.Assertions#assertThat(char)} */ default AbstractCharacterAssert<?> assertThat(char actual) { return Assertions.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractCharacterAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Character) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Character)} */ default AbstractCharacterAssert<?> assertThat(Character actual) { return Assertions.assertThat(actual); }