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.TABLEInstanceOfAssertFactoryfor aTable, assumingObjectas 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 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 TableAssertModifier and TypeMethodDescriptionstatic <R,C, V> InstanceOfAssertFactory<Table, TableAssert<R, C, V>> InstanceOfAssertFactoryfor aTable.