repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / tests / kits / locale / LocaleKitTestAddon.cpp
blob01ea7d21449b8c5af6b00fdabe2b88adf35ea1e4
1 /*
2 * Copyright 2014 Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <TestSuite.h>
8 #include <TestSuiteAddon.h>
10 #include "CollatorTest.h"
11 #include "DateFormatTest.h"
12 #include "DurationFormatTest.h"
13 #include "LanguageTest.h"
14 #include "MessageFormatTest.h"
15 #include "RelativeDateTimeFormatTest.h"
16 #include "UnicodeCharTest.h"
19 BTestSuite*
20 getTestSuite()
22 BTestSuite* suite = new BTestSuite("LocaleKit");
24 CollatorTest::AddTests(*suite);
25 DateFormatTest::AddTests(*suite);
26 DurationFormatTest::AddTests(*suite);
27 LanguageTest::AddTests(*suite);
28 MessageFormatTest::AddTests(*suite);
29 RelativeDateTimeFormatTest::AddTests(*suite);
30 UnicodeCharTest::AddTests(*suite);
32 return suite;