1 /* 2 * Copyright 2017, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Akshay Agarwal <agarwal.akshay.akshay8@gmail.com> 7 */ 8 #ifndef RELATIVE_DATE_TIME_FORMAT_TEST_H 9 #define RELATIVE_DATE_TIME_FORMAT_TEST_H 10 11 12 #include <TestCase.h> 13 #include <TestSuite.h> 14 15 16 class RelativeDateTimeFormatTest: public BTestCase { 17 public: 18 RelativeDateTimeFormatTest(); 19 virtual ~RelativeDateTimeFormatTest(); 20 21 void TestDefault(); 22 void TestFormat(); 23 24 static void AddTests(BTestSuite& suite); 25 }; 26 27 28 #endif 29