import org.testng.Assert; import org.testng.annotations.Test; /** * This test mostly exists to test TestNG itself. * * @author Forge * @version $Id: $ */ @Test(timeOut = 1000) public class TinyTest { /** * Just a quick test to see if TestNG and Assert are working. */ @Test(timeOut = 1000) public void test_true() { Assert.assertTrue(true); } }