ccl.util.test
Class IniFileTest

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

public class IniFileTest
extends Test

Tests for ccl.util.IniFile.


Constructor Summary
IniFileTest()
           
IniFileTest(Test pTest_)
           
 
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
 
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

IniFileTest

public IniFileTest()

IniFileTest

public IniFileTest(Test pTest_)
Method Detail

_doIt

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

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 );