Testgzbinstream.h 802 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * NICE-Core - efficient algebra and computer vision methods
  3. * - libiocompression - An iocompression/template for new NICE libraries
  4. * See file License for license information.
  5. */
  6. #ifndef _TESTBINSTREAM_IOCOMPRESSION_H
  7. #define _TESTBINSTREAM_IOCOMPRESSION_H
  8. #include <cppunit/extensions/HelperMacros.h>
  9. #include <core/basics/gzbinstream.h>
  10. /**
  11. * CppUnit-Testcase.
  12. * Test template...
  13. */
  14. class Testgzbinstream : public CppUnit::TestFixture {
  15. CPPUNIT_TEST_SUITE( Testgzbinstream );
  16. CPPUNIT_TEST( testOperators );
  17. CPPUNIT_TEST_SUITE_END();
  18. private:
  19. public:
  20. void setUp();
  21. void tearDown();
  22. /**
  23. * Constructor / Destructor testing
  24. */
  25. void testConstructor();
  26. /**
  27. * Operator testing
  28. */
  29. void testOperators();
  30. };
  31. #endif // _TESTBINSTREAM_IOCOMPRESSION_H