Building CUnitTester
--------------------

From within the this directory:
	./configure
	make

This will produce the binary build/CUnitTester.


Building test suites
--------------------

To compile the test suites you will need unittester.h which is in the
src directory. A command similar to the following should suffice:
	gcc -Wall -ggdb -shared -o libtest_triv.so trivsuite.c

For an example of a test suite please take a look at src/trivsuite.c.


Running the tester
------------------

To run the unit tester simply run CUnitTester while in a directory under which
the libtest_*.so files can be found.
