目前,我正在尝试在静态上下文中获取从 BaseTest 继承的任何底层类的类名。因此,为了解释,我正在编写一个使用@BeforeClassjunit 的基类。这里的问题是我在类的所有测试之前启动了一个假应用程序,它拥有自己的内存 h2 数据库。我想将数据库命名为测试类,以便稍后可以查看每次测试写入数据库的内容。
基础测试:
public abstract class BaseTest {
private static final Map<String, String> testConfig = getTestConfig();
private static FakeApplication fakeApplication;
@BeforeClass
public static void onlyOnce(){
fakeApplication = Helpers.fakeApplication(testConfig);
Helpers.start(fakeApplication);
}
@AfterClass
public static void afterClass(){
Helpers.stop(fakeApplication);
fakeApplication = null;
}
private static Map<String, String> getTestConfig() {
//Here should bee FooTest in this case! But actually it's BaseTest
String className = MethodHandles.lookup().lookupClass().getSimpleName();
...
configs.put("db.default.url", "jdbc:h2:file:./data/tests/" + className + ";AUTO_SERVER=TRUE;MODE=Oracle;DB_CLOSE_ON_EXIT=FALSE");
}
例如一些儿童测试:
public class FooTest extends BaseTest{
@Test
public void testFoo(){
}
}
我已经尝试了几件事,据我所知这是不可能的。但我只需要问是否有什么我还不知道的。
元芳怎么了
相关分类