]> source.dussan.org Git - poi.git/commitdiff
Hooked up new junit in suite (from bug 45338)
authorJosh Micich <josh@apache.org>
Tue, 8 Jul 2008 20:19:40 +0000 (20:19 +0000)
committerJosh Micich <josh@apache.org>
Tue, 8 Jul 2008 20:19:40 +0000 (20:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@674937 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/util/AllHSSFUtilTests.java
src/testcases/org/apache/poi/hssf/util/TestHSSFColor.java

index 1f7aa5f2591922828baff1a0eb76d2054fb287b9..ec88e5c439e446670ede789f67c04cc9f1841d53 100755 (executable)
@@ -14,7 +14,7 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 ==================================================================== */
-        
+
 package org.apache.poi.hssf.util;
 
 import junit.framework.Test;
@@ -28,12 +28,13 @@ import junit.framework.TestSuite;
 public class AllHSSFUtilTests {
        
        public static Test suite() {
-               TestSuite result = new TestSuite("Tests for org.apache.poi.hssf.util");
-        result.addTestSuite(TestAreaReference.class);
-        result.addTestSuite(TestCellReference.class);
-        result.addTestSuite(TestRangeAddress.class);
-        result.addTestSuite(TestRKUtil.class);
-        result.addTestSuite(TestSheetReferences.class);
+               TestSuite result = new TestSuite(AllHSSFUtilTests.class.getName());
+               result.addTestSuite(TestAreaReference.class);
+               result.addTestSuite(TestCellReference.class);
+               result.addTestSuite(TestHSSFColor.class);
+               result.addTestSuite(TestRangeAddress.class);
+               result.addTestSuite(TestRKUtil.class);
+               result.addTestSuite(TestSheetReferences.class);
                return result;
        }
 }
index 42571eb3231badf770160230f3084ad64fd4de5e..d93f5d7b08f925557c876dd0cb92ef9fdeed7eec 100644 (file)
    See the License for the specific language governing permissions and
    limitations under the License.
 ==================================================================== */
-        
+
 package org.apache.poi.hssf.util;
 
 import java.util.Hashtable;
 
 import junit.framework.TestCase;
-
+/**
+ * @author Nick Burch
+ */
 public final class TestHSSFColor extends TestCase {
        public void testBasics() {
                assertNotNull(HSSFColor.YELLOW.class);