Run Automated test cases with Mstest.exe
I am trying to r开发者_如何学编程un my automated test cases which are developed for WPF UI testing. When I run test case from Visual Studio, it works and when I run it thru Mstest.exe, it does not work.
I am using following command line
Mstest.exe /testcontainer:dllname /test:AddData
Any help would be great help. Thanks
Try specifying the config file
"%VS100COMNTOOLS%\..\IDE\MSTest.exe" /runconfig:Local.testsettings /testcontainer:Tests\bin\Release\MyDll.dll
精彩评论