QTestLib:未记录的命令行参数 -chart
在 Qt 4.6 中,QTestLib 支持命令行参数“-chart”(但这没有记录)。
创建了一个report.html,但是Firefox 3.6 和IE8 都无法显示除标题“Test”之外的任何内容。当我查看 html 文件时,它有一些 JavaScript 内容和测试结果,因此应该有一些内容可以显示。
由于 -chart 没有记录,我不确定我是否以正确的方式使用它。
有什么提示吗?
谢谢。
In Qt 4.6 QTestLib supports the command-line argument "-chart" (but this is undocumented).
A report.html is created, however neither Firefox 3.6 nor IE8 are able to display anything but the headline "Test". When I look into the html-file it has some JavaScript stuff and test results, so there should be something to display.
As -chart is undocumented, I'm not sure I use it the correct way.
Any hints?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将其与
-xml
选项结合使用。我怀疑 Javascript 会读取 XML 文件来生成图表,但不确定。另外,它可能与此 Qt 实验室博客文章有关: http://labs.trolltech.com/blogs/2008/12/05/qtestlib-now-with-nice-graphs-pointing-upwards
Try using it in combination with the
-xml
option. I suspect the Javascript reads in an XML file to generate the chart, not sure though.Also, it might have something to do with this Qt labs blog post: http://labs.trolltech.com/blogs/2008/12/05/qtestlib-now-with-nice-graphs-pointing-upwards
使用文本编辑器查看生成的 HTML 文件怎么样?
除此之外,阅读 QTest 的源代码可能会有所帮助。
我认为这是一些半完整的实验功能。
How about looking into the produced HTML file with a text editor?
Other than that, reading the source code of QTest might help.
I assume it's some semi complete experimental feature.