我正在尝试实现与以下TestNG代码类似的功能:

@Test
public void method1() {}

@Test(dependsOnMethods = { "method1" })
public void method2() {}


我在Spock中找不到类似的概念。那可能吗?

最佳答案

我不知道Spock中的这种功能,但是Stepwise可能正是您想要的。

09-11 18:39