Last change
on this file since 031ec24 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:
932 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * tesselation_insideoutsideunittest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Dec 28, 2009
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef TESSELATION_INSIDEOUTSIDEUNITTEST_HPP_
|
---|
9 | #define TESSELATION_INSIDEOUTSIDEUNITTEST_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 |
|
---|
20 | class TesselationInOutsideTest : public CppUnit::TestFixture
|
---|
21 | {
|
---|
22 | CPPUNIT_TEST_SUITE( TesselationInOutsideTest) ;
|
---|
23 | CPPUNIT_TEST ( IsInnerPointTest );
|
---|
24 | CPPUNIT_TEST_SUITE_END();
|
---|
25 |
|
---|
26 | public:
|
---|
27 | void setUp();
|
---|
28 | void tearDown();
|
---|
29 | void IsInnerPointTest();
|
---|
30 |
|
---|
31 | private:
|
---|
32 | class Tesselation *TesselStruct;
|
---|
33 | LinkedNodes Corners;
|
---|
34 | class LinkedCell *LinkedList;
|
---|
35 | };
|
---|
36 |
|
---|
37 |
|
---|
38 | #endif /* TESSELATION_INSIDEOUTSIDEUNITTEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.