source: src/unittests/LogUnitTest.cpp@ a80f419

Last change on this file since a80f419 was a80f419, checked in by Frederik Heber <heber@…>, 15 years ago

First version.

Everything was extracted from project MoleCuilder and adapted such that it
runs on its own (i.e. new configure.ac, Makefile.am structure, stuff for
libtool versioning, ...)

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/*
9 * logunittest.cpp
10 */
11
12
13// include config.h
14#ifdef HAVE_CONFIG_H
15#include <config.h>
16#endif
17
18using namespace std;
19
20#include <cppunit/CompilerOutputter.h>
21#include <cppunit/extensions/TestFactoryRegistry.h>
22#include <cppunit/ui/text/TestRunner.h>
23
24#include "Log.hpp"
25#include "Verbose.hpp"
26
27#include "LogUnitTest.hpp"
28
29#ifdef HAVE_TESTRUNNER
30#include "UnitTestMain.hpp"
31#endif /*HAVE_TESTRUNNER*/
32
33/********************************************** Test classes **************************************/
34
35// Registers the fixture into the 'registry'
36CPPUNIT_TEST_SUITE_REGISTRATION( LogTest );
37
38
39void LogTest::setUp()
40{
41};
42
43void LogTest::tearDown()
44{
45 logger::purgeInstance();
46 errorLogger::purgeInstance();
47};
48
49/**
50 * UnitTest for log()
51 */
52void LogTest::logTest()
53{
54 logger::getInstance().setVerbosity(2);
55 DoLog(0) && (Log() << Verbose(0) << "Verbosity level is set to 2." << endl);
56 DoLog(0) && (Log() << Verbose(0) << "Test level 0" << endl);
57 DoLog(1) && (Log() << Verbose(1) << "Test level 1" << endl);
58 DoLog(2) && (Log() << Verbose(2) << "Test level 2" << endl);
59 DoLog(3) && (Log() << Verbose(3) << "Test level 3" << endl);
60 DoLog(4) && (Log() << Verbose(4) << "Test level 4" << endl);
61
62 DoLog(0) && (Log() << Verbose(0) << "Output a log message." << endl);
63 DoeLog(0) && (eLog()<< Verbose(0) << "Output an error message." << endl);
64 setVerbosity(3);
65 DoLog(4) && (Log() << Verbose(4) << "This should not be printed." << endl);
66 DoeLog(4) && (eLog()<< Verbose(4) << "This should not be printed." << endl);
67};
Note: See TracBrowser for help on using the repository browser.