Package com.strangelight.unit_test

A simple unit test framework.

See:
          Description

Interface Summary
_Testable A "marker" interface, which declares no methods, but indicates that this class knows how to perform unit-tests on itself.
 

Class Summary
ClassTester A class for running unit tests on classes which implement the _Testable interface.
 

Package com.strangelight.unit_test Description

A simple unit test framework. The main advantage of this framework over others is its extreme simplicity: rather than providing a huge number of tools for testing any possible type of code, this package defines a simple interface for classes that test themselves, and then provides a simple tool for testing classes that implement this interface.

STATUS: Inactive