我正在尝试运行MSTest.exe,似乎没有正确读取testcontainer;我的测试都在Visual Studio中的所有配置环境中成功运行.
原文链接:https://www.f2er.com/windows/365064.html我正在使用的命令是:
"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe" /nologo /usestderr /testSettings:"C:\temp\MyProject\Sources\MyProject\Local.testsettings" /searchpathroot:"C:\temp\MyProject\Binaries" /resultsfileroot:"C:\temp\MyProject\TestResults" /testcontainer:"C:\temp\MyProject\Binaries\MyProject.Services.Server.UnitTests.dll"
testcontainer项目中的项目引用如下所示:
<ItemGroup> <ProjectReference Include="..\..\Services\MyProject.Services.Server\MyProject.Services.Server.csproj"> <Project>{92EC1999-CC0C-47DD-A4D6-17C3B1233C50}</Project> <Name>MyProject.Services.Server</Name> </ProjectReference> <ProjectReference Include="..\..\SvcConfiguration\MyProject.ServiceConfiguration.Interfaces\MyProject.ServiceConfiguration.Interfaces.csproj"> <Project>{8E2E7BA9-75DB-458E-A184-AC1030EAD581}</Project> <Name>MyProject.ServiceConfiguration.Interfaces</Name> </ProjectReference> <ProjectReference Include="..\..\SvcConfiguration\MyProject.ServiceConfiguration.Services\MyProject.ServiceConfiguration.Services.csproj"> <Project>{39514766-23A8-45DB-96EA-B6B4D9C8B086}</Project> <Name>MyProject.ServiceConfiguration.Services</Name> </ProjectReference> </ItemGroup>
ServiceConfiguration.Interfaces和ServiceConfiguration.Services DLL都没有放在TestResults的Out文件夹中.
项目GUID在引用和引用的项目之间匹配.
我在命令行中缺少什么?