Reputation: 9697
I am trying to achieve similar functionality to the following TestNG code:
@Test
public void method1() {}
@Test(dependsOnMethods = { "method1" })
public void method2() {}
I am unable to find similar concept in Spock. Is that possible?
Upvotes: 3
Views: 1030