test: Save logs during testing and add them to version control

This change removes the ConsoleLogger from the TestSuiteFixture and registers a PlainFileLogger instead, which saves
logs during testing into the file bin/test/data/log/test_log.txt.
This commit is contained in:
Eberhard Graether
2014-06-30 17:15:17 +02:00
parent b38252e894
commit 3a983598e6
7 changed files with 93 additions and 6 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ public:
TestSuiteFixture();
virtual ~TestSuiteFixture();
virtual bool setUp();
virtual bool tearDown();
virtual bool setUpWorld();
virtual bool tearDownWorld();
};
// According to the CxxTest Documentation global fixtures are actually supposed to be implemented as global static instances