fix junit4

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1744821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2016-05-21 04:06:49 +00:00
parent e58f6f3fb0
commit 3d60c67151

View File

@ -18,21 +18,18 @@
package org.apache.poi.ss.formula;
import org.apache.poi.ss.formula.eval.forked.TestForkedEvaluator;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Test suite for org.apache.poi.ss.formula
*
* @author Josh Micich
*/
public final class AllSSFormulaTests {
public static Test suite() {
TestSuite result = new TestSuite(AllSSFormulaTests.class.getName());
result.addTestSuite(TestCellCacheEntry.class);
result.addTestSuite(TestEvaluationCache.class);
// result.addTestSuite(TestWorkbookEvaluator.class); // upgraded to junit4
result.addTestSuite(TestForkedEvaluator.class);
return result;
}
@RunWith(Suite.class)
@Suite.SuiteClasses({
TestCellCacheEntry.class,
TestEvaluationCache.class,
TestWorkbookEvaluator.class,
TestForkedEvaluator.class
})
public class AllSSFormulaTests {
}