Uses of Class
org.assertj.guava.api.TableAssert
Packages that use TableAssert
-
Uses of TableAssert in org.assertj.guava.api
Fields in org.assertj.guava.api with type parameters of type TableAssertModifier and TypeFieldDescriptionstatic final InstanceOfAssertFactory
<Table, TableAssert<Object, Object, Object>> InstanceOfAssertFactories.TABLE
InstanceOfAssertFactory
for aTable
, assumingObject
as row key type, column key type and value type.Methods in org.assertj.guava.api that return TableAssertModifier and TypeMethodDescriptionstatic <R,
C, V> TableAssert <R, C, V> Assertions.assertThat
(Table<R, C, V> actual) TableAssert
<R, C, V> TableAssert.containsCell
(R row, C column, V expectedValue) Verifies that the actualTable
contains the mapping of row/column to value.TableAssert
<R, C, V> TableAssert.containsColumns
(C... columns) Verifies that the actualTable
contains the given columns.TableAssert
<R, C, V> TableAssert.containsRows
(R... rows) Verifies that the actualTable
contains the given rows.TableAssert
<R, C, V> TableAssert.containsValues
(V... values) Verifies that the actualTable
contains the given values for any key.TableAssert
<R, C, V> TableAssert.hasColumnCount
(int expectedSize) Verifies that the actualTable
has the expected number of columns.TableAssert
<R, C, V> TableAssert.hasRowCount
(int expectedSize) Verifies that the actualTable
has the expected number of rows.TableAssert
<R, C, V> TableAssert.hasSize
(int expectedSize) Verifies that the actualTable
has the expected number of cells.TableAssert
<R, C, V> TableAssert.isNotEmpty()
Verifies that the actualTable
is not empty.Methods in org.assertj.guava.api that return types with arguments of type TableAssertModifier and TypeMethodDescriptionstatic <R,
C, V> InstanceOfAssertFactory <Table, TableAssert<R, C, V>> InstanceOfAssertFactory
for aTable
.