Commit in ExampleMavenProject/test on MAIN
ExampleMavenProjectTest.java+29added 1.1
Adding single test case to example Maven project.

ExampleMavenProject/test
ExampleMavenProjectTest.java added at 1.1
diff -N ExampleMavenProjectTest.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ExampleMavenProjectTest.java	10 Oct 2005 22:03:43 -0000	1.1
@@ -0,0 +1,29 @@
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+
+/**
+ *
+ * @author jeremym
+ */
+public class ExampleMavenProjectTest extends TestCase
+{
+    public ExampleMavenProjectTest(String testName)
+    {
+        super(testName);
+    }
+    
+    protected void setUp() throws Exception             
+    {}
+    
+    public static Test suite()
+    {
+        return new TestSuite(ExampleMavenProjectTest.class);
+    }
+    
+    public static void testDummy()
+    {
+        String[] args = {"this","test","does","nothing"};
+        ExampleMavenProject.main(args);
+    }
+}
\ No newline at end of file
CVSspam 0.2.8