How to run tests in FitNesse / Slim without a head?

We are considering using FitNesse / Slim.

But is there a way to start all written tests without browsing the web and starting each manually?

It is enough for the button to click with the click of a button.

Thus, either launch all the tests from the command line (with the message, of course), or using the button from the web page.

Is this doable?

Thanks in advance

+5
source share
2 answers

There is a very simple way to do this. You can run FitNesse tests from the command line. You do this using the following command line:

java -jar lib/fitnesse.jar -c "FrontPage?suite&format=text" 

FrontPage , . FrontPage FrontPage.MainSuite, .

, . , , . Suite , , , . :

java -jar lib/fitnesse.jar -c "FrontPage?suite&suiteFilter=MustBeGreen&format=text" 

java- ANT.

, 8080, : http://localhost:8080/FitNesse.UserGuide.ControllingFitnesseFromTheCommandLine

+12

All Articles