How can I pass in specific parameters to mstest in Visual Studio
- by Eric Langland
I'm trying to modify my test projuect to allow for remote invocation of an api we're building. Right now the tests are hard coded to run locally(against localhost), but I would like to be able to point the tests at any endpoint (even remote ones in production).
Ideally there would be a place in the .testsettings for config values to be stored. Sadly this isn't the case.
Or, being able to pass parameters to MSTest that the test would read...?
Any ideas? Thanks in advance.