]> SALOME platform Git repositories - tools/medcoupling.git/blob - src/MEDCoupling/Test/MEDCouplingRemapperTest.hxx
Salome HOME
Merge from V6_main_20120808 08Aug12
[tools/medcoupling.git] / src / MEDCoupling / Test / MEDCouplingRemapperTest.hxx
1 // Copyright (C) 2007-2012  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.
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
20 #ifndef __MEDCOUPLINGREMAPPERTEST_HXX__
21 #define __MEDCOUPLINGREMAPPERTEST_HXX__
22
23 #include <cppunit/extensions/HelperMacros.h>
24
25 #include <map>
26 #include <vector>
27
28 namespace ParaMEDMEM
29 {
30   class MEDCouplingUMesh;
31
32   class MEDCouplingRemapperTest : public CppUnit::TestFixture
33   {
34     CPPUNIT_TEST_SUITE(MEDCouplingRemapperTest);
35     CPPUNIT_TEST( test2DInterpP0P0_1 );
36     CPPUNIT_TEST( test2DInterpP0P0R_1 );
37     CPPUNIT_TEST( test1DInterp_1 );
38     CPPUNIT_TEST( test2DInterpMultiMethods );
39     CPPUNIT_TEST( testMultiDimCombi );
40     CPPUNIT_TEST( testNatureOfField );
41     CPPUNIT_TEST( testExtruded );
42     CPPUNIT_TEST( testExtruded2 );
43     CPPUNIT_TEST( testPrepareEx1 );
44     CPPUNIT_TEST( testPartialTransfer1 );
45     CPPUNIT_TEST_SUITE_END();
46   public:
47     void test2DInterpP0P0_1();
48     void test2DInterpP0P0R_1();
49     void test1DInterp_1();
50     void test2DInterpMultiMethods();
51     void testMultiDimCombi();
52     void testNatureOfField();
53     void testExtruded();
54     void testExtruded2();
55     void testPrepareEx1();
56     void testPartialTransfer1();
57   private:
58     static MEDCouplingUMesh *build1DTargetMesh_2();
59     static MEDCouplingUMesh *build2DTargetMesh_3();
60     static MEDCouplingUMesh *build3DExtrudedUMesh_1(MEDCouplingUMesh *&mesh2D);
61   };
62 }
63
64 #endif