/* * InfoUnitTest.hpp * * Created on: Nov 25, 2009 * Author: heber */ #ifndef INFOUNITTEST_HPP_ #define INFOUNITTEST_HPP_ #include #include "UIElements/Menu/MenuDescription.hpp" /********************************************** Test classes **************************************/ class MenuDescriptionTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( MenuDescriptionTest) ; CPPUNIT_TEST ( SensibilityTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void SensibilityTest(); private: MenuDescription md; }; #endif /* INFOUNITTEST_HPP_ */