00001 /*************************************************************************** 00002 tag: Peter Soetens Mon Jan 10 15:59:18 CET 2005 logger_test.hpp 00003 00004 logger_test.hpp - description 00005 ------------------- 00006 begin : Mon January 10 2005 00007 copyright : (C) 2005 Peter Soetens 00008 email : peter.soetens@mech.kuleuven.ac.be 00009 00010 *************************************************************************** 00011 * * 00012 * This program is free software; you can redistribute it and/or modify * 00013 * it under the terms of the GNU General Public License as published by * 00014 * the Free Software Foundation; either version 2 of the License, or * 00015 * (at your option) any later version. * 00016 * * 00017 ***************************************************************************/ 00018 00019 00020 #ifndef LOGGERTEST_H 00021 #define LOGGERTEST_H 00022 00023 #include <Logger.hpp> 00024 00025 using namespace RTT; 00026 00027 00028 class LoggerTest 00029 { 00030 public: 00031 Logger* logger; 00032 00033 LoggerTest(){setUp();}; 00034 ~LoggerTest(){tearDown();}; 00035 void setUp(); 00036 void tearDown(); 00037 00038 void testStartStop(); 00039 void testLogEnv(); 00040 void testNewLog(); 00041 void testThreadLog(); 00042 }; 00043 00044 #endif