blob: 7a2e6649b482dcb7737290005853f72b5ff84b3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package net.wotonomy.foundation;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for net.wotonomy.foundation");
// $JUnit-BEGIN$
suite.addTestSuite(NSArrayTest.class);
suite.addTestSuite(NSBundleTest.class);
// $JUnit-END$
return suite;
}
}
|