I have two methods in my test case.
I want to use two different @beforeTest or @beforeMethod methods for each one of my Test methods.
Please tell me how can write these initialization methods?
I wrote two @beforeMethod methds in my unit test class, but both @beforeMethod methods are executed for every Unit Test method execution.
So how can we declare the @beforeMethod method to execute individually?
My Unit Test Class look like
public class MyUnitTest{
String userName = null;
String password = null;
// Method 1
@Parameters({"userName"})
@BeforeMethod
public void beforeMethod1(String userName){
userName = userName;
}
@Parameters({"userName"})
@Test
public void unitTest1(String userNameTest){
System.out.println("userName ="+userName);
}
// Method 2
@Parameters({"userName","password"})
@BeforeMethod
public void beforeMethod2(String userName,String password){
this.userName = userName;
this.password = password;
}
@Parameters({"userName","password"})
@Test
public void unitTest2(String userNameTest,String passwordTest){
System.out.println("userName ="+this.userName+" \t Password ="+this.password);
}
}
Please anybody suggest me, I want get below mentioned conditions? 1) beforeMethod1 method only has to execute for unitTest1() method ? 2) beforeMethod2 method only has to execute for unitTest2() method ?