123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef _TESTBINSTREAM_IOCOMPRESSION_H
- #define _TESTBINSTREAM_IOCOMPRESSION_H
- #include <cppunit/extensions/HelperMacros.h>
- #include <core/basics/gzbinstream.h>
- class Testgzbinstream : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( Testgzbinstream );
- CPPUNIT_TEST( testOperators );
- CPPUNIT_TEST_SUITE_END();
-
- private:
-
- public:
- void setUp();
- void tearDown();
-
-
- void testConstructor();
-
-
- void testOperators();
- };
- #endif
|