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
20BTestSuite*
21getTestSuite()
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