本文整理了Java中org.assertj.core.internal.Objects.assertNull()
方法的一些代码示例,展示了Objects.assertNull()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Objects.assertNull()
方法的具体详情如下:
包路径:org.assertj.core.internal.Objects
类名称:Objects
方法名:assertNull
[英]Asserts that the given object is null.
[中]断言给定对象为null。
代码示例来源:origin: org.assertj/assertj-core
/** {@inheritDoc} */
@Override
public void isNull() {
objects.assertNull(info, actual);
}
代码示例来源:origin: joel-costigliola/assertj-core
/** {@inheritDoc} */
@Override
public void isNull() {
objects.assertNull(info, actual);
}
代码示例来源:origin: palantir/atlasdb
private void assertMetricNotExists(MetricName metricName) {
objects.assertNull(writableAssertionInfo, getMetric(metricName));
}
代码示例来源:origin: palantir/atlasdb
public void hasNotRegisteredTargetedOutcome(SweepOutcome outcome) {
objects.assertNull(info, getGaugeForTargetedOutcome(outcome));
}
代码示例来源:origin: org.assertj/assertj-core-java8
/** {@inheritDoc} */
@Override
public void isNull() {
objects.assertNull(info, actual);
}
代码示例来源:origin: com.palantir.atlasdb/atlasdb-tests-shared
private void assertMetricNotExists(MetricName metricName) {
objects.assertNull(writableAssertionInfo, getMetric(metricName));
}
代码示例来源:origin: org.assertj/assertj-db
/**
* Verifies that the value is {@code null}.
*
* @param <A> The type of the assertion which call this method.
* @param assertion The assertion which call this method.
* @param info Writable information about an assertion.
* @param value The value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is not {@code null}.
*/
public static <A extends AbstractAssert<?>> A isNull(A assertion, WritableAssertionInfo info, Value value) {
objects.assertNull(info, value.getValue());
return assertion;
}
代码示例来源:origin: joel-costigliola/assertj-db
/**
* Verifies that the value is {@code null}.
*
* @param <A> The type of the assertion which call this method.
* @param assertion The assertion which call this method.
* @param info Writable information about an assertion.
* @param value The value.
* @return {@code this} assertion object.
* @throws AssertionError If the value is not {@code null}.
*/
public static <A extends AbstractAssert<?>> A isNull(A assertion, WritableAssertionInfo info, Value value) {
objects.assertNull(info, value.getValue());
return assertion;
}
内容来源于网络,如有侵权,请联系作者删除!