xref: /haiku/src/tests/kits/app/bcursor/CursorTest.cpp (revision 04171cfc5c10c98b9ba3c7233a271f6165cdd36f)
1 #include "../common.h"
2 #include "BCursorTester.h"
3 
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