1 /* 2 * Copyright 2014 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef DURATION_FORMAT_TEST_H 6 #define DURATION_FORMAT_TEST_H 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class DurationFormatTest: public BTestCase { 14 public: 15 DurationFormatTest(); 16 virtual ~DurationFormatTest(); 17 18 void TestDefault(); 19 void TestDuration(); 20 void TestTimeUnit(); 21 22 static void AddTests(BTestSuite& suite); 23 }; 24 25 26 #endif 27