T
- The "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.public interface AssertOnRowNullity<T extends AssertOnRowNullity<T>>
Modifier and Type | Method and Description |
---|---|
T |
hasOnlyNotNullValues()
Verifies that all the values of the row are not
null . |
T hasOnlyNotNullValues()
null
.
Example where the assertion verifies that all the values in the first Row
of the Table
are not
null
:
assertThat(table).row().hasOnlyNotNullValues();
this
assertion object.AssertionError
- If at least one of the values of the row is null
.AbstractRowAssert.hasOnlyNotNullValues()
Copyright © 2020 AssertJ. All rights reserved.