views:

27

answers:

1

Is it somehow possible to pass values to NUnit tests via command line? My tests use a certain URL. I have different instances of my code at different URLs and would like to specify the URL via command line. App.config is not an option, because I want to run the tests for different URLs via a batch file.

A: 

There seems to be no solution at the moment. Best option is to use NUnit project files, modify settings there and pass the solution file to the runner.

Achim