Package | Description |
---|---|
csheets.ext.test |
Provides support for test cases and test case parameters.
|
csheets.ext.test.ui |
Provides specialized JTable components for displaying and providing editing of
test cases and test case parameters.
|
Modifier and Type | Method and Description |
---|---|
TestableCell |
TestExtension.extend(Cell cell)
Makes the given cell testable.
|
TestableCell |
TestCaseParam.getCell()
Returns the Test Case Parameters cells address.
|
TestableCell |
TestCase.getCell() |
Modifier and Type | Method and Description |
---|---|
protected void |
TestableCell.extendTestCases(TestableCell firstPrec,
TestCaseParam param) |
void |
TestableCell.precedentAddedParam(TestableCell cell,
TestCaseParam param)
Invoked when a test case parameter is added to one of the cell's
precedents.
|
void |
TestableCell.precedentRemovedParam(TestableCell cell,
TestCaseParam param)
Invoked when a test case parameter is removed from one of the cell's
precedents.
|
void |
TestableCellListener.testCaseParametersChanged(TestableCell cell)
Invoked when a test case parameter is added to or removed from a cell.
|
void |
TestableCellListener.testCasesChanged(TestableCell cell)
Invoked when a test case is added to or removed from a cell, or when
the validation state of a test case is changed.
|
Constructor and Description |
---|
TestCase(TestableCell cell,
Set<TestCaseParam> params)
Creates a new test case for the given cell in the given spreadsheet.
|
TestCaseParam(TestableCell cell,
Value value,
TestCaseParam.Type type)
Creates the Test Case Parameter.
|
Modifier and Type | Method and Description |
---|---|
TestCaseParam |
TestCaseParamController.setTestCaseParams(TestableCell cell,
String content,
Set<TestCaseParam> unChangedParams)
Sets the active cell's user-specified testcase parameters.
|
void |
TestToolBar.testCaseParametersChanged(TestableCell cell) |
void |
TestCasePanel.testCaseParametersChanged(TestableCell cell) |
void |
TestToolBar.testCasesChanged(TestableCell cell) |
void |
TestCasePanel.testCasesChanged(TestableCell cell)
Updates the table of test cases when they have changed.
|