1 /* 2 * Copyright 2021 Haiku, Inc. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef NUMBER_FORMAT_TEST_H 6 #define NUMBER_FORMAT_TEST_H 7 8 9 #include <TestCase.h> 10 #include <TestSuite.h> 11 12 13 class NumberFormatTest: public BTestCase { 14 public: 15 NumberFormatTest(); 16 virtual ~NumberFormatTest(); 17 18 void TestPercentTurkish(); 19 void TestPercentEnglish(); 20 void TestPercentGerman(); 21 22 static void AddTests(BTestSuite& suite); 23 24 private: 25 void _TestGeneralPercent(const char* languageCode, 26 const char* expected); 27 }; 28 29 30 #endif 31