From aedc34d55462a75e329bbf342251ff6504cd117e Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Sun, 19 May 2024 17:56:33 -0400 Subject: Initial import from SVN --- .../src/test/java/net/wotonomy/foundation/AllTests.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java (limited to 'projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java') diff --git a/projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java b/projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java new file mode 100644 index 0000000..920b0a7 --- /dev/null +++ b/projects/net.wotonomy.foundation/src/test/java/net/wotonomy/foundation/AllTests.java @@ -0,0 +1,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; + } + +} -- cgit v1.2.3