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

项目:test-as-you-think    文件:TestAsYouThink.java   
public static AbstractLongAssert<?> resultOf(CheckedLongSupplier whenStep) {
    return assertThat(result(whenStep));
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(long)}
 */
default AbstractLongAssert<?> then(long actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(long)}
 */
default AbstractLongAssert<?> and(long actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Long)}
 */
default AbstractLongAssert<?> then(Long actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:fluent-bdd    文件:WithFluentAssertJ.java   
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Long)}
 */
default AbstractLongAssert<?> and(Long actual) {
    fluentBdd().verification.recordThen(this);
    return DELEGATE.assertThat(actual);
}
项目:bouncestorage    文件:UtilsTest.java   
public static AbstractLongAssert<LongAssert> assertStatus(BounceService.BounceTaskStatus status,
        LongSupplier supplier) throws Exception {
    status.future().get();
    ObjectMapper mapper = new ObjectMapper();
    return new LongAssert(supplier.getAsLong()).as(mapper.writeValueAsString(status));
}
项目:extended-mockito    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Long)
 * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Long)}
 */
default AbstractLongAssert<?> assertThat(Long actual) {
    return Assertions.assertThat(actual);
}
项目:extended-mockito    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(long)
 * {@link org.assertj.core.api.Assertions#assertThat(long)}
 */
default AbstractLongAssert<?> assertThat(long actual) {
    return Assertions.assertThat(actual);
}
项目:tdd-mixins-core    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Long)
 * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Long)}
 */
default AbstractLongAssert<?> assertThat(Long actual) {
    return Assertions.assertThat(actual);
}
项目:tdd-mixins-core    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(long)
 * {@link org.assertj.core.api.Assertions#assertThat(long)}
 */
default AbstractLongAssert<?> assertThat(long actual) {
    return Assertions.assertThat(actual);
}
项目:interface-it    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Long)
 * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Long)}
 */
default AbstractLongAssert<?> assertThat(Long actual) {
    return Assertions.assertThat(actual);
}
项目:interface-it    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(long)
 * {@link org.assertj.core.api.Assertions#assertThat(long)}
 */
default AbstractLongAssert<?> assertThat(long actual) {
    return Assertions.assertThat(actual);
}