blob: e250c0ff66dbc271fdeafd45adaf010457565fbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright 2008 Nanorex, Inc. See LICENSE file for details.
#ifndef NX_LOGGERTEST_H
#define NX_LOGGERTEST_H
#include <cppunit/extensions/HelperMacros.h>
#include "Nanorex/Utility/NXLogger.h"
using namespace Nanorex;
/* CLASS: NXLoggerTest */
class NXLoggerTest : public CPPUNIT_NS::TestFixture {
CPPUNIT_TEST_SUITE(NXLoggerTest);
CPPUNIT_TEST(consoleHandlerTest);
CPPUNIT_TEST(fileHandlerTest);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void consoleHandlerTest();
void fileHandlerTest();
};
#endif
|