使用TestsFailedException

时间:2015-10-17 16:10:50

标签: unit-testing playframework playframework-2.0

我正在使用Play框架激活器,我的测试主要是在memoory数据库(EBean ORM)中运行假应用程序。

测试失败一次到约5次,附加错误,无法解释原因和具体测试名称。 有谁熟悉这个问题?

enter image description here

enter image description here

测试用例失败:

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."));
    }
}

0 个答案:

没有答案