一个漂亮的自动测试 GUI
我想知道是否有人知道任何漂亮的自动测试 GUI?
我已经了解所有随自动测试一起分发的插件(growl、knotify 等),我想要的只是更多。
我想要一个能够始终显示失败测试总数的 GUI。 我希望 GUI 允许我点击失败的测试(让他们在 vim 中打开它们) 我想查看每个失败测试旁边的堆栈跟踪。 但我不希望视图太混乱。
I was wondering if anyone knows of any nice GUIs for autotest?
I already know about all the plugins distributed with autotest (growl, knotify etc.), what I want is a little more.
I would like a GUI that displays the total count of failed tests at all times.
I would like the GUI to allow me to click through to the failing test (have them open them in vim)
I would like to see the stack trace next to each failing test. But I don't want the view too cluttered.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它很可能不是您想要的,因为它是一个完整的 IDE,但 Netbeans 拥有一些非常简洁的 Ruby 测试支持:
http://www.netbeans.org/features/ruby/index.html
替代文本 http://wiki.netbeans.org/attach/RubyTesting/ testrunner-1%20.png
您还可以获得测试覆盖率(它也会对您的文件进行颜色编码,以便您可以立即看到哪些行已测试,哪些行未测试):
替代文本 http://blogs.sun.com/tor/resource/ruby-coveragereport.png
There's a good chance it's not what you're looking for since it's an entire IDE, but Netbeans has some really neat Ruby testing support:
http://www.netbeans.org/features/ruby/index.html
alt text http://wiki.netbeans.org/attach/RubyTesting/testrunner-1%20.png
You also get test coverage (it will color code your files as well so you can immediately see what what lines are tested and what aren't):
alt text http://blogs.sun.com/tor/resource/ruby-coveragereport.png
FWIW我在github上启动了一个新项目,旨在解决这个问题。 目前这确实很基础,但对我来说很有效。
这是一张图片
FWIW I started a new project on github which aims to solve this problem. It's really basic at the moment, but it works for me.
Here is a pic