I'm executing my test-dlls using the vstest.console.exe (the future mstest.exe) as a process in my application. I want to know if there's any possibility to send parameters or datasource from my application to the testmethod.
I've been searching for something like:
vstest.console.exe /Tests:DoSomething parameters.xml
or
vstest.console.exe /Tests:DoSomething /params:3,2,1
It would be even better if I could send these parameters to the constructor of the test class.
Is this possible?