junit4 fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1700043 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2015-08-29 14:47:16 +00:00
parent 33ffe01bff
commit f2487c035a

View File

@ -17,22 +17,21 @@
package org.apache.poi.ss.util; package org.apache.poi.ss.util;
import junit.framework.Test; import org.junit.runner.RunWith;
import junit.framework.TestSuite; import org.junit.runners.Suite;
/** /**
* Test suite for <tt>org.apache.poi.ss.util</tt> * Test suite for <tt>org.apache.poi.ss.util</tt>
* *
* @author Josh Micich * @author Josh Micich
*/ */
public final class AllSSUtilTests { @RunWith(Suite.class)
public static Test suite() { @Suite.SuiteClasses({
TestSuite result = new TestSuite(AllSSUtilTests.class.getName()); TestCellRangeAddress.class,
result.addTestSuite(TestCellRangeAddress.class); TestCellReference.class,
result.addTestSuite(TestCellReference.class); TestExpandedDouble.class,
result.addTestSuite(TestExpandedDouble.class); TestNumberComparer.class,
result.addTestSuite(TestNumberComparer.class); TestNumberToTextConverter.class,
result.addTestSuite(TestNumberToTextConverter.class); TestRegion.class
result.addTestSuite(TestRegion.class); })
return result; public class AllSSUtilTests {
}
} }