00001 #include <cppunit/TestCaller.h> 00002 #include <cppunit/TestCase.h> 00003 #include <cppunit/TestSuite.h> 00004 00005 #include "rtl.h" 00006 00007 class RtlTest : public CppUnit::TestCase { 00008 protected: 00009 00010 public: 00011 RtlTest(std::string name) : CppUnit::TestCase (name) 00012 {} 00013 00014 virtual void registerTests(CppUnit::TestSuite* suite); 00015 00016 int countTestCases () const; 00017 00018 void setUp (); 00019 void tearDown (); 00020 00021 void testAppend (); 00022 void testClone (); 00023 void testVisitor(); 00024 void testIsCompare(); 00025 void testSetConscripts(); 00026 }; 00027