xref: /haiku/src/tests/kits/shared/SharedTestAddon.cpp (revision 220d04022750f40f8bac8f01fa551211e28d04f2)
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