Author: oglueck
Date: Thu Aug 10 02:06:19 2006
New Revision: 430326

URL: http://svn.apache.org/viewvc?rev=430326&view=rev
Log:
added test suites

Added:
    jakarta/commons/sandbox/csv/trunk/src/test/AllTests.java
    
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/AllTests.java
    
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/writer/AllTests.java

Added: jakarta/commons/sandbox/csv/trunk/src/test/AllTests.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/test/AllTests.java?rev=430326&view=auto
==============================================================================
--- jakarta/commons/sandbox/csv/trunk/src/test/AllTests.java (added)
+++ jakarta/commons/sandbox/csv/trunk/src/test/AllTests.java Thu Aug 10 
02:06:19 2006
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class AllTests {
+
+    public static Test suite() {
+        TestSuite suite = new TestSuite("Test for default package");
+        //$JUnit-BEGIN$
+        suite.addTest(org.apache.commons.csv.AllTests.suite());
+        suite.addTest(org.apache.commons.csv.writer.AllTests.suite());
+        //$JUnit-END$
+        return suite;
+    }
+
+}

Added: 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/AllTests.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/AllTests.java?rev=430326&view=auto
==============================================================================
--- 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/AllTests.java 
(added)
+++ 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/AllTests.java 
Thu Aug 10 02:06:19 2006
@@ -0,0 +1,35 @@
+/*
+ * Copyright 2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.csv;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class AllTests {
+
+    public static Test suite() {
+        TestSuite suite = new TestSuite("Test for org.apache.commons.csv");
+        //$JUnit-BEGIN$
+        suite.addTest(ExtendedBufferedReaderTest.suite());
+        suite.addTest(CSVPrinterTest.suite());
+        suite.addTest(CSVParserTest.suite());
+        suite.addTest(CSVStrategyTest.suite());
+        suite.addTestSuite(CSVUtilsTest.class);
+        //$JUnit-END$
+        return suite;
+    }
+
+}

Added: 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/writer/AllTests.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/writer/AllTests.java?rev=430326&view=auto
==============================================================================
--- 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/writer/AllTests.java
 (added)
+++ 
jakarta/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/writer/AllTests.java
 Thu Aug 10 02:06:19 2006
@@ -0,0 +1,19 @@
+package org.apache.commons.csv.writer;
+
+import junit.framework.Test;
+import junit.framework.TestSuite;
+
+public class AllTests {
+
+    public static Test suite() {
+        TestSuite suite = new TestSuite("Test for 
org.apache.commons.csv.writer");
+        //$JUnit-BEGIN$
+        suite.addTestSuite(CSVConfigGuesserTest.class);
+        suite.addTestSuite(CSVConfigTest.class);
+        suite.addTestSuite(CSVFieldTest.class);
+        suite.addTestSuite(CSVWriterTest.class);
+        //$JUnit-END$
+        return suite;
+    }
+
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to