-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlogger_test.hpp
44 lines (33 loc) · 1.33 KB
/
logger_test.hpp
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/***************************************************************************
tag: Peter Soetens Mon Jan 10 15:59:18 CET 2005 logger_test.hpp
logger_test.hpp - description
-------------------
begin : Mon January 10 2005
copyright : (C) 2005 Peter Soetens
email : [email protected]
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef LOGGERTEST_H
#define LOGGERTEST_H
#include <Logger.hpp>
using namespace RTT;
class LoggerTest
{
public:
Logger* logger;
LoggerTest(){setUp();};
~LoggerTest(){tearDown();};
void setUp();
void tearDown();
void testStartStop();
void testLogEnv();
void testNewLog();
void testThreadLog();
};
#endif