Uses of Class
com.sun.javatest.TestFinder

Packages that use TestFinder
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. 
 

Uses of TestFinder in com.sun.javatest
 

Methods in com.sun.javatest that return TestFinder
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 TestFinderQueue.getTestFinder()
          Get the test finder being used by this object.
 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.
 

Methods in com.sun.javatest with parameters of type TestFinder
 void 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 TestFinder
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.
 

Uses of TestFinder in com.sun.javatest.finder
 

Subclasses of TestFinder in com.sun.javatest.finder
 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 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.
 

Constructors in com.sun.javatest.finder with parameters of type TestFinder
ReverseTestFinder(TestFinder delegate)
          Constructor to create ReverseTestFinder object when the original TestFinder instance is already created and initialized.
 



Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.