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
-
TestRun()
-
-
clearAll()
- Clears all data values in the class.
-
hasAllTestMethodRun()
- Will return true if all the methods in the TestCase have all run else returns
false.
-
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.
-
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.
-
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.
TestRun
public TestRun()
clearAll
public static void clearAll()
- Clears all data values in the class. Call this method prior to calling any
method in a TestCase subclass.
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.
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.
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.
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