summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java
blob: 920b0a7bc4b1ba42ed90be3d48995d9481223706 (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;
	}

}