blob: 52f224f13ebdeafa346a28ab7e80db11ac5b90e3 [file] [log] [blame]
package test.dependent;
import org.testng.annotations.Test;
@Test(groups={"group2"}, dependsOnGroups={"group1"})
public class C2 {
public void shouldBeSkipped() {
// the expectation is that this test will be SKIPPED because
// a test in group1 failed and we have a dependsOnGroups={"group1"}
}
}