/* * RandomNumberDistributionFactoryUnitTest.hpp * * Created on: Jan 03, 2011 * Author: heber */ #ifndef RANDOMNUMBERDISTRIBUTIONFACTORYUNITTEST_HPP_ #define RANDOMNUMBERDISTRIBUTIONFACTORYUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class RandomNumberDistribution; class RandomNumberDistributionFactoryTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( RandomNumberDistributionFactoryTest ); CPPUNIT_TEST ( DistributionTest ); CPPUNIT_TEST ( PrototypeManipulationTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void DistributionTest(); void PrototypeManipulationTest(); private: RandomNumberDistribution * rndA; RandomNumberDistribution * rndA_1; RandomNumberDistribution * rndA_2; RandomNumberDistribution * rndA_3; }; #endif /* RANDOMNUMBERDISTRIBUTIONFACTORYUNITTEST_HPP_ */