提交 6b9c06de authored 作者: Thomas Mueller's avatar Thomas Mueller

Simplify tests

上级 a06e5b99
...@@ -1005,4 +1005,18 @@ public abstract class TestBase { ...@@ -1005,4 +1005,18 @@ public abstract class TestBase {
assertFalse(rs2.next()); assertFalse(rs2.next());
} }
/**
* Create a new object of the calling class.
*
* @return the new test
*/
public static TestBase createCaller() {
String className = new Exception().getStackTrace()[1].getClassName();
try {
return (TestBase) Class.forName(className).newInstance();
} catch (Exception e) {
throw new RuntimeException("Can not create object " + className, e);
}
}
} }
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论