/* * LinkedCellUnitTest.hpp * * Created on: Nov 14, 2011 * Author: heber */ #ifndef LINKEDCELLUNITTEST_HPP_ #define LINKEDCELLUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include namespace LinkedCell { class LinkedCell; } /********************************************** Test classes **************************************/ class LinkedCelltest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( LinkedCelltest) ; CPPUNIT_TEST ( adddeletePointTest ); CPPUNIT_TEST ( ListTest ); CPPUNIT_TEST ( IndexTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void adddeletePointTest(); void ListTest(); void IndexTest(); private: LinkedCell::tripleIndex indices; LinkedCell::LinkedCell *cell; }; #endif /* LINKEDCELLUNITTEST_HPP_ */