Fitnesse 命令行夹具
有没有人有/“遇到过”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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Fit,可以尝试 Bob Martin 的 CommandLineFixture。您可以通过创建一个简单的测试表来使用它,如下所示:
它还有一些很好的功能,例如能够搜索 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:
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).