All Packages Class Hierarchy This Package Previous Next Index
Class org.ajug.jsl.jester.qc.ChildTester
java.lang.Object
|
+----org.ajug.jsl.jester.cases.TestCase
|
+----org.ajug.jsl.jester.qc.ChildTester
- public class ChildTester
- extends TestCase
This will test the very basics of Jester
We will test that:
1) beforeTest is called
2) runTest is called
3) afterTest is called
4) called in order of beforeTest, runTest, afterTest
-
ChildTester(int)
-
-
afterTest()
- Test to assure that only beforeTest and runTest method had been
run prior to running this method.
-
beforeTest()
- Test to assure that no other test methods have been run.
-
runTest()
- Test to assure that only beforeTest method had been run prior
to running this method.
ChildTester
public ChildTester(int testNumber)
beforeTest
public void beforeTest()
- Test to assure that no other test methods have been run.
- Overrides:
- beforeTest
in class TestCase
runTest
public void runTest()
- Test to assure that only beforeTest method had been run prior
to running this method.
- Overrides:
- runTest
in class TestCase
afterTest
public void afterTest()
- Test to assure that only beforeTest and runTest method had been
run prior to running this method.
- Overrides:
- afterTest
in class TestCase
All Packages Class Hierarchy This Package Previous Next Index