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_INTERPOLATIONOPTIONS_HXX__
00021 #define __TU_INTERPOLATIONOPTIONS_HXX__
00022
00023 #include <cppunit/extensions/HelperMacros.h>
00024
00025 #include "InterpKernelTestExport.hxx"
00026 #include "InterpolationOptions.hxx"
00027 #include "MEDMEM_Field.hxx"
00028
00029 namespace INTERP_TEST
00030 {
00031
00036 class INTERPKERNELTEST_EXPORT InterpolationOptionsTest : public CppUnit::TestFixture
00037 {
00038
00039 CPPUNIT_TEST_SUITE( InterpolationOptionsTest );
00040 CPPUNIT_TEST( test_InterpolationOptions );
00041 CPPUNIT_TEST_SUITE_END();
00042
00043
00044 public:
00045 void setUp();
00046
00047 void tearDown();
00048
00049
00050 void test_InterpolationOptions();
00051
00052 private:
00053
00054 };
00055
00056
00057
00058
00059 }
00060
00061
00062
00063 #endif