xref: /haiku/src/tests/kits/locale/DateFormatTest.h (revision 427edfcf0ddc74fc461c9355484d33fd4b027b70)
1 /*
2  * Copyright 2014 Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef DATE_FORMAT_TEST_H
6 #define DATE_FORMAT_TEST_H
7 
8 
9 #include <TestCase.h>
10 #include <TestSuite.h>
11 
12 
13 class DateFormatTest: public BTestCase {
14 public:
15 					DateFormatTest();
16 	virtual			~DateFormatTest();
17 
18 			void	TestCustomFormat();
19 			void	TestFormat();
20 			void	TestFormatDate();
21 			void	TestMonthNames();
22 			void	TestDayNames();
23 			void	TestParseDate();
24 			void	TestParseTime();
25 
26 	static	void	AddTests(BTestSuite& suite);
27 };
28 
29 
30 #endif
31