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