gpt4 book ai didi

.net - 如何在 VS2013 上使用 runsettings 文件并行执行测试

转载 作者:行者123 更新时间:2023-12-04 08:52:11 26 4
gpt4 key购买 nike

我们已经从 VS2010 迁移到 VS2013 环境。我们的解决方案有超过 5K 个单元测试,在 VS2010 上大约需要 5 分钟,而在 VS2013 上大约需要 20 分钟。

我们看到使用 testsettings 存在问题。文件,因为它将 VS2013 配置为使用以前的测试框架,因此我们将其移至 runsettings文件实际上解决了我们在转换过程中遇到的一些问题。

现在的主要想法是我们找不到如何配置 VS2013 以并行执行测试。在以前的 VS 上,我们有 <Execution parallelTestCount="0"> runsettings 上似乎不可用的设置文件。

总而言之,我们如何使用 runsettings 并行运行测试文件以便我们使用较新的框架?

谢谢。

最佳答案

你用 ?

您可以强制 VS2013 使用 2010-2013 测试设置文件。您可以将 FileName.testsettings 添加到 2013 .runsettings 文件中。

<MSTest>
<CaptureTraceOutput>True</CaptureTraceOutput>
<DeploymentEnabled>false</DeploymentEnabled>
<SettingsFile>FILENAME.testsettings</SettingsFile>
<ForcedLegacyMode>True</ForcedLegacyMode>
</MSTest>

关于.net - 如何在 VS2013 上使用 runsettings 文件并行执行测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24738063/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com