/* * ActionRegistryUnitTest.hpp * * Created on: Dec 15, 2010 * Author: heber */ #ifndef ACTIONREGISTRYUNITTEST_HPP_ #define ACTIONREGISTRYUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /********************************************** Test classes **************************************/ class ActionRegistryTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ActionRegistryTest) ; CPPUNIT_TEST ( CheckDoublyUsedShortforms ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void CheckDoublyUsedShortforms(); private: }; #endif /* ACTIONREGISTRYUNITTEST_HPP_ */