onlyinitdatatest.java
来自「hibernate in action 源码 caveatemptor-0.9.」· Java 代码 · 共 35 行
JAVA
35 行
package org.hibernate.auction.test;
import junit.framework.*;
import junit.textui.TestRunner;
public class OnlyInitDataTest extends TestCaseWithData {
// ********************************************************** //
public void testImportData() throws Exception {
initData();
}
// ********************************************************** //
protected void tearDown() throws Exception {
// Don't drop schema in tearDown()...
}
// ********************************************************** //
public OnlyInitDataTest(String x) {
super(x);
}
public static Test suite() {
return new TestSuite(OnlyInitDataTest.class);
}
public static void main(String[] args) throws Exception {
TestRunner.run( suite() );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?