Salome HOME
e0e8429959d3b7469afe708dc09d38266a1583cd
[modules/med.git] / src / MEDLoader / Test / MEDLoaderTest.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 __MEDLOADERTEST_HXX__
22 #define __MEDLOADERTEST_HXX__
23
24 #include <cppunit/extensions/HelperMacros.h>
25
26 namespace ParaMEDMEM
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     CPPUNIT_TEST_SUITE_END();
57   public:
58     void testMesh1DRW();
59     void testMesh2DCurveRW();
60     void testMesh2DRW();
61     void testMesh3DSurfRW();
62     void testMesh3DRW();
63     void testFieldRW1();
64     void testFieldRW2();
65     void testFieldRW3();
66     void testMultiMeshRW1();
67     void testFieldProfilRW1();
68     void testFieldNodeProfilRW1();
69     void testFieldNodeProfilRW2();
70     void testFieldGaussRW1();
71     void testFieldGaussNERW1();
72     void testLittleStrings1();
73     void testSplitIntoNameAndUnit1();
74     void testMesh3DSurfShuffleRW();
75     void testFieldShuffleRW1();
76     void testMultiFieldShuffleRW1();
77     void testWriteUMeshesRW1();
78     void testMixCellAndNodesFieldRW1();
79     void testGetAllFieldNamesRW1();
80   private:
81     MEDCouplingUMesh *build1DMesh_1();
82     MEDCouplingUMesh *build2DCurveMesh_1();
83     MEDCouplingUMesh *build2DMesh_1();
84     MEDCouplingUMesh *build2DMesh_2();
85     MEDCouplingUMesh *build3DSurfMesh_1();
86     MEDCouplingUMesh *build3DMesh_1();
87     MEDCouplingUMesh *build3DMesh_2();
88     MEDCouplingFieldDouble *buildVecFieldOnCells_1();
89     MEDCouplingFieldDouble *buildVecFieldOnNodes_1();
90     MEDCouplingFieldDouble *buildVecFieldOnGauss_1();
91     MEDCouplingFieldDouble *buildVecFieldOnGaussNE_1();
92   };
93 }
94
95 #endif