We've got some integration tests in our solution. To run these tests, simulation software must be installed on the developer pc. This software is however not installed on every developer pc. If the simulation software is not installed these tests should be skipped otherwise ==> NullRefException.
I'm now seeking for a way to do a "conditional ignore" for tests/testfixtures. Something like
if(simulationFilesExist) do testfixture else skip testfixture
NUnit give some useful things like ignore and explicit but that not quiet what I need.
Thanks