xref: /haiku/src/tests/kits/locale/LocaleKitTestAddon.cpp (revision 4a850ca730d8282b5b924e49e09b4ba4d6db7f54)
1 /*
2  * Copyright 2014-2021 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 "NumberFormatTest.h"
15 #include "RelativeDateTimeFormatTest.h"
16 #include "StringFormatTest.h"
17 #include "UnicodeCharTest.h"
18 
19 
20 BTestSuite*
21 getTestSuite()
22 {
23 	BTestSuite* suite = new BTestSuite("LocaleKit");
24 
25 	CollatorTest::AddTests(*suite);
26 	DateFormatTest::AddTests(*suite);
27 	DurationFormatTest::AddTests(*suite);
28 	LanguageTest::AddTests(*suite);
29 	NumberFormatTest::AddTests(*suite);
30 	StringFormatTest::AddTests(*suite);
31 	RelativeDateTimeFormatTest::AddTests(*suite);
32 	UnicodeCharTest::AddTests(*suite);
33 
34 	return suite;
35 }
36