public final class TableSubject extends Subject<TableSubject,com.google.common.collect.Table<?,?,?>>
Table
subjects.failureStrategy
Modifier and Type | Method and Description |
---|---|
void |
contains(Object rowKey,
Object columnKey)
Fails if the table does not contain a mapping for the given row key and column key.
|
void |
containsCell(Object rowKey,
Object colKey,
Object value)
Fails if the table does not contain the given cell.
|
void |
containsCell(com.google.common.collect.Table.Cell<?,?,?> cell)
Fails if the table does not contain the given cell.
|
void |
containsColumn(Object columnKey)
Fails if the table does not contain the given column key.
|
void |
containsRow(Object rowKey)
Fails if the table does not contain the given row key.
|
void |
containsValue(Object value)
Fails if the table does not contain the given value.
|
void |
doesNotContain(Object rowKey,
Object columnKey)
Fails if the table contains a mapping for the given row key and column key.
|
void |
doesNotContainCell(Object rowKey,
Object colKey,
Object value)
Fails if the table contains the given cell.
|
void |
doesNotContainCell(com.google.common.collect.Table.Cell<?,?,?> cell)
Fails if the table contains the given cell.
|
void |
hasSize(int expectedSize)
Fails if the table does not have the given size.
|
void |
isEmpty()
Fails if the table is not empty.
|
void |
isNotEmpty()
Fails if the table is empty.
|
actual, actualAsString, actualCustomStringRepresentation, check, equals, fail, fail, fail, failComparing, failComparing, failWithBadResults, failWithCustomSubject, failWithoutActual, failWithoutSubject, failWithRawMessage, failWithRawMessageAndCause, getDisplaySubject, getSubject, hashCode, ignoreCheck, internalCustomName, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameAs, isNull, isSameAs, named
public void isEmpty()
public void isNotEmpty()
public final void hasSize(int expectedSize)
public void contains(@Nullable Object rowKey, @Nullable Object columnKey)
public void doesNotContain(@Nullable Object rowKey, @Nullable Object columnKey)
public void containsCell(@Nullable Object rowKey, @Nullable Object colKey, @Nullable Object value)
public void containsCell(com.google.common.collect.Table.Cell<?,?,?> cell)
public void doesNotContainCell(@Nullable Object rowKey, @Nullable Object colKey, @Nullable Object value)
public void doesNotContainCell(com.google.common.collect.Table.Cell<?,?,?> cell)
public void containsRow(@Nullable Object rowKey)
public void containsColumn(@Nullable Object columnKey)
Copyright © 2017. All rights reserved.