I am writing my cucumber script to include the next step:
And the frabjous bandersnatch whiffled "Callooh"
Type alt-enter, select "Create step definition" and will produce:
@And("^the frabjous bandersnatch whiffled \"([^\"]*)\"$") public void the_frabjous_bandersnatch_whiffled(String arg1) throws Throwable {
but our coding standards require camelCase methods, so I need to manually change the_frabjous_bandersnatch_whiffled to theFrabjousBandersnatchWhiffled . Is there any setting somewhere that tells Idea to use the camel case instead of underlining in this situation?
Also, when it offers possible classes to host my new stepdef, can I filter it only for classes with names ending in "Steps"?
coding-style intellij-idea content-assist cucumber-jvm
Carl Manaster
source share