Salome HOME
Merge from V6_main (04/10/2012)
[modules/med.git] / src / MEDCoupling / Test / MEDCouplingBasicsTest5.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 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __MEDCOUPLINGBASICSTEST5_HXX__
22 #define __MEDCOUPLINGBASICSTEST5_HXX__
23
24 #include "MEDCouplingBasicsTest.hxx"
25
26 #include <map>
27 #include <vector>
28
29 namespace ParaMEDMEM
30 {
31   class DataArrayDouble;
32   class MEDCouplingUMesh;
33   class MEDCouplingFieldDouble;
34   class MEDCouplingMultiFields;
35
36   class MEDCouplingBasicsTest5 : public MEDCouplingBasicsTest
37   {
38     CPPUNIT_TEST_SUITE(MEDCouplingBasicsTest5);
39     CPPUNIT_TEST( testUMeshTessellate2D1 );
40     CPPUNIT_TEST( testIntersect2DMeshesTmp4 );
41     CPPUNIT_TEST( testGetCellIdsCrossingPlane1 );
42     CPPUNIT_TEST( testBuildSlice3D1 );
43     CPPUNIT_TEST( testBuildSlice3DSurf1 );
44     CPPUNIT_TEST( testDataArrayDoubleAdvSetting1 );
45     CPPUNIT_TEST( testDataArrayIntAdvSetting1 );
46     CPPUNIT_TEST( testBuildDescendingConnec2Of3DMesh1 );
47     CPPUNIT_TEST( testAre2DCellsNotCorrectlyOriented1 );
48     CPPUNIT_TEST( testDataArrayAbs1 );
49     CPPUNIT_TEST( testGetValueOn3 );
50     CPPUNIT_TEST( testGetNodeIdsOfCell2 );
51     CPPUNIT_TEST( testRenumberNodesInConn1 );
52     CPPUNIT_TEST( testComputeNeighborsOfCells1 );
53     CPPUNIT_TEST( testCheckButterflyCellsBug1 );
54     CPPUNIT_TEST( testDataArrayIntRange1 );
55     CPPUNIT_TEST( testDataArrayDoubleGetMinMaxPerComponent1 );
56     CPPUNIT_TEST( testDataArrayIntGetHashCode1 );
57     CPPUNIT_TEST( testZipConnectivityPol1 );
58     CPPUNIT_TEST( testConvexEnvelop2D1 );
59     CPPUNIT_TEST( testDataArraySort1 );
60     CPPUNIT_TEST( testPartitionBySpreadZone1 );
61     CPPUNIT_TEST( testGiveCellsWithType1 );
62     CPPUNIT_TEST( testBuildSlice3D2 );
63     CPPUNIT_TEST( testComputeTupleIdsToSelectFromCellIds1 );
64     CPPUNIT_TEST( testComputeSkin1 );
65     CPPUNIT_TEST( testUMeshSetPartOfMySelf2 );
66     CPPUNIT_TEST( testUnPolyze3 );
67     CPPUNIT_TEST( testKrSpatialDiscretization1 );
68     CPPUNIT_TEST( testDuplicateEachTupleNTimes1 );
69     CPPUNIT_TEST_SUITE_END();
70   public:
71     void testUMeshTessellate2D1();
72     void testIntersect2DMeshesTmp4();
73     void testGetCellIdsCrossingPlane1();
74     void testBuildSlice3D1();
75     void testBuildSlice3DSurf1();
76     void testDataArrayDoubleAdvSetting1();
77     void testDataArrayIntAdvSetting1();
78     void testBuildDescendingConnec2Of3DMesh1();
79     void testAre2DCellsNotCorrectlyOriented1();
80     void testDataArrayAbs1();
81     void testGetValueOn3();
82     void testGetNodeIdsOfCell2();
83     void testRenumberNodesInConn1();
84     void testComputeNeighborsOfCells1();
85     void testCheckButterflyCellsBug1();
86     void testDataArrayIntRange1();
87     void testDataArrayDoubleGetMinMaxPerComponent1();
88     void testDataArrayIntGetHashCode1();
89     void testZipConnectivityPol1();
90     void testConvexEnvelop2D1();
91     void testDataArraySort1();
92     void testPartitionBySpreadZone1();
93     void testGiveCellsWithType1();
94     void testBuildSlice3D2();
95     void testComputeTupleIdsToSelectFromCellIds1();
96     void testComputeSkin1();
97     void testUMeshSetPartOfMySelf2();
98     void testUnPolyze3();
99     void testKrSpatialDiscretization1();
100     void testDuplicateEachTupleNTimes1();
101   };
102 }
103
104 #endif