我与一个开发了自己的自定义测试框架的团队合作,类似于NUnit但具有各种附加功能。我试图将SpecFlow纳入我们的测试中。要使用我们的自定义TestFixture和Test属性生成代码隐藏功能文件,我需要创建一个插件。
我已经创建了这个插件,但我知道自己的智慧'最终试图让SpecFlow实际上看到它。我已尝试使用插件在项目的App.config中对path
设置进行各种排列,甚至是完全指定的路径:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="specFlow"
type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/>
</configSections>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json"
publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<specFlow>
<plugins>
<add name="SpecFlowAdapters"
path="C:\Development\[OurProductName]\Plugins\SpecFlowAdapters.SpecFlowPlugin.dll"
type="Generator" />
</plugins>
</specFlow>
</configuration>
但每次重新生成功能代码时,我都会
#error Generation error: Unable to find plugin in the plugin search path:
SpecFlowAdapters. Please check http://go.specflow.org/doc-plugins for details.
有没有人能够成功创建一个自定义SpecFlow生成器,可以指向我的样本工作代码?
答案 0 :(得分:1)