0

I would like a non-technical person to fire off a utility and run through the stories without him having to know what an IDE is. Something like what nUnit offers. How can that be done with jBehave?

mjouni
  • 118
  • 10

2 Answers2

0

Create a batch/shell script (windows/*nix) and run the tests using Maven command. You'll maybe have to declare a profile running only acceptance tests:

mvn -P jBehaveTests clean test
Boris Pavlović
  • 63,078
  • 28
  • 122
  • 148
  • Could there be a solution using some GUI tool? Just like how nUnit displays the list of tests and you can pick whichever you want and run it. – mjouni Feb 03 '12 at 17:08
0

I will be using the web runner. This would work perfectly for my use case.

http://jbehave.org/reference/web/stable/using-web-runner.html

mjouni
  • 118
  • 10