Salome HOME
Merge from V6_main 13/12/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( testIntersect2DMeshesTmp5 );
70     CPPUNIT_TEST( testDAIBuildUnique1 );
71     CPPUNIT_TEST( testDAIPartitionByDifferentValues1 );
72     CPPUNIT_TEST_SUITE_END();
73   public:
74     void testUMeshTessellate2D1();
75     void testIntersect2DMeshesTmp4();
76     void testGetCellIdsCrossingPlane1();
77     void testBuildSlice3D1();
78     void testBuildSlice3DSurf1();
79     void testDataArrayDoubleAdvSetting1();
80     void testDataArrayIntAdvSetting1();
81     void testBuildDescendingConnec2Of3DMesh1();
82     void testAre2DCellsNotCorrectlyOriented1();
83     void testDataArrayAbs1();
84     void testGetValueOn3();
85     void testGetNodeIdsOfCell2();
86     void testRenumberNodesInConn1();
87     void testComputeNeighborsOfCells1();
88     void testCheckButterflyCellsBug1();
89     void testDataArrayIntRange1();
90     void testDataArrayDoubleGetMinMaxPerComponent1();
91     void testDataArrayIntGetHashCode1();
92     void testZipConnectivityPol1();
93     void testConvexEnvelop2D1();
94     void testDataArraySort1();
95     void testPartitionBySpreadZone1();
96     void testGiveCellsWithType1();
97     void testBuildSlice3D2();
98     void testComputeTupleIdsToSelectFromCellIds1();
99     void testComputeSkin1();
100     void testUMeshSetPartOfMySelf2();
101     void testUnPolyze3();
102     void testKrSpatialDiscretization1();
103     void testDuplicateEachTupleNTimes1();
104     void testIntersect2DMeshesTmp5();
105     void testDAIBuildUnique1();
106     void testDAIPartitionByDifferentValues1();
107   };
108 }
109
110 #endif