When developing new steps using Jbehave you might face an issue when you create a step like:
@When("I do action with item")
public static void IDoActionWith(String item){}
This step would not be found by JBehave as a number of parameters in the annotation( 0 params) does not match with method signature(1 param).
It would be good to highlight such steps either in code or in story-files.
When developing new steps using Jbehave you might face an issue when you create a step like:
This step would not be found by JBehave as a number of parameters in the annotation( 0 params) does not match with method signature(1 param).
It would be good to highlight such steps either in code or in story-files.