boolean |
AllTestsFilter.accepts(TestDescription td) |
|
boolean |
CompositeFilter.accepts(TestDescription td) |
|
boolean |
CompositeFilter.accepts(TestDescription td,
TestFilter.Observer o) |
|
boolean |
ExcludeListFilter.accepts(TestDescription td) |
|
boolean |
InitialUrlFilter.accepts(TestDescription td) |
|
boolean |
KeywordsFilter.accepts(TestDescription td) |
|
boolean |
LastRunFilter.accepts(TestDescription td) |
|
boolean |
LastRunFilter.accepts(TestDescription td,
TestFilter.Observer o) |
|
boolean |
ParameterFilter.accepts(TestDescription td) |
|
boolean |
ParameterFilter.accepts(TestDescription td,
TestFilter.Observer o) |
|
boolean |
StatusFilter.accepts(TestDescription td) |
|
abstract boolean |
TestFilter.accepts(TestDescription td) |
Determines whether a TestDescription should be accepted or rejected
by this filter.
|
boolean |
TestFilter.accepts(TestDescription td,
TestFilter.Observer o) |
Determines whether a TestDescription should be accepted or rejected
by this filter; if rejected, it is reported to the provided observer.
|
Script |
TestSuite.createScript(TestDescription td,
java.lang.String[] exclTestCases,
TestEnvironment scriptEnv,
WorkDirectory workDir,
BackupPolicy backupPolicy) |
Create and initialize a Script that can be used to run a test.
|
void |
TestFinderQueue.Observer.done(TestDescription td) |
A test description that was previously put in the test finder queue
has been taken from the queue and passed back to the client caller.
|
void |
TestFinderQueue.Observer.error(TestDescription td,
java.lang.String msg) |
An error was reported by the test finder while reading a file.
|
boolean |
ExcludeList.excludesAllOf(TestDescription td) |
Test if a specific test is completely excluded according to the table.
|
boolean |
ExcludeList.excludesAnyOf(TestDescription td) |
Test if a specific test is partially or completely excluded according to the table.
|
void |
TestFinderQueue.Observer.found(TestDescription td) |
A test description has been found.
|
protected void |
TestFinder.foundTestDescription(TestDescription td) |
Report that a test description has been found.
|
TestResult |
TestResultTable.getCachedResult(TestDescription td) |
This method returns TestResult from map of test results, collected by
TestResultCache worker.
|
java.net.URL[] |
TestSuite.getDocsForTest(TestDescription td) |
This method should be overridden in subclasses
|
java.lang.String[] |
TestRunner.getExcludedTestCases(TestDescription td) |
Get the names of the test cases to be excluded when running a specific test.
|
java.net.URL[] |
TestSuite.getFilesForTest(TestDescription td) |
Get a list of associated files for a specified test description.
|
java.lang.String[] |
ExcludeList.getTestCases(TestDescription td) |
Get the test cases to be excluded for a test.
|
static java.lang.String |
TestResult.getWorkRelativePath(TestDescription td) |
Get the path name for the results file for a test, relative to the
work directory.
|
void |
TestFinderQueue.Observer.ignored(TestDescription td,
TestFilter f) |
A test description which was previously found, has been rejected by
a test filter, and so has not been put in the queue of tests to be executed.
|
void |
Script.initTestDescription(TestDescription td) |
Initialize the test description to be run by the script.
|
boolean |
KnownFailuresList.listsAllOf(TestDescription td) |
Test if a specific test is completely excluded according to the table.
|
boolean |
KnownFailuresList.listsAnyOf(TestDescription td) |
Test if a specific test is partially or completely excluded according to the table.
|
TestResult |
TestResultTable.lookup(TestDescription td) |
Find a specific instance of a test result.
|
static TestResult |
TestResult.notRun(TestDescription td) |
Create a placeholder TestResult for a test that has not yet been run.
|
void |
TestFilter.Observer.rejected(TestDescription d,
TestFilter rejector) |
Notification methodcalled when a test has been rejected.
|
void |
TestFinderQueue.repeat(TestDescription[] tds) |
Deprecated.
|
abstract Status |
Script.run(java.lang.String[] args,
TestDescription td,
TestEnvironment env) |
The primary method to be provided by Scripts.
|