TFS 构建问题:测试输出文件夹中缺少程序集

发布于 2024-08-21 00:52:16 字数 291 浏览 7 评论 0原文

我正在尝试将单元测试用例与新解决方案中的 TFS 构建集成。我在 TFSBuild.proj 中包含了以下配置行,

<ItemGroup>
   <TestContainer Include="$(OutDir)\%2aTest.dll" />
</ItemGroup>

我认为这是正确的配置,因为我只有 1 个测试项目。但是,当我这样做时,测试用例的输出文件夹中缺少一些 dll,因此我的大部分测试用例都失败了。以前有人遇到过这个问题吗?

谢谢!

I am trying to integrate unit test cases with a TFS build in our new solution. I've include the following configuration line in my TFSBuild.proj

<ItemGroup>
   <TestContainer Include="$(OutDir)\%2aTest.dll" />
</ItemGroup>

Which I think is the correct configuration since I only have 1 test project. However, when I do this, some dll is missing in the output folder of the test case, hence failing most of my test case. Has anyone run into this problem before?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

提笔书几行 2024-08-28 00:52:16

引用测试项目中缺少的文件的项目,或者将缺少的文件添加为 .testrunco​​nfig 文件中的部署项。

MSTest 仅将它认为需要的库复制到测试文件夹中。

Either reference the project for the missing file from the test project, or add the missing file as a deployment item in your .testrunconfig file.

MSTest only copies the libraries it thinks it needs to to the test folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文