java.lang.Object | ||
↳ | com.atlassian.jira.functest.framework.AbstractFuncTestUtil | |
↳ | com.atlassian.jira.functest.framework.assertions.TableAssertions |
Used to make assertions about web Tables.
[Expand]
Inherited Fields | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Asserts that the particular table cell contains the text specified.
| |||||||||||
This method asserts that the given table contains AT LEAST ONE copy of the given row.
| |||||||||||
Asserts that the given table contains the expected number of copies of the given row.
| |||||||||||
This method asserts that the given table contains EXACTLY ONE copy of the given row.
| |||||||||||
This method asserts that the given table contains EXACTLY ONE copy of the given row.
| |||||||||||
Assert that the specified row of the table is equal to the expectedRow.
| |||||||||||
Assert that the specified row of the table is equal to the expectedRow with whitespace collapsed.
| |||||||||||
Gets a WebTable by summury or ID.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]()
| |||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||
![]() |
Asserts that the particular table cell contains the text specified.
webTable | the web table |
---|---|
row | the row index (zero-based) |
column | the column index (zero-based) |
text | the text to find |
This method asserts that the given table contains AT LEAST ONE copy of the given row.
For a more strict test, use assertTableContainsRowOnce(com.meterware.httpunit.WebTable, Object[])
.
webTable | The webTable under tests |
---|---|
expectedRow | the row we expect to find. |
Asserts that the given table contains the expected number of copies of the given row.
webTable | The webTable under tests |
---|---|
expectedRow | the row we expect to find exactly one copy of. |
expectedCount | The number of copies of this row we expect to find. |
This method asserts that the given table contains EXACTLY ONE copy of the given row.
webTable | The webTable under tests |
---|---|
expectedRow | the row we expect to find exactly one copy of. |
This method asserts that the given table contains EXACTLY ONE copy of the given row.
webTable | The webTable under tests |
---|---|
expectedRow | the row we expect to find exactly one copy of. |
exactCellSearching | set to true if cell contents should match exactly (equals); false for fuzzily (contains) |
Assert that the specified row of the table is equal to the expectedRow. Equality for individual cells is determined by com.atlassian.jira.functest.framework.assertions.TableAssertions.StrictWhitespaceContainsChecker
table | table to look up the row |
---|---|
row | the row number of the table to compare |
expectedRow | the expected row to match |
Assert that the specified row of the table is equal to the expectedRow with whitespace collapsed. Equality for individual cells is determined by EqualsChecker.
table | table to look up the row |
---|---|
row | the row number of the table to compare |
expectedRow | the expected row to match with whitespace collapsed. |
Gets a WebTable by summury or ID.
tableSummaryOrId | Table ID (or summary - whatever that is) |
---|