public static AbstractIntegerAssert<?> resultOf(CheckedIntegerSupplier whenStep) { return assertThat(result(whenStep)); }
private static AbstractIntegerAssert<?> assertThatCount(StatisticsVisitor visitor, PersonFields field) { Class<?> fieldClass = getConcreteClass(field); return assertThat(visitor.getCount(fieldClass)).as("count(%s)", fieldClass.getSimpleName()); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(int)} */ default AbstractIntegerAssert<?> then(int actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(int)} */ default AbstractIntegerAssert<?> and(int actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Integer)} */ default AbstractIntegerAssert<?> then(Integer actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Integer)} */ default AbstractIntegerAssert<?> and(Integer actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
public AbstractIntegerAssert<?> arrayCount() { return Assertions.assertThat(actual.getArrayCount()); }
/** * Delegate call to public static org.assertj.core.api.AbstractIntegerAssert<?> org.assertj.core.api.Assertions.assertThat(int) * {@link org.assertj.core.api.Assertions#assertThat(int)} */ default AbstractIntegerAssert<?> assertThat(int actual) { return Assertions.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractIntegerAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Integer) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Integer)} */ default AbstractIntegerAssert<?> assertThat(Integer actual) { return Assertions.assertThat(actual); }