All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.ajug.jsl.jester.qc.TestRun

java.lang.Object
   |
   +----org.ajug.jsl.jester.qc.TestRun

public class TestRun
extends Object

Constructor Index

 o TestRun()

Method Index

 o clearAll()
Clears all data values in the class.
 o hasAllTestMethodRun()
Will return true if all the methods in the TestCase have all run else returns false.
 o setAfterTest()
Call this method in the afterTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.
 o setBeforeTest()
Call this method in the beforeTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.
 o setRunTest()
Call this method in the runTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.

Constructors

 o TestRun
 public TestRun()

Methods

 o clearAll
 public static void clearAll()
Clears all data values in the class. Call this method prior to calling any method in a TestCase subclass.

 o setBeforeTest
 public static void setBeforeTest()
Call this method in the beforeTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.

 o setRunTest
 public static void setRunTest()
Call this method in the runTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.

 o setAfterTest
 public static void setAfterTest()
Call this method in the afterTest method of the TestCase subclass for testing the Tester to see if all the TestCase method have been called.

 o hasAllTestMethodRun
 public static boolean hasAllTestMethodRun()
Will return true if all the methods in the TestCase have all run else returns false. Use this method in an assert to test that all TestCase methods have been called.


All Packages  Class Hierarchy  This Package  Previous  Next  Index