1
我知道有一些類似的問題,但我有一些問題,以綁定步驟功能黃瓜文件。這是我的黃瓜亞軍黃瓜與春季啓動
@RunWith(Cucumber.class)
public class CucumberTests {
}
註釋
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@SpringBootTest(classes = AppRunner.class)
@RunWith(Cucumber.class)
@interface CucumberSteps {
}
步驟
@CucumberSteps
public class QueueSenderStepsDefs {
@Given("^I have item$")
public void iHaveItem() throws Throwable {
System.out.println("Asd");
}
@When("^I send it to jmsQueueSender$")
public void iSendItToJmsQueueSender() throws Throwable {
System.out.println("dff");
}
@Then("^item is on queue$")
public void itemIsOnQueue() throws Throwable {
System.out.println("sdasdsa");
}
}
我總是得到 「你可以實現與下面的代碼片段缺失的步驟:」。我使用InteliJ IDEA,並在配置中設置膠水。但仍然不起作用。你可以幫我嗎?