ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/test/io/ZipstreamTestCase.hpp
Revision: 2313
Committed: Tue Sep 20 16:22:00 2005 UTC (18 years, 9 months ago) by tim
File size: 751 byte(s)
Log Message:
adding testcase for zipstream

File Contents

# User Rev Content
1 tim 2313 #ifndef TEST_IFSTRSTREAMTESTCASE_HPP
2     #define TEST_IFSTRSTREAMTESTCASE_HPP
3    
4     #include <cppunit/extensions/HelperMacros.h>
5    
6    
7    
8     class ZipstreamTeseCase : public CPPUNIT_NS::TestFixture {
9    
10     CPPUNIT_TEST_SUITE( ZipstreamTeseCase);
11    
12    
13     CPPUNIT_TEST(test_buffer_to_buffer);
14     CPPUNIT_TEST(test_wbuffer_to_wbuffer);
15     CPPUNIT_TEST(test_string_string);
16     CPPUNIT_TEST(test_wstring_wstring);
17     CPPUNIT_TEST(test_file_file);
18     CPPUNIT_TEST(test_crc);
19     CPPUNIT_TEST_SUITE_END();
20    
21     public:
22    
23    
24     void test_buffer_to_buffer();
25     void test_wbuffer_to_wbuffer();
26     void test_string_string();
27     void test_wstring_wstring();
28     void test_file_file();
29     void test_crc();
30    
31     };
32    
33     #endif //TEST_IFSTRSTREAMTESTCASE_HPP