在 Windows 中查看 LCOV 文件
背景:我使用了 JsTestDriverCoverage 并为我的 Javascript 单元测试生成了测试覆盖率报告。但它是 LCOV 格式。作为运行 Windows 2003 的 Windows 用户,我不能只读取该文件,因为它对 perl/lunix 友好。
问题:有什么方法可以将文件转换为更可读的格式(使用命令行),或使用其他应用程序读取文件?
谢谢。
Background: I have used JsTestDriverCoverage and generated a test coverage report for my Javascript unit tests. However it is in LCOV format. As a Windows user running on Windows 2003, I can't just read the file since its perl/lunix friendly.
Question: are there any ways to either convert the file to a more readable format (using command line), or using other applications to read the file?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 genhtml 将其转换为一组 HTML 文件。
http://ltp.sourceforge.net/coverage/lcov/genhtml.1。 php
Use genhtml to convert it to a set of HTML files.
http://ltp.sourceforge.net/coverage/lcov/genhtml.1.php
这里有一个适用于 Windows 的 genhtml 端口:http://code.google.com/p/jgenhtml/< /a>.
它是专门为跨平台运行而设计的 - 路径中的反斜杠等没有问题。
There is a genhtml port for windows here: http://code.google.com/p/jgenhtml/.
It's specifically designed to run cross platform - no problems with backslashes in the paths etc.