Ever since I upgraded to the latest IntelliJ community version 15.0.3, whenever I automatically generate a step definition from a function definition file using alt + enter
, it creates a method in the case of a camel, rather than a regular underline style.
For example, it was created in this way.
@When("Cucumber is awesome") public void cucumber_is_awesome() {}
But now it is generated in the usual camelCase convention:
@When("Cucumber is awesome") public void cucumberIsAwesome() {}
Is there any way to change this setting to first style?
thanks
source share