Reputation: 17388
Given a feature file I can generate step definitions in visual studio no problem. Are there any tools (e.g. visual studio plugins?) out there, which allow me to sync feature files and step definitions (just the step definition method signatures of course)?
We are also using speclog which is synced with tfs. Are there ways to synch tfs and speclog in terms of feature files (i.e. the original acceptance criteria in speclog)?
Upvotes: 2
Views: 1255
Reputation: 596
There's currently no support to update the step definition signature automatically. I guess what you're looking for is some kind of Gherkin/step definition refactoring tools.
One thing that might be useful though for what you want to accomplish is the step definition report, that lists unused/unbound steps: http://www.specflow.org/documentation/Reporting/
For syncing feature files from source control (e.g. TFSVC or Git) to SpecLog, you can link requirements to feature files like outlined here: https://github.com/techtalk/SpecLog-Resources/wiki/Gherkin-Attachments-For-Acceptance-Criteria
Upvotes: 1