Uses of Class
org.assertj.guava.api.TableAssert
-
Packages that use TableAssert Package Description org.assertj.guava.api -
-
Uses of TableAssert in org.assertj.guava.api
Fields in org.assertj.guava.api with type parameters of type TableAssert Modifier and Type Field Description static org.assertj.core.api.InstanceOfAssertFactory<com.google.common.collect.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 TableAssert Modifier and Type Method Description static <R,C,V>
TableAssert<R,C,V>Assertions. assertThat(com.google.common.collect.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.Methods in org.assertj.guava.api that return types with arguments of type TableAssert Modifier and Type Method Description static <R,C,V>
org.assertj.core.api.InstanceOfAssertFactory<com.google.common.collect.Table,TableAssert<R,C,V>>InstanceOfAssertFactories. table(Class<R> rowKeyType, Class<C> columnKeyType, Class<V> valueType)
InstanceOfAssertFactory
for aTable
.
-