xref: /haiku/src/tests/kits/locale/LocaleKitTestAddon.cpp (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2014 Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <TestSuite.h>
8 #include <TestSuiteAddon.h>
9 
10 #include "CollatorTest.h"
11 #include "DateFormatTest.h"
12 #include "DurationFormatTest.h"
13 #include "LanguageTest.h"
14 #include "RelativeDateTimeFormatTest.h"
15 #include "StringFormatTest.h"
16 #include "UnicodeCharTest.h"
17 
18 
19 BTestSuite*
20 getTestSuite()
21 {
22 	BTestSuite* suite = new BTestSuite("LocaleKit");
23 
24 	CollatorTest::AddTests(*suite);
25 	DateFormatTest::AddTests(*suite);
26 	DurationFormatTest::AddTests(*suite);
27 	LanguageTest::AddTests(*suite);
28 	StringFormatTest::AddTests(*suite);
29 	RelativeDateTimeFormatTest::AddTests(*suite);
30 	UnicodeCharTest::AddTests(*suite);
31 
32 	return suite;
33 }
34