Hi,
Currently getting into troubles with NCrunch and Specflow. I am getting missing step definitions. Work perfectly through the Resharper / MSTest runner with the MSTestAdapter.
I am running
- NCrunch 3.14.0.1
- Specflow 2.3.0
- Specflow Extension 2017.1.12
- VS 2017
Here is a copy of the standard error.
Given an order that will RunAllVetting
-> done: Steps.GivenAnOrderThatWillRunAllVetting() (0.0s)
And the vetting script raises a Referral Broken Rule with Code A Action orderRefer Overwrite FALSE Queue sendtoMarginlendingQueue
-> No matching step definition found for the step. Use the following code to create one:
[Given(@"the vetting script raises a Referral Broken Rule with Code A Action orderRefer Overwrite FALSE Queue sendtoMarginlendingQueue")]
public void GivenTheVettingScriptRaisesAReferralBrokenRuleWithCodeAActionOrderReferOverwriteFALSEQueueSendtoMarginlendingQueue()
{
ScenarioContext.Current.Pending();
}
And the vetting script raises a Referral Broken Rule with Code A Action orderRefer Overwrite FALSE Queue sendtoInternetQueue
-> No matching step definition found for the step. Use the following code to create one:
[Given(@"the vetting script raises a Referral Broken Rule with Code A Action orderRefer Overwrite FALSE Queue sendtoInternetQueue")]
public void GivenTheVettingScriptRaisesAReferralBrokenRuleWithCodeAActionOrderReferOverwriteFALSEQueueSendtoInternetQueue()
{
ScenarioContext.Current.Pending();
}
Edited 13 Apr 2018 02:04 UTC