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