mercredi 8 mars 2017

Is it possible to define test dependencies in Spock?

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 sind similar concept in Spock. Is that possible?

Aucun commentaire:

Enregistrer un commentaire