Fitnesse Command Line Adaptation

Does anyone / "stumbled" on a "fit" to assemble strings? I need to run executables and then run my test suites, and it would be useful if someone had such a device lying around.

Basically, I am trying to do the following:

|CommandlineFixture|
|C:\dev\myFileImporter.exe -f c:\dev\data\file.txt|
+3
source share
1 answer

If you use Fit, you can try Bob Martin 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 interesting features, such as the ability to search for stderr / stdout for specific messages, wait for forked processes to complete, etc.

Java, , ( , , ).

+1

All Articles