See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
-
+
package org.apache.poi.hssf.util;
import junit.framework.Test;
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;
}
}
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);