|
Hi All,
I have 3 @Test methods in my testng class. For eg:
@Test
void method1(){}
@Test
void method2(){}
@Test
void method3(){}
My requirement is that i want to execute the above methods in the following order
method2,method3 and then method1.
Please let me how would i do this. I tried with dependsOnMethods, dependsOnGroups
|