Salome HOME
Initiating medtool
[modules/med.git] / src / medtool / src / MEDCoupling / Test / MEDCouplingRemapperTest.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __MEDCOUPLINGREMAPPERTEST_HXX__
22 #define __MEDCOUPLINGREMAPPERTEST_HXX__
23
24 #include <cppunit/extensions/HelperMacros.h>
25
26 #include <map>
27 #include <vector>
28
29 namespace ParaMEDMEM
30 {
31   class MEDCouplingUMesh;
32
33   class MEDCouplingRemapperTest : public CppUnit::TestFixture
34   {
35     CPPUNIT_TEST_SUITE(MEDCouplingRemapperTest);
36     CPPUNIT_TEST( test2DInterpP0P0_1 );
37     CPPUNIT_TEST( test2DInterpP0P0R_1 );
38     CPPUNIT_TEST( test1DInterp_1 );
39     CPPUNIT_TEST( test2DInterpMultiMethods );
40     CPPUNIT_TEST( testMultiDimCombi );
41     CPPUNIT_TEST( testNatureOfField );
42     CPPUNIT_TEST( testExtruded );
43     CPPUNIT_TEST( testExtruded2 );
44     CPPUNIT_TEST( testPrepareEx1 );
45     CPPUNIT_TEST( testPartialTransfer1 );
46     CPPUNIT_TEST( testBugNonRegression1 );
47     CPPUNIT_TEST_SUITE_END();
48   public:
49     void test2DInterpP0P0_1();
50     void test2DInterpP0P0R_1();
51     void test1DInterp_1();
52     void test2DInterpMultiMethods();
53     void testMultiDimCombi();
54     void testNatureOfField();
55     void testExtruded();
56     void testExtruded2();
57     void testPrepareEx1();
58     void testPartialTransfer1();
59     //
60     void testBugNonRegression1();
61   private:
62     static MEDCouplingUMesh *build1DTargetMesh_2();
63     static MEDCouplingUMesh *build2DTargetMesh_3();
64     static MEDCouplingUMesh *build3DExtrudedUMesh_1(MEDCouplingUMesh *&mesh2D);
65   };
66 }
67
68 #endif