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

项目:test-as-you-think    文件:TestAsYouThink.java   
public static AbstractInstantAssert<?> resultOf(CheckedInstantSupplier whenStep) {
    return assertThat(result(whenStep));
}
项目:extended-mockito    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractInstantAssert<?> org.assertj.core.api.Assertions.assertThat(java.time.Instant)
 * {@link org.assertj.core.api.Assertions#assertThat(java.time.Instant)}
 */
default AbstractInstantAssert<?> assertThat(Instant actual) {
    return Assertions.assertThat(actual);
}
项目:tdd-mixins-core    文件:AssertJ.java   
/**
 * Delegate call to public static org.assertj.core.api.AbstractInstantAssert<?> org.assertj.core.api.Assertions.assertThat(java.time.Instant)
 * {@link org.assertj.core.api.Assertions#assertThat(java.time.Instant)}
 */
default AbstractInstantAssert<?> assertThat(Instant actual) {
    return Assertions.assertThat(actual);
}