ここに私のテストスイートがあります
@RunWith(Suite.class)
@SuiteClasses({ LoginTest.class })
public class SmokeTestSuite {
}
これが私のLoginTest.classファイルです
public class LoginTest extends MSTestBase {
@Test
public void User1LoginTest() throws Exception {
/*code*/
}
@Test
public void User2LoginTest() throws Exception {
/*code*/
}
@Test
public void User3LoginTest() throws Exception {
/*code*/
}
}
2つ質問があります。
1- Can I run my SmokeTestSuite so it only execute User3LoginTest() method from LoginTest.class file?
2. Can I pass parameter to my Test Method from SmokeTestSuite file?