vfs: check userland buffers before reading them.
[haiku.git] / src / tests / kits / locale / DateFormatTest.h
blob6217bc85256d9b3dc2285df8b078a2ee63bd4ec0
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
9 #include <TestCase.h>
10 #include <TestSuite.h>
13 class DateFormatTest: public BTestCase {
14 public:
15 DateFormatTest();
16 virtual ~DateFormatTest();
18 void TestCustomFormat();
19 void TestFormat();
20 void TestFormatDate();
21 void TestMonthNames();
22 void TestDayNames();
23 void TestParseDate();
24 void TestParseTime();
26 static void AddTests(BTestSuite& suite);
30 #endif