我是测试新手,需要使用extentreports报告测试结果,
下面是测试代码:
public ExtentReports reports;
public ExtentTest logger;
public ModelTests() {
reports = new ExtentReports("acceptanceTest\\reports\\Report.html");
}
@Test
public void searchModelTest() throws JSONException, URISyntaxException {
JSONObject jsonResponse = searchModel();
logger = reports.startTest("Test");
logger.log(LogStatus.PASS, "Success");
assertEquals("SOLAR SLEEVE 2014", jsonResponse.getString("modelName"));
logger.log(LogStatus.FAIL, "Failure");
reports.endTest(logger);
}
我没有看到任何报告生成。
将 extentreport 与 jersey 框架一起使用,我已经看到了 selenium 示例。
帮助将不胜感激。