xref: /haiku/src/tests/kits/shared/SharedTestAddon.cpp (revision 90c3b9bf9fe633e4c6a59d42c11c3f523183c553)
1 /*
2  * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <TestSuite.h>
8 #include <TestSuiteAddon.h>
9 
10 #include "CalendarViewTest.h"
11 #include "GeolocationTest.h"
12 #include "NaturalCompareTest.h"
13 
14 
15 BTestSuite*
16 getTestSuite()
17 {
18 	BTestSuite* suite = new BTestSuite("Shared");
19 
20 	CalendarViewTest::AddTests(*suite);
21 	GeolocationTest::AddTests(*suite);
22 	NaturalCompareTest::AddTests(*suite);
23 
24 	return suite;
25 }
26