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