xref: /haiku/src/tests/kits/shared/SharedTestAddon.cpp (revision 372a66634410cf0450e426716c14ad42d40c0da4)
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 "NaturalCompareTest.h"
11 
12 
13 BTestSuite*
14 getTestSuite()
15 {
16 	BTestSuite* suite = new BTestSuite("Shared");
17 
18 	NaturalCompareTest::AddTests(*suite);
19 
20 	return suite;
21 }
22