I have a Fitnesse.NET acceptance test suite that I want to run as part of my TFS/MSBuild CI build.
The suite contains some Fitnesse variables that I need to override when calling from the build process, eg:
!define ConnectionString {Data Source=...}
How can I override the variable values defined in the suite when calling the suite from the command line test runner?
I'd like to be able to do something like:
Tests\TestRunner.exe -v -results test.results localhost 8082 MyTestSuite -P:ConnectionString={MyBuildServerDB}
Any ideas?