Package | Description |
---|---|
com.sun.javatest |
This package provides facilities for reading, executing
and monitoring tests.
|
com.sun.javatest.finder |
Test Finders are used to locate and read test descriptions,
which give details about the tests in a test suite.
|
Modifier and Type | Method and Description |
---|---|
protected TestFinder |
TestSuite.createBinaryTestFinder(java.lang.String finderClassName,
java.lang.String[] finderArgs,
java.io.File testsDir,
java.io.File jtdFile)
In the case where a JTD file is found, attempt to load a binary test finder.
|
protected TestFinder |
TestSuite.createTestFinder()
Create a test finder to be used to access the tests in this test suite.
|
TestFinder |
TestResultTable.getTestFinder()
Get the finder that TRT is using to read the test suite.
|
TestFinder |
TestSuite.getTestFinder()
Get a shared test finder to read the tests in this test suite.
|
TestFinder |
TestFinderQueue.getTestFinder()
Get the test finder being used by this object.
|
Modifier and Type | Method and Description |
---|---|
void |
TestResultTable.setTestFinder(TestFinder tf)
Set the test finder for this object.
|
protected void |
TestSuite.setTestFinder(TestFinder tf)
Set the shared test finder used to read the tests in this test suite.
|
void |
TestFinderQueue.setTestFinder(TestFinder finder)
Set the test finder to be used by this object.
|
Constructor and Description |
---|
TestFinderQueue(TestFinder finder)
Create a test finder queue, using a specified test finder.
|
TestResultTable(WorkDirectory wd,
TestFinder tf)
Create a table for the tests in a work directory and its
associated test suite, overriding the test suite's default test finder.
|
Modifier and Type | Class and Description |
---|---|
class |
BinaryTestFinder
A TestFinder to read a compressed binary file containing the
previously "compiled" results of some other test finder.
|
class |
ChameleonTestFinder
A TestFinder that delegates to different test finders in different
areas of the test suite, as described by a special "map" file.
|
class |
ExpandTestFinder
This class allows a new tag "@expand" which allows a single test
description to be expanded into multiple test descriptions using
variable substitution.
|
class |
HTMLTestFinder
This class searches out test descriptions as represented by
certain HTML elements in a hierarchy of HTML files.
|
class |
RandomTestFinder
A test finder that reads tests from a delegate, and returns the
results in the random order.
|
class |
ReverseTestFinder
A test finder that reads tests from a delegate, and returns the
results in the reverse order.
|
class |
TagTestFinder
This class searches out test descriptions found in a file system
tree.
|
class |
TestFinderDecorator
A test finder decorator that reads tests from a delegate, and returns the
results in the reverse/random order.
|
Modifier and Type | Method and Description |
---|---|
TestFinder |
TestFinderDecorator.getCurrentTestFinder() |
Constructor and Description |
---|
RandomTestFinder(TestFinder delegate)
Constructor to create RandomTestFinder object when the
original TestFinder instance is already created and initialized.
|
ReverseTestFinder(TestFinder delegate)
Constructor to create ReverseTestFinder object when the
original TestFinder instance is already created and initialized.
|
TestFinderDecorator(TestFinder testFinder)
Default constructor
|
Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.