blob: 8aa4663313a5b1112ab4d72ca3fa842ef8555774 [file] [log] [blame]
package test.dependent;
import org.testng.annotations.*;
/**
* This class verifies that when methods have dependents, they are run
* in the correct order.
*
* @author Cedric Beust, Aug 19, 2004
*
*/
public class OrderMethodTest extends BaseOrderMethodTest {
@Test(groups = { "1.0" })
public void z_first0() {
// ppp("1.0");
m_group1[0] = true;
}
@Test(groups = { "2.1" }, dependsOnGroups = { "1.0", "1.1" })
public void a_second1() {
// ppp("2.1");
verifyGroup(2, m_group1);
m_group2[1] = true;
}
@Test(groups = { "1.1" })
public void z_premiere1() {
// ppp("1.1");
m_group1[1] = true;
}
}