对于我的项目,想要增加testTimeout。
在运行我的测试时,30分钟后我的测试会自动停止。如何增加测试时间。
<?xml version="1.0" encoding="utf-8" ?>
<RunSettings>
<RunConfiguration>
<!-- Path relative to solution directory -->
<ResultsDirectory>.\TestRunSummary</ResultsDirectory>
</RunConfiguration>
<MSTest>
<DeleteDeploymentDirectoryAfterTestRunIsComplete>false</DeleteDeploymentDirectoryAfterTestRunIsComplete>
</MSTest>
<Execution>
<Timeouts runTimeout="72000"/>
</Execution>
</RunSettings>
我是否需要在TestRun.runsettings上更改任何内容