使用外部组件时,SpecFlow步骤绑定非常松散

时间:2018-04-13 15:52:32

标签: visual-studio-2015 specflow

正如标题所说,我在外部程序集中有步骤绑定。我使用以下方法将它们带入了项目:

  <specFlow>
    <unitTestProvider name="xUnit" />
    <plugins>
      <add name="SpecFlow.xUnitAdapter" type="Runtime" />
    </plugins>
    <stepAssemblies>
      <stepAssembly assembly="MyOtherProject.StepBindings" />
    </stepAssemblies>
  </specFlow>

.feature文件运行且测试通过时,所有步骤都在Visual Studio编辑器中显示为未绑定(紫色),点击F12会提供包含建议代码的对话框。

我需要做些什么来获得绑定的步骤亮点?

这篇文章没有帮助:Specflow Binding from External Assembly always purple

我已将%TEMP%\VisualStudioTestExplorerExtensions清除无效。

1 个答案:

答案 0 :(得分:0)