ccl.util.test
Class UtilTest

java.lang.Object
  |
  +--ccl.util.Test
        |
        +--ccl.util.test.UtilTest
All Implemented Interfaces:
java.lang.Runnable

public class UtilTest
extends Test

Test cases for ccl.util package and ccl.util.Util class.


Constructor Summary
UtilTest()
          This is the default constructor.
UtilTest(Test pTest_)
          This constructor is needed for this test to be a sub test.
 
Method Summary
protected  void _doIt()
          Inherit this method to do your test inside of it.
static void main(java.lang.String[] args)
          example code for a real test main method
 void setInit(Init init_)
          The InitTest uses the ccl init object itself.
 
Methods inherited from class ccl.util.Test
_enterSubTest, _exitSubTest, _getValue, _increment, _setTests, _showLiveSignals, assert, assert, assertNotNull, assertNotNull, bugIf, bugIf, bugIf, getBugs, getComment, getGlobalTests, getLocalTests, getTestClassDirectory, getTestDirectory, getValue, initialize, isTest, isTiming, isVerbose, printResult, redirectStandardStreams, run, setBug, setTests, setTiming, setValue, setVerbose, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UtilTest

public UtilTest()
This is the default constructor.

UtilTest

public UtilTest(Test pTest_)
This constructor is needed for this test to be a sub test.
Method Detail

_doIt

protected void _doIt()
              throws java.lang.Exception
Description copied from class: Test
Inherit this method to do your test inside of it.
Overrides:
_doIt in class Test
Throws:
java.lang.Exception - Whatever can go wrong.

setInit

public void setInit(Init init_)
The InitTest uses the ccl init object itself. The init object is forwarded from outer test to the next test.

main

public static void main(java.lang.String[] args)
Description copied from class: Test
example code for a real test main method

 Test pTest = (Test)(new SomeTest());
 pTest.initialize( argv );
 pTest.setVerbose( true );
 pTest.run();
 printResult( pTest );

 System.exit( 0 );