00001 /*************************************************************************** 00002 tag: Peter Soetens Mon Jan 10 15:59:18 CET 2005 logger_test.hpp 00003 00004 dev_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 DEVTEST_H 00021 #define DEVTEST_H 00022 00023 class DevTest 00024 { 00025 public: 00026 DevTest(){ setUp(); }; 00027 ~DevTest(){ tearDown(); }; 00028 void setUp(); 00029 void tearDown(); 00030 00031 void testClasses(); 00032 void testNaming(); 00033 }; 00034 00035 #endif