To install QtUnit you need to have Qt 3.0 or later installed.
You can obtain the toolkit from http://www.trolltech.com.
Qt should be compiled with thread support, the code doesn't use threads yet
though. The dependency on a threaded qt has been enforced to remain completely
compatible with the Qt version for Microsoft Windows.

To start to compilation just type

$ qmake qtunit.pro

in the top archive directory, followed by 

$ make

When the compilation is finished you will find the framework libraries in the
'lib' directory. You should include them in your library search path by for
example setting the LD_LIBRARY_PATH environmental variable.

$ export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH

Next you can execute the typical test runners from the 'bin' directory.

$ bin/guitestrunner
$ bin/texttestrunner testproject.qpj
$ bin/standalonerunner

You will find the source code to the typical testrunners and test module in the
'samples' directory.

Currently, complete documentation for QtUnit is being written and when it's
finished, v1.0 will be released.

I hope you find this tool and framework useful. For questions and remarks,
don't hesitate to contact me at gbevin@uwyn.com
