我编写了我的黄瓜场景以包括以下步骤:
And the frabjous bandersnatch whiffled "Callooh"
输入 alt-enter,选择Create Step Definition,它会产生:
@And("^the frabjous bandersnatch whiffled \"([^\"]*)\"$")
public void the_frabjous_bandersnatch_whiffled(String arg1) throws Throwable {
// Express the Regexp above with the code you wish you had
throw new PendingException();
}
但是我们的编码标准要求方法的驼峰式,所以我必须手动更改the_frabjous_bandersnatch_whiffled
为theFrabjousBandersnatchWhiffled
. 在这种情况下,是否有某个设置会告诉 Idea 使用驼峰式大小写而不是下划线?
此外,当它提供可能的类来放置我的新 stepdef 时,我可以让它过滤到名称以“Steps”结尾的类吗?