Index: unittests/tst_logging.cpp =================================================================== diff -u -rb9c5b0b3afc3b34d4980ecc4f023f498f80dafbc -r805119c460b4a266d6401c8705f4427e7fbe270f --- unittests/tst_logging.cpp (.../tst_logging.cpp) (revision b9c5b0b3afc3b34d4980ecc4f023f498f80dafbc) +++ unittests/tst_logging.cpp (.../tst_logging.cpp) (revision 805119c460b4a266d6401c8705f4427e7fbe270f) @@ -22,12 +22,14 @@ using namespace Storage; +/*! + * \brief tst_logging::tst_logging + * \details Constructor + * \param parent - QObject parent owner object. + * Qt handles the children destruction by their parent objects life-cycle. + */ tst_logging::tst_logging(QObject *parent) : QObject(parent) { } -// void tst_logging::initTestCase_data() -// { -// } - void tst_logging::initTestCase() { Threads::registerTypes(); @@ -38,19 +40,11 @@ QCOMPARE(mContent, "Event: , Storage::Logger Initialized\n"); } -// void tst_logging::init() -// { -// } - void tst_logging::cleanup() { QThread::currentThread()->msleep(1000); } -void tst_logging::cleanupTestCase() -{ -} - void tst_logging::logEvent() { LOG_EVENT("1 - Event log has been created");