/* * CreatorUnitTest.hpp * * Created on: Jan 03, 2011 * Author: heber */ #ifndef CREATORUNITTEST_HPP_ #define CREATORUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class CreatorTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( CreatorTest ); CPPUNIT_TEST ( CreationTest ); CPPUNIT_TEST ( IndividualityTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void CreationTest(); void IndividualityTest(); private: }; #endif /* CREATORUNITTEST_HPP_ */