source: src/unittests/LogUnitTest.cpp@ 8e24ef

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

Default Assert behavior is Abort, not Ask. Added LOG() macro.

  • Library version is now 4:0:3, API version is still 1.0.8.
  • default behavior of Abort is more approriate, e.g. for unit tests are much more abundant that main (interactive) programs.
  • added ELOG(), LOG() macro in place for DoLog(x) && (Log() << Verbose ...
  • 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 // long form
56 DoLog(0) && (Log() << Verbose(0) << "Verbosity level is set to 2." << endl);
57 // shortform via macro
58 LOG(0,"Test level 0");
59 LOG(1,"Test level 1");
60 LOG(2,"Test level 2");
61 LOG(3,"Test level 3");
62 LOG(4,"Test level 4");
63
64 DoLog(0) && (Log() << Verbose(0) << "Output a log message." << endl);
65 DoeLog(0) && (eLog()<< Verbose(0) << "Output an error message." << endl);
66 CPPUNIT_ASSERT(DoLog(0));
67 setVerbosity(3);
68 DoLog(4) && (Log() << Verbose(4) << "This should not be printed." << endl);
69 DoeLog(4) && (eLog()<< Verbose(4) << "This should not be printed." << endl);
70 CPPUNIT_ASSERT(!DoLog(4));
71 CPPUNIT_ASSERT(!DoeLog(4));
72};
Note: See TracBrowser for help on using the repository browser.