0

我正在尝试第一次使用新项目设置 Klov。我已经安装了正确版本的 mongodb 并拥有 klov jar。在运行测试之前,我都在 cmd 中运行。当我在浏览器中查看我的 Klov 报告时,除了“选择您的项目:”下拉列表中没有列出任何项目之外,一切似乎都正常工作。有人知道我为什么会出现这个错误吗?

public class MyRunner {

private static KlovReporter klov;
private static ExtentReports extent;
private static Date d;
private static ExtentHtmlReporter htmlReporter;

@BeforeClass
public static void initialize(){
    d = new Date();
    extent = new ExtentReports();
    klov = new KlovReporter();
    htmlReporter = new ExtentHtmlReporter("ExtentReport.html");

    htmlReporter.setAppendExisting(true);
    htmlReporter.config().setChartVisibilityOnOpen(true);
    htmlReporter.config().setDocumentTitle("Klov Example");
    htmlReporter.config().setReportName("Test");
    htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP);
    htmlReporter.config().setTheme(Theme.STANDARD);

    klov.initMongoDbConnection("localhost",27017);
    klov.setProjectName("klovexample");
    klov.setReportName("Test" + d.toString());
    klov.setKlovUrl("http://localhost:80");

    extent.attachReporter(htmlReporter, klov);

    extent.createTest("ROF");
}

@AfterClass
public static void teardown(){
    klov.flush();
}
4

1 回答 1

0

利用

extent.flush();

代替

klov.flush();

还要添加一个日志家伙:

extent.createTest("ROF").pass("log");
于 2018-07-23T15:56:35.937 回答