TestImageOperators.h 805 B

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