source: molecuilder/src/unittests/logunittest.cpp@ c3f8c4

Last change on this file since c3f8c4 was c3f8c4, checked in by Tillmann Crueger <crueger@…>, 15 years ago

Made logger class use the new Singleton framework

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 * logunittest.cpp
3 */
4
5
6using 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
17#ifdef HAVE_TESTRUNNER
18#include "UnitTestMain.hpp"
19#endif /*HAVE_TESTRUNNER*/
20
21/********************************************** Test classes **************************************/
22
23// Registers the fixture into the 'registry'
24CPPUNIT_TEST_SUITE_REGISTRATION( LogTest );
25
26
27void LogTest::setUp()
28{
29};
30
31void LogTest::tearDown()
32{
33 logger::purgeInstance();
34 errorLogger::purgeInstance();
35};
36
37/**
38 * UnitTest for log()
39 */
40void LogTest::logTest()
41{
42 logger::getInstance().setVerbosity(2);
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;
52 setVerbosity(3);
53 Log() << Verbose(4) << "This should not be printed." << endl;
54 eLog() << Verbose(4) << "This should not be printed." << endl;
55};
Note: See TracBrowser for help on using the repository browser.