Я использую Intellij IDEA с Groovy / Java, и когда я запускаю новый файл функций, отсутствующие фрагменты шагов всегда бывают двух типов
Как мне заставить Intellij просто дать мне один комплект?
Я попытался изменить зависимости и спросил о слабом
Given(/there is a report on interest/) { ->
// Write code here that turns the phrase above into concrete actions
throw new PendingException()
}
@Given("there is a report on interest")
public void there_is_a_report_on_interest() {
// Write code here that turns the phrase above into concrete actions
throw new cucumber.api.PendingException();
}
Я хочу получить только один из указанных выше типов от Intellij IDEA.