标签: testing groovy spock
我正在尝试实现与以下TestNG代码类似的功能:
@Test public void method1() {} @Test(dependsOnMethods = { "method1" }) public void method2() {}
我无法在Spock中找到类似的概念。这可能吗?
答案 0 :(得分:5)
我不知道spock中有这样的功能,但Stepwise可能是你正在寻找的。 p>
Stepwise