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 InstanceOfAssertFactory<com.google.common.collect.Table,TableAssert<java.lang.Object,java.lang.Object,java.lang.Object>>InstanceOfAssertFactories. TABLEInstanceOfAssertFactoryfor aTable, assumingObjectas 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 actualTablecontains the mapping of row/column to value.TableAssert<R,C,V>TableAssert. containsColumns(C... columns)Verifies that the actualTablecontains the given columns.TableAssert<R,C,V>TableAssert. containsRows(R... rows)Verifies that the actualTablecontains the given rows.TableAssert<R,C,V>TableAssert. containsValues(V... values)Verifies that the actualTablecontains the given values for any key.TableAssert<R,C,V>TableAssert. hasColumnCount(int expectedSize)Verifies that the actualTablehas the expected number of columns.TableAssert<R,C,V>TableAssert. hasRowCount(int expectedSize)Verifies that the actualTablehas the expected number of rows.TableAssert<R,C,V>TableAssert. hasSize(int expectedSize)Verifies that the actualTablehas 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>
InstanceOfAssertFactory<com.google.common.collect.Table,TableAssert<R,C,V>>InstanceOfAssertFactories. table(java.lang.Class<R> rowKeyType, java.lang.Class<C> columnKeyType, java.lang.Class<V> valueType)InstanceOfAssertFactoryfor aTable.
-