blob: 96f9af460d6a37e9cdead3526183f64a13b5c9d3 [file] [log] [blame]
package test.dependent;
import org.testng.annotations.*;
/**
* This class
*
* @author cbeust
*/
public class SampleDependentMethods4 {
@Test
public void step1() {
}
@Test(dependsOnMethods = { "step1" })
public void step2() {
assert false : "Problem in step2";
}
@Test(dependsOnMethods = { "step2" })
public void step3() {
}
}