removed temporary test suite

This commit is contained in:
robokaso
2008-04-10 14:19:02 +00:00
parent c7d2a7e8bf
commit 9937a4c703

View File

@@ -1,18 +0,0 @@
package org.springframework.batch.core.repository.dao;
import junit.framework.Test;
import junit.framework.TestSuite;
public class AllTests {
public static Test suite() {
TestSuite suite = new TestSuite("Test for org.springframework.batch.core.repository.dao");
//$JUnit-BEGIN$
suite.addTestSuite(JdbcJobInstanceDaoTests.class);
suite.addTestSuite(JdbcStepExecutionDaoTests.class);
suite.addTestSuite(JdbcJobExecutionDaoTests.class);
//$JUnit-END$
return suite;
}
}