本文整理了Java中org.assertj.core.internal.Objects.checkIsNotNullAndNotEmpty()
方法的一些代码示例,展示了Objects.checkIsNotNullAndNotEmpty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Objects.checkIsNotNullAndNotEmpty()
方法的具体详情如下:
包路径:org.assertj.core.internal.Objects
类名称:Objects
方法名:checkIsNotNullAndNotEmpty
暂无
代码示例来源:origin: org.assertj/assertj-core
/**
* Asserts that the given object is present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is not present in the given array.
*/
public void assertIsIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertIsIn(info, actual, asList(values));
}
代码示例来源:origin: org.assertj/assertj-core
/**
* Asserts that the given object is not present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is present in the given array.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertIsNotIn(info, actual, asList(values));
}
代码示例来源:origin: joel-costigliola/assertj-core
/**
* Asserts that the given object is present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is not present in the given array.
*/
public void assertIsIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertIsIn(info, actual, asList(values));
}
代码示例来源:origin: joel-costigliola/assertj-core
/**
* Asserts that the given object is not present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is present in the given array.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertIsNotIn(info, actual, asList(values));
}
代码示例来源:origin: org.assertj/assertj-core
/**
* Asserts that the given object is not present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given collection.
* @throws NullPointerException if the given iterable is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is present in the given collection.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
if (isActualIn(actual, values)) throw failures.failure(info, shouldNotBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: org.assertj/assertj-core
/**
* Asserts that the given object is present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given iterable.
* @throws NullPointerException if the given collection is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is not present in the given collection.
*/
public void assertIsIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
if (!isActualIn(actual, values)) throw failures.failure(info, shouldBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: joel-costigliola/assertj-core
/**
* Asserts that the given object is present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given iterable.
* @throws NullPointerException if the given collection is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is not present in the given collection.
*/
public void assertIsIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
if (!isActualIn(actual, values)) throw failures.failure(info, shouldBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: joel-costigliola/assertj-core
/**
* Asserts that the given object is not present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given collection.
* @throws NullPointerException if the given iterable is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is present in the given collection.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
if (isActualIn(actual, values)) throw failures.failure(info, shouldNotBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: org.assertj/assertj-core-java8
/**
* Asserts that the given object is present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given iterable.
* @throws NullPointerException if the given collection is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is not present in the given collection.
*/
public void assertIsIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
assertNotNull(info, actual);
if (isActualIn(actual, values)) {
return;
}
throw failures.failure(info, shouldBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: org.assertj/assertj-core-java8
/**
* Asserts that the given object is not present in the given collection.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given collection.
* @throws NullPointerException if the given iterable is {@code null}.
* @throws IllegalArgumentException if the given collection is empty.
* @throws AssertionError if the given object is present in the given collection.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Iterable<?> values) {
checkIsNotNullAndNotEmpty(values);
assertNotNull(info, actual);
if (!isActualIn(actual, values)) {
return;
}
throw failures.failure(info, shouldNotBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: org.assertj/assertj-core-java8
/**
* Asserts that the given object is present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is not present in the given array.
*/
public void assertIsIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertNotNull(info, actual);
if (isItemInArray(actual, values)) {
return;
}
throw failures.failure(info, shouldBeIn(actual, values, comparisonStrategy));
}
代码示例来源:origin: org.assertj/assertj-core-java8
/**
* Asserts that the given object is not present in the given array.
*
* @param info contains information about the assertion.
* @param actual the given object.
* @param values the given array.
* @throws NullPointerException if the given array is {@code null}.
* @throws IllegalArgumentException if the given array is empty.
* @throws AssertionError if the given object is present in the given array.
*/
public void assertIsNotIn(AssertionInfo info, Object actual, Object[] values) {
checkIsNotNullAndNotEmpty(values);
assertNotNull(info, actual);
if (!isItemInArray(actual, values)) {
return;
}
throw failures.failure(info, shouldNotBeIn(actual, values, comparisonStrategy));
}
内容来源于网络,如有侵权,请联系作者删除!