source: molecuilder/src/unittests/tesselationunittest.hpp@ e6fe8a

Last change on this file since e6fe8a was eda56a, checked in by Frederik Heber <heber@…>, 16 years ago

Changes to FindClosest...ToVector() and use of ..Map,..Set,..List defines in tesselation.cpp.

  • Property mode set to 100644
File size: 934 bytes
Line 
1/*
2 * tesselationunittest.hpp
3 *
4 * Created on: Aug 26, 2009
5 * Author: heber
6 */
7
8#ifndef TESSELATIONUNITTEST_HPP_
9#define TESSELATIONUNITTEST_HPP_
10
11/*********************************************** includes ***********************************/
12
13#include <cppunit/extensions/HelperMacros.h>
14
15#include "linkedcell.hpp"
16#include "tesselation.hpp"
17
18/********************************************** Test classes **************************************/
19
20class TesselationTest : public CppUnit::TestFixture
21{
22 CPPUNIT_TEST_SUITE( TesselationTest) ;
23 CPPUNIT_TEST ( GetAllTrianglesTest );
24 CPPUNIT_TEST ( ContainmentTest );
25 CPPUNIT_TEST_SUITE_END();
26
27public:
28 void setUp();
29 void tearDown();
30 void GetAllTrianglesTest();
31 void ContainmentTest();
32
33
34private:
35 class Tesselation *TesselStruct;
36 LinkedNodes Corners;
37 class LinkedCell *LinkedList;
38};
39
40
41
42#endif /* TESSELATIONUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.