我为空手道功能文件创建了一个干跑步者,如下所示:
public class DryRunner {
@Test
void testParallel() throws IOException {
Runner.builder().dryRun(true);
}
}
目标文件夹中没有生成 HTML 报告。我可能会错过什么?
调用
parallel(1)
来完成“构建器”并运行测试。像这样的东西:
Runner.path("classpath:").dryRun(true).parallel(1);