Uses of Interface
org.apache.batik.test.Test
-
Packages that use Test Package Description org.apache.batik.test org.apache.batik.test.xml -
-
Uses of Test in org.apache.batik.test
Subinterfaces of Test in org.apache.batik.test Modifier and Type Interface Description interface
TestSuite
ATestSuite
is a composite test, that is, a test made of multiple childrenTest
cases.Classes in org.apache.batik.test that implement Test Modifier and Type Class Description class
AbstractTest
Base class containing convenience methods for writing tests.class
AbstractTestSuite
This class provides an implementation for theaddTest
method and a protected member to store the childrenTest
instances.class
DefaultTestSuite
Default implementation of theTestSuite
interface.class
OnePerformanceTest
class
ParametrizedTest
This test validates that test properties are inherited from the class that defines the "class" attribute down to each test instance that uses the same class.class
PerformanceTest
This abstractTest
implementation instruments performance testing.class
PerformanceTestValidator
Validates the operation of thePerformanceTest
class.(package private) static class
PerformanceTestValidator.SimplePerformanceTest
class
TestReportValidator
ThisTest
implementation can be used to validate the operation of a specific test.Fields in org.apache.batik.test declared as Test Modifier and Type Field Description protected Test
DefaultTestReport. test
private Test
TestReportValidator. test
Test that this validator checksMethods in org.apache.batik.test that return Test Modifier and Type Method Description Test
TestFilter. filter(Test t)
The filter will return null or the inputTest
.Test[]
DefaultTestSuite. getChildrenTests()
Test[]
TestSuite. getChildrenTests()
Returns this suite'sTest
.Test
DefaultTestReport. getTest()
Test
DefaultTestSuiteReport. getTest()
Test
TestReport. getTest()
Returns theTest
object that generated thisTestReport
Methods in org.apache.batik.test with parameters of type Test Modifier and Type Method Description void
AbstractTestSuite. addTest(Test test)
Adds aTest
to the suitevoid
DefaultTestSuite. addTest(Test test)
Adds aTest
to the suitevoid
TestSuite. addTest(Test test)
Adds aTest
to the suiteTest
TestFilter. filter(Test t)
The filter will return null or the inputTest
.TestReport
AssertException. getTestReport(Test test)
TestErrorConditionException
implementation.TestReport
TestErrorConditionException. getTestReport(Test test)
Requests a report which describes the exception.void
DefaultTestSuite. removeTest(Test test)
Removes aTest
from the suite.void
TestSuite. removeTest(Test test)
Removes aTest
from the suiteprotected void
TestReportValidator. setConfig(Test test, boolean expectedStatus, java.lang.String expectedErrorCode)
Lets derived classes set the configuration parameters for this test.Constructors in org.apache.batik.test with parameters of type Test Constructor Description DefaultTestReport(Test test)
TestReportValidator(Test test, boolean expectedStatus, java.lang.String expectedErrorCode)
Constructor -
Uses of Test in org.apache.batik.test.xml
Classes in org.apache.batik.test.xml that implement Test Modifier and Type Class Description class
DummyValidTest
Dummy Test which always passes.class
DummyValidTestSuite
Dummy TestSuite which always passes.class
XMLTestSuiteRunnerValidator
Validates the operation of theXMLTestSuireRunner
by checking that it runs the tests specified by the command line parameter and only these tests.(package private) static class
XMLTestSuiteRunnerValidator.XMLTestSuiteRunnerTest
Methods in org.apache.batik.test.xml that return Test Modifier and Type Method Description protected static Test
XMLTestSuiteLoader. buildTest(org.w3c.dom.Element element)
Test
XMLTestSuiteRunner.AcceptAllTestsFilter. filter(Test t)
Test
XMLTestSuiteRunner.IdBasedTestFilter. filter(Test t)
Accept a test if one of the ids is found (i.e., an exact match or a substring) in theTest
's qualified id.Methods in org.apache.batik.test.xml with parameters of type Test Modifier and Type Method Description Test
XMLTestSuiteRunner.AcceptAllTestsFilter. filter(Test t)
Test
XMLTestSuiteRunner.IdBasedTestFilter. filter(Test t)
Accept a test if one of the ids is found (i.e., an exact match or a substring) in theTest
's qualified id.protected TestReport
XMLTestSuiteRunner. runTest(Test test)
-