/* * PairPotential_HarmonicUnitTest.hpp * * Created on: Oct 04, 2012 * Author: heber */ #ifndef PAIRPOTENTIAL_HARMONICUNITTEST_HPP_ #define PAIRPOTENTIAL_HARMONICUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class PairPotential_Harmonic; /********************************************** Test classes **************************************/ class PairPotential_HarmonicTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( PairPotential_HarmonicTest) ; CPPUNIT_TEST ( operatorTest ); CPPUNIT_TEST ( derivativeTest ); CPPUNIT_TEST ( parameter_derivativeTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void operatorTest(); void derivativeTest(); void parameter_derivativeTest(); private: typedef std::vector data_t; data_t input; data_t output; }; #endif /* PAIRPOTENTIAL_HARMONICUNITTEST_HPP_ */