Fitnesse 命令行夹具

发布于 2024-11-09 07:34:01 字数 203 浏览 0 评论 0原文

有没有人有/“遇到过”Fitnesse Windows 命令行修复程序?我需要运行可执行文件,然后运行我的测试套件,如果有人有这样的固定装置,我将不胜感激。

基本上,我想做的是:

|CommandlineFixture|
|C:\dev\myFileImporter.exe -f c:\dev\data\file.txt|

Does anyone have/"run into" a Fitnesse a Windows commnand line fixutre? I need to run executables then run my test suites and would appreciate if someone has such a fixture laying around.

Basically, what I am trying to do is the following:

|CommandlineFixture|
|C:\dev\myFileImporter.exe -f c:\dev\data\file.txt|

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

成熟的代价 2024-11-16 07:34:01

如果您使用 Fit,可以尝试 Bob Martin 的 CommandLineFixture。您可以通过创建一个简单的测试表来使用它,如下所示:

| com.objectmentor.fixtures.CommandLineFixture                |
| command | C:\dev\myFileImporter.exe -f c:\dev\data\file.txt |

它还有一些很好的功能,例如能够搜索 stderr/stdout 中的某些消息、等待分叉进程完成等。

它是用 Java 编写的,并且提供源代码如果您必须自定义它(当我使用它时,我对其进行了相当大的自定义以添加新功能)。

If you're using Fit, you can try Bob Martin's CommandLineFixture. You can use it by creating a simple test table as follows:

| com.objectmentor.fixtures.CommandLineFixture                |
| command | C:\dev\myFileImporter.exe -f c:\dev\data\file.txt |

It also has some nice functionality like being able to search stderr/stdout for certain messages, wait for forked processes to finish, etc.

It's written in Java, and source code is available in case you have to customize it (when I used this, I customized it fairly heavily to add new functionality).

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