如何阻止SpecFlow显示计时信息

时间:2010-10-21 08:14:58

标签: specflow

如何配置SpecFlow,使其不会将时序信息显示为测试文本的一部分,例如

  

- >完成:Steps.ThenIWillBeDeniedAccess()(0.0s)

干杯。 雅各

1 个答案:

答案 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即可。