当前位置: 首页>>代码示例>>Java>>正文


Java AbstractLocalDateTimeAssert类代码示例

本文整理汇总了Java中org.assertj.core.api.AbstractLocalDateTimeAssert的典型用法代码示例。如果您正苦于以下问题:Java AbstractLocalDateTimeAssert类的具体用法?Java AbstractLocalDateTimeAssert怎么用?Java AbstractLocalDateTimeAssert使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AbstractLocalDateTimeAssert类属于org.assertj.core.api包,在下文中一共展示了AbstractLocalDateTimeAssert类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: resultOf

import org.assertj.core.api.AbstractLocalDateTimeAssert; //导入依赖的package包/类
public static AbstractLocalDateTimeAssert<?> resultOf(CheckedLocalDateTimeSupplier whenStep) {
    return assertThat(result(whenStep));
}
 
开发者ID:xapn,项目名称:test-as-you-think,代码行数:4,代码来源:TestAsYouThink.java

示例2: then

import org.assertj.core.api.AbstractLocalDateTimeAssert; //导入依赖的package包/类
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(LocalDateTime)}
 */
default AbstractLocalDateTimeAssert<?> then(LocalDateTime localDateTime) {
	fluentBdd().verification.recordThen(this);
	return DELEGATE.assertThat(localDateTime);
}
 
开发者ID:theangrydev,项目名称:fluent-bdd,代码行数:8,代码来源:WithFluentAssertJ.java

示例3: and

import org.assertj.core.api.AbstractLocalDateTimeAssert; //导入依赖的package包/类
/**
 * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(LocalDateTime)}
 */
default AbstractLocalDateTimeAssert<?> and(LocalDateTime localDateTime) {
	fluentBdd().verification.recordThen(this);
	return DELEGATE.assertThat(localDateTime);
}
 
开发者ID:theangrydev,项目名称:fluent-bdd,代码行数:8,代码来源:WithFluentAssertJ.java

示例4: assertThat

import org.assertj.core.api.AbstractLocalDateTimeAssert; //导入依赖的package包/类
/**
 * Delegate call to public static org.assertj.core.api.AbstractLocalDateTimeAssert<?> org.assertj.core.api.Assertions.assertThat(java.time.LocalDateTime)
 * {@link org.assertj.core.api.Assertions#assertThat(java.time.LocalDateTime)}
 */
default AbstractLocalDateTimeAssert<?> assertThat(LocalDateTime actual) {
    return Assertions.assertThat(actual);
}
 
开发者ID:aro-tech,项目名称:extended-mockito,代码行数:8,代码来源:AssertJ.java


注:本文中的org.assertj.core.api.AbstractLocalDateTimeAssert类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。