gcovr生成html,指定标题为test
时间: 2024-03-02 11:50:31 浏览: 49
test.html
如果你想要在生成的 HTML 报告中指定标题为 "test",你可以使用 `--html-title` 参数,如下所示:
```
gcovr -r . --html-details -o coverage.html --html-title "test"
```
这个命令与之前的命令类似,只是添加了 `--html-title` 参数,并将其值设置为 "test"。这将在生成的 HTML 报告中设置标题为 "test"。
阅读全文