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
ATestSuiteis a composite test, that is, a test made of multiple childrenTestcases. Running aTestSuitewill 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 voidaddTest(Test test)Adds aTestto the suiteintgetChildrenCount()Returns the number of child testsTest[]getChildrenTests()Returns this suite'sTest.voidremoveTest(Test test)Removes aTestfrom the suite
-
-
-
Method Detail
-
addTest
void addTest(Test test)
Adds aTestto the suite
-
removeTest
void removeTest(Test test)
Removes aTestfrom 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
-
-