Uses of Class
com.sun.javatest.TestFinder
Packages that use TestFinder
Package
Description
This package provides facilities for reading, executing
and monitoring tests.
Test Finders are used to locate and read test descriptions,
which give details about the tests in a test suite.
-
Uses of TestFinder in com.sun.javatest
Methods in com.sun.javatest that return TestFinderModifier and TypeMethodDescriptionprotected TestFinder
TestSuite.createBinaryTestFinder
(String finderClassName, String[] finderArgs, File testsDir, 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.TestFinderQueue.getTestFinder()
Get the test finder being used by this object.TestResultTable.getTestFinder()
Get the finder that TRT is using to read the test suite.TestSuite.getTestFinder()
Get a shared test finder to read the tests in this test suite.Methods in com.sun.javatest with parameters of type TestFinderModifier and TypeMethodDescriptionvoid
TestFinderQueue.setTestFinder
(TestFinder finder) Set the test finder to be used by this object.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.Constructors in com.sun.javatest with parameters of type TestFinderModifierConstructorDescriptionTestFinderQueue
(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. -
Uses of TestFinder in com.sun.javatest.finder
Subclasses of TestFinder in com.sun.javatest.finderModifier and TypeClassDescriptionclass
A TestFinder to read a compressed binary file containing the previously "compiled" results of some other test finder.class
A TestFinder that delegates to different test finders in different areas of the test suite, as described by a special "map" file.class
This class allows a new tag "@expand" which allows a single test description to be expanded into multiple test descriptions using variable substitution.class
This class searches out test descriptions as represented by certain HTML elements in a hierarchy of HTML files.class
A test finder that reads tests from a delegate, and returns the results in the random order.class
A test finder that reads tests from a delegate, and returns the results in the reverse order.class
This class searches out test descriptions found in a file system tree.class
A test finder decorator that reads tests from a delegate, and returns the results in the reverse/random order.Methods in com.sun.javatest.finder that return TestFinderConstructors in com.sun.javatest.finder with parameters of type TestFinderModifierConstructorDescriptionRandomTestFinder
(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