mirror of https://github.com/apache/poi.git
Hooked up new junit in suite (from bug 45338)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@674937 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e9099a1cbe
commit
24034e5de5
|
@ -14,7 +14,7 @@
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
==================================================================== */
|
==================================================================== */
|
||||||
|
|
||||||
package org.apache.poi.hssf.util;
|
package org.apache.poi.hssf.util;
|
||||||
|
|
||||||
import junit.framework.Test;
|
import junit.framework.Test;
|
||||||
|
@ -28,12 +28,13 @@ import junit.framework.TestSuite;
|
||||||
public class AllHSSFUtilTests {
|
public class AllHSSFUtilTests {
|
||||||
|
|
||||||
public static Test suite() {
|
public static Test suite() {
|
||||||
TestSuite result = new TestSuite("Tests for org.apache.poi.hssf.util");
|
TestSuite result = new TestSuite(AllHSSFUtilTests.class.getName());
|
||||||
result.addTestSuite(TestAreaReference.class);
|
result.addTestSuite(TestAreaReference.class);
|
||||||
result.addTestSuite(TestCellReference.class);
|
result.addTestSuite(TestCellReference.class);
|
||||||
result.addTestSuite(TestRangeAddress.class);
|
result.addTestSuite(TestHSSFColor.class);
|
||||||
result.addTestSuite(TestRKUtil.class);
|
result.addTestSuite(TestRangeAddress.class);
|
||||||
result.addTestSuite(TestSheetReferences.class);
|
result.addTestSuite(TestRKUtil.class);
|
||||||
|
result.addTestSuite(TestSheetReferences.class);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,13 +14,15 @@
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
==================================================================== */
|
==================================================================== */
|
||||||
|
|
||||||
package org.apache.poi.hssf.util;
|
package org.apache.poi.hssf.util;
|
||||||
|
|
||||||
import java.util.Hashtable;
|
import java.util.Hashtable;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
/**
|
||||||
|
* @author Nick Burch
|
||||||
|
*/
|
||||||
public final class TestHSSFColor extends TestCase {
|
public final class TestHSSFColor extends TestCase {
|
||||||
public void testBasics() {
|
public void testBasics() {
|
||||||
assertNotNull(HSSFColor.YELLOW.class);
|
assertNotNull(HSSFColor.YELLOW.class);
|
||||||
|
|
Loading…
Reference in New Issue