|
Last change
on this file since 8a4f12 was 45cc89, checked in by Frederik Heber <heber@…>, 16 years ago |
|
MEMLEAK: In many tests World, MemoryUsageObserver, logger or errorLogger being singletons were instantiated but not destroyed.
- in some cases respective includes had to be added.
|
-
Property mode
set to
100644
|
|
File size:
1.3 KB
|
| Rev | Line | |
|---|
| [96d8dc] | 1 | /*
|
|---|
| 2 | * logunittest.cpp
|
|---|
| 3 | */
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 | using namespace std;
|
|---|
| 7 |
|
|---|
| 8 | #include <cppunit/CompilerOutputter.h>
|
|---|
| 9 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
|---|
| 10 | #include <cppunit/ui/text/TestRunner.h>
|
|---|
| 11 |
|
|---|
| 12 | #include "logunittest.hpp"
|
|---|
| 13 | #include "log.hpp"
|
|---|
| 14 | #include "defs.hpp"
|
|---|
| 15 | #include "verbose.hpp"
|
|---|
| 16 |
|
|---|
| [44becc] | 17 | #ifdef HAVE_TESTRUNNER
|
|---|
| 18 | #include "UnitTestMain.hpp"
|
|---|
| 19 | #endif /*HAVE_TESTRUNNER*/
|
|---|
| 20 |
|
|---|
| [96d8dc] | 21 | /********************************************** Test classes **************************************/
|
|---|
| 22 |
|
|---|
| 23 | // Registers the fixture into the 'registry'
|
|---|
| 24 | CPPUNIT_TEST_SUITE_REGISTRATION( LogTest );
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 | void LogTest::setUp()
|
|---|
| 28 | {
|
|---|
| 29 | };
|
|---|
| 30 |
|
|---|
| 31 | void LogTest::tearDown()
|
|---|
| 32 | {
|
|---|
| [45cc89] | 33 | logger::purgeInstance();
|
|---|
| 34 | errorLogger::purgeInstance();
|
|---|
| [96d8dc] | 35 | };
|
|---|
| 36 |
|
|---|
| 37 | /**
|
|---|
| 38 | * UnitTest for log()
|
|---|
| 39 | */
|
|---|
| 40 | void LogTest::logTest()
|
|---|
| 41 | {
|
|---|
| 42 | logger::getInstance()->setVerbosity(2);
|
|---|
| [543ce4] | 43 | Log() << Verbose(0) << "Verbosity level is set to 2." << endl;
|
|---|
| 44 | Log() << Verbose(0) << "Test level 0" << endl;
|
|---|
| 45 | Log() << Verbose(1) << "Test level 1" << endl;
|
|---|
| 46 | Log() << Verbose(2) << "Test level 2" << endl;
|
|---|
| 47 | Log() << Verbose(3) << "Test level 3" << endl;
|
|---|
| 48 | Log() << Verbose(4) << "Test level 4" << endl;
|
|---|
| 49 |
|
|---|
| 50 | Log() << Verbose(0) << "Output a log message." << endl;
|
|---|
| 51 | eLog() << Verbose(0) << "Output an error message." << endl;
|
|---|
| [96d8dc] | 52 | setVerbosity(3);
|
|---|
| [543ce4] | 53 | Log() << Verbose(4) << "This should not be printed." << endl;
|
|---|
| 54 | eLog() << Verbose(4) << "This should not be printed." << endl;
|
|---|
| [96d8dc] | 55 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.