/* * ConstantPotentialUnitTest.hpp * * Created on: Oct 04, 2012 * Author: heber */ #ifndef CONSTANTPOTENTIALUNITTEST_HPP_ #define CONSTANTPOTENTIALUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include /********************************************** Test classes **************************************/ class ConstantPotentialTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( ConstantPotentialTest) ; 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: }; #endif /* CONSTANTPOTENTIALUNITTEST_HPP_ */