/* * tesselationunittest.hpp * * Created on: Aug 26, 2009 * Author: heber */ #ifndef TESSELATIONUNITTEST_HPP_ #define TESSELATIONUNITTEST_HPP_ /*********************************************** includes ***********************************/ #include #include "linkedcell.hpp" #include "tesselation.hpp" /********************************************** Test classes **************************************/ class TesselationTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( TesselationTest) ; CPPUNIT_TEST ( IsInnerPointTest ); CPPUNIT_TEST ( GetAllTrianglesTest ); CPPUNIT_TEST ( ContainmentTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void IsInnerPointTest(); void GetAllTrianglesTest(); void ContainmentTest(); private: class Tesselation *TesselStruct; LinkedNodes Corners; class LinkedCell *LinkedList; }; #endif /* TESSELATIONUNITTEST_HPP_ */