| |
|
| java.lang.Object test.org.mandarax.testsupport.TestAll
TestAll | public class TestAll (Code) | | Executable class to run all mandarax test suites together.
To avoid glueing packages together, test suites (class defining
a static method suite() ) are referenced by name.
author: Jens Dietrich version: 3.4 <7 March 05> since: 1.2 |
Method Summary | |
public static String[] | getAllTestSuites() Get an array of all mandarax classes defining
a static suite method. | public static void | main(String[] args) Launch the test suite. | public static TestSuite | suite() Get a test suite. |
getAllTestSuites | public static String[] getAllTestSuites()(Code) | | Get an array of all mandarax classes defining
a static suite method.
an array of class names |
suite | public static TestSuite suite()(Code) | | Get a test suite. This suite is the result of merging
all test suites defined in the classes registered in
getAllTestSuites().
a test suite |
|
|
|