TestMorph.h 802 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #ifndef _TESTMORPH_H_
  2. #define _TESTMORPH_H_
  3. #include <cppunit/extensions/HelperMacros.h>
  4. /**
  5. * CppUnit-Testcase.
  6. * Tests for Filter Operations
  7. */
  8. class TestMorph : public CppUnit::TestFixture
  9. {
  10. CPPUNIT_TEST_SUITE( TestMorph );
  11. CPPUNIT_TEST( testRanking );
  12. CPPUNIT_TEST( testMorphological );
  13. CPPUNIT_TEST( testMorphologicalIP );
  14. CPPUNIT_TEST( testRankingWithStructure );
  15. CPPUNIT_TEST( testMorphologicalWithStructure );
  16. CPPUNIT_TEST( testHitAndMiss );
  17. CPPUNIT_TEST_SUITE_END();
  18. private:
  19. public:
  20. void setUp();
  21. void tearDown();
  22. void testRanking();
  23. void testMorphological();
  24. void testMorphologicalIP();
  25. void testRankingWithStructure();
  26. void testMorphologicalWithStructure();
  27. void testHitAndMiss();
  28. };
  29. #endif // _TESTMORPH_H_