xref: /haiku/src/tests/kits/storage/DataIOTest.h (revision e1c4049fed1047bdb957b0529e1921e97ef94770)
1 // DataIOTest.h
2 
3 #ifndef __sk_data_io_test_h__
4 #define __sk_data_io_test_h__
5 
6 #include <cppunit/TestCaller.h>
7 #include <cppunit/TestSuite.h>
8 
9 #include <StorageDefs.h>
10 #include <SupportDefs.h>
11 
12 #include "BasicTest.h"
13 
14 class DataIOTest : public BasicTest
15 {
16 public:
17 	static CppUnit::Test* Suite();
18 
19 	void BufferedDataIOTest();
20 };
21 
22 
23 #endif	// __sk_data_io_test_h__
24