Skip to content

Commit 466a646

Browse files
committed
made this class abstract and removed the dummy test method
1 parent c88294c commit 466a646

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/test/java/org/apache/ibatis/BaseDataTest.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import java.sql.SQLException;
1414
import java.util.Properties;
1515

16-
public class BaseDataTest {
16+
public abstract class BaseDataTest {
1717

1818
public static final String BLOG_PROPERTIES = "databases/blog/blog-derby.properties";
1919
public static final String BLOG_DDL = "databases/blog/blog-derby-schema.sql";
@@ -79,9 +79,4 @@ public static DataSource createJPetstoreDataSource() throws IOException, SQLExce
7979
runScript(ds, JPETSTORE_DATA);
8080
return ds;
8181
}
82-
83-
@Test
84-
public void dummy() {
85-
}
86-
8782
}

0 commit comments

Comments
 (0)