* Adding an example implementation of TestSuite
This commit is contained in:
parent
b3e4e41610
commit
2ccb302d11
|
@ -0,0 +1,21 @@
|
|||
package test.functional;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestSuite;
|
||||
|
||||
public class FunctionalTestSuite {
|
||||
|
||||
public static Test suite() {
|
||||
TestSuite suite = new TestSuite("Test for test.functional");
|
||||
//$JUnit-BEGIN$
|
||||
suite.addTestSuite(TrifonTest.class);
|
||||
suite.addTestSuite(MBPartnerTest.class);
|
||||
suite.addTestSuite(MBPartnerLocationTest.class);
|
||||
suite.addTestSuite(MUserTest.class);
|
||||
suite.addTestSuite(MBPGroupTest.class);
|
||||
suite.addTestSuite(MLocationTest.class);
|
||||
//$JUnit-END$
|
||||
return suite;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue