我正在使用Play框架激活器,我的测试主要是在memoory数据库(EBean ORM)中运行假应用程序。
测试失败一次到约5次,附加错误,无法解释原因和具体测试名称。 有谁熟悉这个问题?
测试用例失败:
public class ApplicationTest {
@Test
public void renderTemplate() {
Content html = views.html.index.render("Your new application is ready.");
assertEquals("text/html", contentType(html));
assertTrue(contentAsString(html).contains("Your new application is ready."));
}
}