Salome HOME
Remapper: PointLocator method does not make sense for srcMeshDim=2, trgtMeshDim=3...
[tools/medcoupling.git] / src / MEDLoader / Test / MEDLoaderTest.hxx
1 // Copyright (C) 2007-2019  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 __MEDLOADERTEST_HXX__
22 #define __MEDLOADERTEST_HXX__
23
24 #include <cppunit/extensions/HelperMacros.h>
25
26 namespace MEDCoupling
27 {
28   class MEDCouplingUMesh;
29   class MEDCouplingFieldDouble;
30
31   class MEDLoaderTest : public CppUnit::TestFixture
32   {
33     CPPUNIT_TEST_SUITE(MEDLoaderTest);
34     CPPUNIT_TEST( testMesh1DRW );
35     CPPUNIT_TEST( testMesh2DCurveRW );
36     CPPUNIT_TEST( testMesh2DRW );
37     CPPUNIT_TEST( testMesh3DSurfRW );
38     CPPUNIT_TEST( testMesh3DRW );
39     CPPUNIT_TEST( testFieldRW1 );
40     CPPUNIT_TEST( testFieldRW2 );
41     CPPUNIT_TEST( testFieldRW3 );
42     CPPUNIT_TEST( testMultiMeshRW1 );
43     CPPUNIT_TEST( testFieldProfilRW1 );
44     CPPUNIT_TEST( testFieldNodeProfilRW1 );
45     CPPUNIT_TEST( testFieldNodeProfilRW2 );
46     CPPUNIT_TEST( testFieldGaussRW1 );
47     CPPUNIT_TEST( testFieldGaussNERW1 );
48     CPPUNIT_TEST( testLittleStrings1 );
49     CPPUNIT_TEST( testSplitIntoNameAndUnit1 );
50     CPPUNIT_TEST( testMesh3DSurfShuffleRW );
51     CPPUNIT_TEST( testFieldShuffleRW1 );
52     CPPUNIT_TEST( testMultiFieldShuffleRW1 );
53     CPPUNIT_TEST( testWriteUMeshesRW1 );
54     CPPUNIT_TEST( testMixCellAndNodesFieldRW1 );
55     CPPUNIT_TEST( testGetAllFieldNamesRW1 );
56
57     // Previously in ParaMEDMEM:
58     CPPUNIT_TEST(testMEDLoaderRead1);
59     CPPUNIT_TEST(testMEDLoaderPolygonRead);
60     CPPUNIT_TEST(testMEDLoaderPolyhedronRead);
61
62     CPPUNIT_TEST_SUITE_END();
63   public:
64     void testMesh1DRW();
65     void testMesh2DCurveRW();
66     void testMesh2DRW();
67     void testMesh3DSurfRW();
68     void testMesh3DRW();
69     void testFieldRW1();
70     void testFieldRW2();
71     void testFieldRW3();
72     void testMultiMeshRW1();
73     void testFieldProfilRW1();
74     void testFieldNodeProfilRW1();
75     void testFieldNodeProfilRW2();
76     void testFieldGaussRW1();
77     void testFieldGaussNERW1();
78     void testLittleStrings1();
79     void testSplitIntoNameAndUnit1();
80     void testMesh3DSurfShuffleRW();
81     void testFieldShuffleRW1();
82     void testMultiFieldShuffleRW1();
83     void testWriteUMeshesRW1();
84     void testMixCellAndNodesFieldRW1();
85     void testGetAllFieldNamesRW1();
86
87     void testMEDLoaderRead1();
88     void testMEDLoaderPolygonRead();
89     void testMEDLoaderPolyhedronRead();
90   private:
91     MEDCouplingUMesh *build1DMesh_1();
92     MEDCouplingUMesh *build2DCurveMesh_1();
93     MEDCouplingUMesh *build2DMesh_1();
94     MEDCouplingUMesh *build2DMesh_2();
95     MEDCouplingUMesh *build3DSurfMesh_1();
96     MEDCouplingUMesh *build3DMesh_1();
97     MEDCouplingUMesh *build3DMesh_2();
98     MEDCouplingFieldDouble *buildVecFieldOnCells_1();
99     MEDCouplingFieldDouble *buildVecFieldOnNodes_1();
100     MEDCouplingFieldDouble *buildVecFieldOnGauss_1();
101     MEDCouplingFieldDouble *buildVecFieldOnGaussNE_1();
102
103   };
104 }
105
106 #endif