public class AssertionsOnColumnNullity extends Object
AssertOnColumnNullity| Modifier and Type | Method and Description |
|---|---|
static <A extends AbstractAssert> |
hasOnlyNotNullValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
List<Object> valuesList)
Verifies that all the values of the column are not
null. |
static <A extends AbstractAssert> |
hasOnlyNullValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
List<Object> valuesList)
Verifies that all the values of the column are
null. |
public static <A extends AbstractAssert> A hasOnlyNullValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, List<Object> valuesList)
null.A - The type of the assertion which call this method.assertion - The assertion which call this method.info - Writable information about an assertion.valuesList - The list of values.this assertion object.AssertionError - If at least one of the values of the column are not null.public static <A extends AbstractAssert> A hasOnlyNotNullValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, List<Object> valuesList)
null.A - The type of the assertion which call this method.assertion - The assertion which call this method.info - Writable information about an assertion.valuesList - The list of values.this assertion object.AssertionError - If at least one of the values of the column are null.Copyright © 2015 AssertJ. All Rights Reserved.