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 actual Table contains the mapping of row/column to value.
|
TableAssert<R,C,V> |
TableAssert.containsColumns(C... columns) |
Verifies that the actual Table contains the given columns.
|
TableAssert<R,C,V> |
TableAssert.containsRows(R... rows) |
Verifies that the actual Table contains the given rows.
|
TableAssert<R,C,V> |
TableAssert.containsValues(V... values) |
Verifies that the actual Table contains the given values for any key.
|
TableAssert<R,C,V> |
TableAssert.hasColumnCount(int expectedSize) |
Verifies that the actual Table has the expected number of columns.
|
TableAssert<R,C,V> |
TableAssert.hasRowCount(int expectedSize) |
Verifies that the actual Table has the expected number of rows.
|
TableAssert<R,C,V> |
TableAssert.hasSize(int expectedSize) |
Verifies that the actual Table has the expected number of cells.
|
TableAssert<R,C,V> |
TableAssert.isNotEmpty() |
Verifies that the actual Table is not empty.
|