I have several Cucumber features with steps, which are implemented by Groovy/Java code, but after several changes on the implementation side, like: I refactor step's regex, I can't be sure that all steps in feature files can be run now without running them.
I've tried to find some plugin for Gradle to check that all steps in the project are implemented in the code, but I didn't find it.
Does anyone know of a plugin or solution to check this, or do I need to write my own implementation for this?