| 1 | 
#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 |