如何配置SpecFlow,使其不会将时序信息显示为测试文本的一部分,例如
- >完成:Steps.ThenIWillBeDeniedAccess()(0.0s)
干杯。 雅各
答案 0 :(得分:5)
原来我需要把它放在app.config
文件中:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/>
</configSections>
<specFlow>
<language feature="en-GB" />
<unitTestProvider name="nUnit" />
<trace traceSuccessfulSteps="false" traceTimings="false" />
</specFlow>
</configuration>
此处的密钥设置为traceSuccessfulSteps
,将其设置为false
即可。