Reputation: 85
Is there a posibility to verify it for project, or better, whole solution? It is posible for single feature file: SpecFlow - Find all scenarios from method step and Find all unimplemented steps
But I want to check whole solution if everything is ok. Running all tests verifies it, but it takes time - I want to do this before running tests.
Upvotes: 2
Views: 1772
Reputation: 596
The step definition report can find unbound steps as well as unused step definitions: specflow.exe stepdefinitionreport {SpecFlowProjectName}.csproj
More information, see here: http://www.specflow.org/documentation/Reporting/
Upvotes: 3