Testbinstream.h 729 B

123456789101112131415161718192021222324252627282930313233
  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. /**
  10. * CppUnit-Testcase.
  11. * Test template...
  12. */
  13. class Testbinstream : public CppUnit::TestFixture {
  14. CPPUNIT_TEST_SUITE( Testbinstream );
  15. CPPUNIT_TEST( testOperators );
  16. CPPUNIT_TEST( testOperatorsGz );
  17. CPPUNIT_TEST_SUITE_END();
  18. private:
  19. public:
  20. void setUp();
  21. void tearDown();
  22. void testOperators();
  23. void testOperatorsGz();
  24. void testSomething();
  25. };
  26. #endif // _TESTBINSTREAM_IOCOMPRESSION_H