/* * MenuDescription_ActionRegistry_ConsistencyUnitTest.hpp * * Created on: Nov 25, 2009 * Author: heber */ #ifndef MENUDESCRIPTION_ACTIONREGISTRY_CONSISTENCYUNITTEST_HPP_ #define MENUDESCRIPTION_ACTIONREGISTRY_CONSISTENCYUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "UIElements/Menu/MenuDescription.hpp" /********************************************** Test classes **************************************/ class MenuDescription_ActionRegistry_ConsistencyTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( MenuDescription_ActionRegistry_ConsistencyTest) ; CPPUNIT_TEST ( ConsistencyCheck ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void ConsistencyCheck(); private: MenuDescription md; }; #endif /* MENUDESCRIPTION_ACTIONREGISTRY_CONSISTENCYUNITTEST_HPP_ */