/* * periodentafelTest.hpp * * Created on: May 18, 2010 * Author: heber */ #ifndef ANALYSISBONDSUNITTEST_HPP_ #define ANALYSISBONDSUNITTEST_HPP_ #include class element; class periodentafel; /********************************************** Test classes **************************************/ class periodentafelTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( periodentafelTest) ; CPPUNIT_TEST ( AddRemoveTest ); CPPUNIT_TEST ( LoadStoreTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void AddRemoveTest(); void LoadStoreTest(); private: const element *hydrogen; const element *carbon; periodentafel *tafel; }; #endif /* ANALYSISBONDSUNITTEST_HPP_ */