TestNG : Java Testing Next Generation :: TestNG Example
TestNG Example Downloads Examples TestNG Example SampleTestNGClass.java package com.javaskool; import org.testng.Assert; import org.testng.SkipException; import org.testng.annotations.Test; public class SampleTestNGClass { @Test public void Login() { System.out.println(“You are logging here”); //Assert.assertEquals(“james”, “james”); //throw new SkipException(“Skipping this...
Recent Comments