Package org.apache.batik.test
Interface TestSuite
-
- All Superinterfaces:
Test
- All Known Implementing Classes:
AbstractTestSuite
,DefaultTestSuite
,DummyValidTestSuite
,SelfContainedSVGOnLoadTestValidator
,SVGRenderingAccuracyTestValidator
,XMLTestSuiteRunnerValidator
public interface TestSuite extends Test
ATestSuite
is a composite test, that is, a test made of multiple childrenTest
cases. Running aTestSuite
will simply run the children test cases.- Version:
- $Id: TestSuite.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addTest(Test test)
Adds aTest
to the suiteint
getChildrenCount()
Returns the number of child testsTest[]
getChildrenTests()
Returns this suite'sTest
.void
removeTest(Test test)
Removes aTest
from the suite
-
-
-
Method Detail
-
addTest
void addTest(Test test)
Adds aTest
to the suite
-
removeTest
void removeTest(Test test)
Removes aTest
from the suite
-
getChildrenTests
Test[] getChildrenTests()
Returns this suite'sTest
. This should not return a reference to any internal structure held by theTestSuite
. For example, if an internal array is used, this shoudl return a copy of that array.
-
getChildrenCount
int getChildrenCount()
Returns the number of child tests
-
-