xref: /haiku/src/tests/system/kernel/util/AVLTreeMapTest.cpp (revision 77b1fd224322628748a663de467af3775a474690)
1 #include <AVLTreeMapTest.h>
2 #include <cppunit/Test.h>
3 #include <cppunit/TestCaller.h>
4 #include <cppunit/TestSuite.h>
5 #include <stdio.h>
6 #include <TestUtils.h>
7 
8 #include <AVLTreeMap.h>
9 
AVLTreeMapTest(std::string name)10 AVLTreeMapTest::AVLTreeMapTest(std::string name)
11 	: BTestCase(name)
12 {
13 }
14 
15 CppUnit::Test*
Suite()16 AVLTreeMapTest::Suite()
17 {
18 	CppUnit::TestSuite *suite = new CppUnit::TestSuite("AVLTreeMap");
19 
20 	suite->addTest(new CppUnit::TestCaller<AVLTreeMapTest>(
21 		"SinglyLinkedList::User Strategy Test (default next parameter)",
22 		&AVLTreeMapTest::Test1));
23 
24 	return suite;
25 }
26 
27 //! Test1
28 void
Test1()29 AVLTreeMapTest::Test1()
30 {
31 }
32 
33