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