我有两种情况,如下所示:
scenario("The message does not contain a valid JSON structure") {
Given("the message is in XML format")
When("the message gets validated")
Then("it should appear in the error pool")
succeed
}
scenario("The message is empty") {
Given("the message is {}")
When("the message gets validated")
Then("it should appear in the error pool")
succeed
}
如您所见,两种情况下的When
和Then
阶段是相同的。
问题是,我可以一次定义When
和Then
并多次使用吗?就像程序中的变量一样。