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 


Constructor Index

 o ChildTester(int)

Method Index

 o afterTest()
Test to assure that only beforeTest and runTest method had been run prior to running this method.
 o beforeTest()
Test to assure that no other test methods have been run.
 o runTest()
Test to assure that only beforeTest method had been run prior to running this method.

Constructors

 o ChildTester
 public ChildTester(int testNumber)

Methods

 o beforeTest
 public void beforeTest()
Test to assure that no other test methods have been run.

Overrides:
beforeTest in class TestCase
 o runTest
 public void runTest()
Test to assure that only beforeTest method had been run prior to running this method.

Overrides:
runTest in class TestCase
 o 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