Anda di halaman 1dari 1

package MultiplePkg;

import static org.testng.Assert.assertEquals;

import org.testng.Assert;

//import org.testng.SkipException;
import org.testng.annotations.Test;

public class multpleClass {

@Test
public void loginFB()
{
System.out.println("login by FaceBook");

//throw new SkipException("FB Login will be skipped");

//Assert.assertEquals("bmr","bmr1");
//Assert.assertEquals(1, 3);

//Assert.assertTrue(3<1);

//try
// {
// Assert.assertEquals("bmr", "bmr1");
//}
//catch(Throwable T)
// {
// System.out.println(T);
//}

//Assert.assertEquals(1,2);
//try{
//Assert.assertThrows();
//}catch(Throwable t)
//{
// System.out.println(t);
//}

@Test

public void loginEmail()


{
System.out.println("login by Email");
}
}

Anda mungkin juga menyukai