何时可重用阶段

时间:2019-04-23 13:22:42

标签: scala bdd scalatest

我有两种情况,如下所示:

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
} 

如您所见,两种情况下的WhenThen阶段是相同的。
问题是,我可以一次定义WhenThen并多次使用吗?就像程序中的变量一样。

0 个答案:

没有答案