public class AssertionsOnValuesNullity extends Object
AssertOnColumnNullity,
AssertOnRowNullity| Modifier and Type | Method and Description |
|---|---|
static <A extends AbstractAssert<?>> |
hasOnlyNotNullValues(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
List<Value> 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<Value> 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<Value> 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<Value> 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–2017 AssertJ. All rights reserved.