I have a simple setup that runs fine from VS2012 Test Explorer but fails from ReSharper:
Class Initialization method AAMVA.S2S.TPS.AcceptanceTests.Features.Foo1Feature_MsTest.FeatureSetup threw exception. TechTalk.SpecFlow.SpecFlowException: TechTalk.SpecFlow.SpecFlowException: Unable to load plugin: SpecRun. Please check
http://go.specflow.org/doc-plugins for details. ---> System.IO.FileNotFoundException: Could not load file or assembly 'SpecRun.SpecFlowPlugin' or one of its dependencies. The system cannot find the file specified.WRN: Assembly binding logging is turned OFF.
Here is the config section:
<specFlow>
<!-- use unit test provider SpecRun+NUnit or SpecRun+MsTest for being able to execute the tests with SpecRun and another provider -->
<unitTestProvider name="SpecRun+MsTest" />
<plugins>
<add name="SpecRun" />
</plugins>
<stepAssemblies>
<stepAssembly assembly="AAMVA.S2S.TPS.RegressionTests" />
</stepAssemblies>
</specFlow>
Am I doing something wrong? Looks like plugin files are not deployed.
All latest nuget packages.
Thanks!