#include #include #include #include #include #include #include AVLTreeMapTest::AVLTreeMapTest(std::string name) : BTestCase(name) { } CppUnit::Test* AVLTreeMapTest::Suite() { CppUnit::TestSuite *suite = new CppUnit::TestSuite("AVLTreeMap"); suite->addTest(new CppUnit::TestCaller( "SinglyLinkedList::User Strategy Test (default next parameter)", &AVLTreeMapTest::Test1)); return suite; } //! Test1 void AVLTreeMapTest::Test1() { }