Runs a TestCase
Type Params | Return Type | Name and description |
---|---|---|
|
int |
getResultCount() Return the number of test steps results that have been returned from test steps. |
|
java.util.List<TestStepResult> |
getResults() Gets the accumulated results so far; each TestStep returns a TestStepResult when running. |
|
TestCaseRunContext |
getRunContext() Returns the context used by this runner |
|
TestCase |
getTestCase() Gets the TestCase being run |
|
void |
gotoStep(int index) Transfers execution of this TestRunner to the TestStep with the specified index in the TestCase |
|
void |
gotoStepByName(java.lang.String stepName) Transfers execution of this TestRunner to the TestStep with the specified name in the TestCase |
|
boolean |
isDebugScripts() Returns true if test case is being run with script debugger, false - otherwise @return |
|
TestStepResult |
runTestStepByName(java.lang.String name) Runs the specified TestStep and returns the result |
Return the number of test steps results that have been returned from test steps. Note that some of these results may have been discarded, so this value may differ from the size of the collection returned from getResults()
Gets the accumulated results so far; each TestStep returns a TestStepResult when running.
Returns the context used by this runner
Gets the TestCase being run
Transfers execution of this TestRunner to the TestStep with the specified index in the TestCase
Transfers execution of this TestRunner to the TestStep with the specified name in the TestCase
Returns true if test case is being run with script debugger, false - otherwise
Runs the specified TestStep and returns the result