我已經找到了這個答案,並關閉了幾天,所以如果我錯過了答案,我很抱歉。使用命令行尋找測試MStest
我有一個MS測試,我想從命令行運行(最終在詹金斯)。我有MSTest.exe和\ testcontainer設置,但無法獲得我想要運行的實際測試的語法。
我的解決方案IntegrationTest有兩個項目(使用Page模型設計模式),IntegrationTest和測試。 FYI \ testcontainer指向IntegrationTest中的程序集(dll)
我想運行的測試是在Tests/UnitTest1/Login_To_system中。 我曾嘗試:
/test:Tests.UnitTest1.Login_To_system
/test:Tests/UnitTest1/Login_To_system
以及各種與結果組合「無法找到」
沒有爲測試沒有元數據文件 - 使用社區2015年
整條生產線,直到測試的嘗試之一是:
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\mstest.exe" /resultsfile:"C:\public\data\trunk\AutomatedTesting\IntegrationTest\TestResults\Results.trx" /testcontainer:"C:\public\data\trunk\AutomatedTesting\IntegrationTest\IntegrationTest\bin\Debug\IntegrationTest.dll" /test:Tests.UnitTest1.Login_To_system
任何幫助,將不勝感激
。 210