1 #include "../common.h" 2 #include "BCursorTester.h" 3 CursorTestSuite()4 CppUnit::Test* CursorTestSuite() 5 { 6 CppUnit::TestSuite *testSuite = new CppUnit::TestSuite(); 7 8 testSuite->addTest(BCursorTester::Suite()); 9 10 return testSuite; 11 } 12 13