Java 类org.assertj.core.api.AbstractIntegerAssert 实例源码

项目:test-as-you-think    文件:TestAsYouThink.java   
public static AbstractIntegerAssert<?> resultOf(CheckedIntegerSupplier whenStep) {
    return assertThat(result(whenStep));
}
项目:behaim    文件:StatisticsVisitorTest.java   
private static AbstractIntegerAssert<?> assertThatCount(StatisticsVisitor visitor, PersonFields field) {
    Class<?> fieldClass = getConcreteClass(field);
    return assertThat(visitor.getCount(fieldClass)).as("count(%s)", fieldClass.getSimpleName());
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(int)}
 */
default AbstractIntegerAssert<?> then(int actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(int)}
 */
default AbstractIntegerAssert<?> and(int actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Integer)}
 */
default AbstractIntegerAssert<?> then(Integer actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Integer)}
 */
default AbstractIntegerAssert<?> and(Integer actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:javalang-compiler    文件:SymbolDataAssert.java   
public AbstractIntegerAssert<?> arrayCount() {
    return Assertions.assertThat(actual.getArrayCount());
}
项目:extended-mockito    文件:AssertJ.java   
/**
 * 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);
}
项目:extended-mockito    文件:AssertJ.java   
/**
 * 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);
}
项目:tdd-mixins-core    文件:AssertJ.java   
/**
 * 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);
}
项目:tdd-mixins-core    文件:AssertJ.java   
/**
 * 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);
}
项目:interface-it    文件:AssertJ.java   
/**
 * 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);
}
项目:interface-it    文件:AssertJ.java   
/**
 * 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);
}