Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __TU_POINTLOCATOR_HXX__
00021 #define __TU_POINTLOCATOR_HXX__
00022
00023 #include "InterpKernelTestExport.hxx"
00024 #include "PointLocator.hxx"
00025
00026 #include <cppunit/extensions/HelperMacros.h>
00027
00028 namespace INTERP_TEST
00029 {
00030
00035 class INTERPKERNELTEST_EXPORT PointLocatorTest : public CppUnit::TestFixture
00036 {
00037
00038 CPPUNIT_TEST_SUITE( PointLocatorTest );
00039 CPPUNIT_TEST( test_PointLocator );
00040 CPPUNIT_TEST( test_PointLocatorInSimplex );
00041 CPPUNIT_TEST_SUITE_END();
00042
00043
00044 public:
00045 void setUp();
00046
00047 void tearDown();
00048
00049
00050 void test_PointLocator();
00051 void test_PointLocatorInSimplex();
00052
00053 };
00054
00055
00056
00057
00058 }
00059
00060 #endif