一个漂亮的自动测试 GUI

发布于 2024-07-12 09:29:40 字数 198 浏览 6 评论 0原文

我想知道是否有人知道任何漂亮的自动测试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薄凉少年不暖心 2024-07-19 09:29:41

它很可能不是您想要的,因为它是一个完整的 IDE,但 Netbeans 拥有一些非常简洁的 Ruby 测试支持:
http://www.netbeans.org/features/ruby/index.html

内置测试框架
支持 Ruby、Test::Unit
直接地。 您可以创建新单位
从新菜单进行测试。 你运行你的
只需调用 Run File 即可进行单元测试
(Shift-F6) 在文件上。 这将打开一个测试
结果窗口的输出
执行单元测试和测试
结果统计。 双击
统计面板中的节点占用
您到相应的声明
编辑器中的位置,您可以
导航到下一个/上一个失败
使用箭头按钮。

替代文本 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

The built-in testing framework in
Ruby, Test::Unit, is supported
directly. You can create new unit
tests from the New menu. You run your
unit tests by just invoking Run File
(Shift-F6) on files. This opens a test
results window with the output from
executing the unit tests and test
result statistics. Double-clicking the
nodes in the statistics panel takes
you to the corresponding declaration
location in the editor, and you can
navigate to the next/previous failure
using the arrow buttons.

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

∝单色的世界 2024-07-19 09:29:41

FWIW我在github上启动了一个新项目,旨在解决这个问题。 目前这确实很基础,但对我来说很有效。

这是一张图片

image

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

image

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文