cppunit test framework
CppUnit is the C++ port of the famous JUnit framework for unit testing. Test output is in XML for automatic testing and GUI based for supervised tests.
This is a continuation of the original cppunit project.
Contents
Developers
Getting the sources
cppunit sources are stored in git. To get them, you can use:
git clone git://anongit.freedesktop.org/git/libreoffice/cppunit/
or you can browse the code online.
If you want to use release version you can fetch it from libreoffice mirror.
Building it
Dependencies
Once the source has been checked out, cppunit can be built in usual manner:
cd cppunit ./autogen.sh ./configure make make check # optional make install
Contributing
Once you have done a change that you are happy with, and that builds with cppunit, contribute it back, we'll be happy to integrate it! Do:
# commit your changes to your local repository git commit -a # create the patch git format-patch origin/master
Contact
You can get in touch with us using multiple ways:
using IRC server irc.freenode.net and joining channel #libreoffice-dev
using mailing list libreoffice@lists.freedesktop.org
filling bugreport in Freedesktop bugzilla


