Mercurial > dedupe
view TestFramework.hpp @ 76:8136057988bc
Fixes to automatic report generating system.
A lot of new unittests.
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Sat, 16 Feb 2013 15:32:20 +0100 |
| parents | 2f45385195ae |
| children |
line wrap: on
line source
#ifndef TESTFRAMEWORK_HPP #define TESTFRAMEWORK_HPP /* This header sets up everything for the testframework e.g. switches between headerincludes and dynamic linking */ #define BOOST_TEST_MAIN #ifdef BOOSTTEST_HEADER_INCLUDE #include <boost/test/included/unit_test.hpp> #else #include <boost/test/unit_test.hpp> #endif //Here comes our helperfunctions class QString; std::ostream& operator<<(std::ostream& out, const QString& rhs); class QDateTime; std::ostream& operator<<(std::ostream& out, const QDateTime& rhs); class QByteArray; std::ostream& operator<<(std::ostream& out, const QByteArray& rhs); #endif //TESTFRAMEWORK_HPP
