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