Last change
on this file since 14c0f0 was 96d8dc, checked in by Saskia Metzler <metzler@…>, 16 years ago |
Ticket 43 Create a logging class
The verbosity level can now be handeled globally by setVerbosity().
|
-
Property mode
set to
100644
|
File size:
459 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * logunittest.hpp
|
---|
3 | */
|
---|
4 |
|
---|
5 | #ifndef LOGTEST_HPP_
|
---|
6 | #define LOGTEST_HPP_
|
---|
7 |
|
---|
8 | #include <cppunit/extensions/HelperMacros.h>
|
---|
9 |
|
---|
10 |
|
---|
11 | /********************************************** Test classes **************************************/
|
---|
12 |
|
---|
13 | class LogTest : public CppUnit::TestFixture
|
---|
14 | {
|
---|
15 | CPPUNIT_TEST_SUITE( LogTest) ;
|
---|
16 | CPPUNIT_TEST ( logTest );
|
---|
17 | CPPUNIT_TEST_SUITE_END();
|
---|
18 |
|
---|
19 | public:
|
---|
20 | void setUp();
|
---|
21 | void tearDown();
|
---|
22 |
|
---|
23 | void logTest();
|
---|
24 | };
|
---|
25 |
|
---|
26 | #endif /* LOGTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.