public final class TableSubject extends Subject<TableSubject,Table<?,?,?>>
Table
subjects.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(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(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, check, equals, fail, fail, fail, failComparing, failComparing, failWithActual, failWithActual, failWithBadResults, failWithCustomSubject, failWithoutActual, failWithoutActual, failWithoutSubject, failWithRawMessage, failWithRawMessageAndCause, getSubject, hashCode, ignoreCheck, internalCustomName, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameAs, isNull, isSameAs, named, toString
public void isEmpty()
public void isNotEmpty()
public final void hasSize(int expectedSize)
public void contains(@NullableDecl Object rowKey, @NullableDecl Object columnKey)
public void doesNotContain(@NullableDecl Object rowKey, @NullableDecl Object columnKey)
public void containsCell(@NullableDecl Object rowKey, @NullableDecl Object colKey, @NullableDecl Object value)
public void containsCell(Table.Cell<?,?,?> cell)
public void doesNotContainCell(@NullableDecl Object rowKey, @NullableDecl Object colKey, @NullableDecl Object value)
public void doesNotContainCell(Table.Cell<?,?,?> cell)
public void containsRow(@NullableDecl Object rowKey)
public void containsColumn(@NullableDecl Object columnKey)
public void containsValue(@NullableDecl Object value)
Copyright © 2018. All rights reserved.