/* * CloneUnitTest.hpp * * Created on: Jan 03, 2011 * Author: heber */ #ifndef CLONEUNITTEST_HPP_ #define CLONEUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "stubs/CommonStub.hpp" #include "stubs/CloneStub.hpp" class CloneTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( CloneTest ); CPPUNIT_TEST ( CreationTest ); CPPUNIT_TEST ( IndividualityTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void CreationTest(); void IndividualityTest(); private: Prototype p1; Prototype p2; IPrototype *ip1; IPrototype *ip1_1; IPrototype *ip1_2; IPrototype *ip2; IPrototype *ip2_1; IPrototype *ip2_2; }; #endif /* CLONEUNITTEST_HPP_ */