Salome HOME
Update copyrights 2014.
[modules/med.git] / src / MEDCoupling / Test / MEDCouplingBasicsTest5.hxx
1 // Copyright (C) 2007-2014  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 __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( testUMeshTessellate2DCurve1 );
41     CPPUNIT_TEST( testIntersect2DMeshesTmp4 );
42     CPPUNIT_TEST( testGetCellIdsCrossingPlane1 );
43     CPPUNIT_TEST( testBuildSlice3D1 );
44     CPPUNIT_TEST( testBuildSlice3DSurf1 );
45     CPPUNIT_TEST( testDataArrayDoubleAdvSetting1 );
46     CPPUNIT_TEST( testDataArrayIntAdvSetting1 );
47     CPPUNIT_TEST( testBuildDescendingConnec2Of3DMesh1 );
48     CPPUNIT_TEST( testAre2DCellsNotCorrectlyOriented1 );
49     CPPUNIT_TEST( testDataArrayAbs1 );
50     CPPUNIT_TEST( testGetValueOn3 );
51     CPPUNIT_TEST( testGetNodeIdsOfCell2 );
52     CPPUNIT_TEST( testRenumberNodesInConn1 );
53     CPPUNIT_TEST( testComputeNeighborsOfCells1 );
54     CPPUNIT_TEST( testCheckButterflyCellsBug1 );
55     CPPUNIT_TEST( testDataArrayIntRange1 );
56     CPPUNIT_TEST( testDataArrayDoubleGetMinMaxPerComponent1 );
57     CPPUNIT_TEST( testDataArrayIntGetHashCode1 );
58     CPPUNIT_TEST( testZipConnectivityPol1 );
59     CPPUNIT_TEST( testConvexEnvelop2D1 );
60     CPPUNIT_TEST( testDataArraySort1 );
61     CPPUNIT_TEST( testPartitionBySpreadZone1 );
62     CPPUNIT_TEST( testGiveCellsWithType1 );
63     CPPUNIT_TEST( testBuildSlice3D2 );
64     CPPUNIT_TEST( testComputeTupleIdsToSelectFromCellIds1 );
65     CPPUNIT_TEST( testComputeSkin1 );
66     CPPUNIT_TEST( testUMeshSetPartOfMySelf2 );
67     CPPUNIT_TEST( testUnPolyze3 );
68     CPPUNIT_TEST( testKrSpatialDiscretization1 );
69     CPPUNIT_TEST( testDuplicateEachTupleNTimes1 );
70     CPPUNIT_TEST( testIntersect2DMeshesTmp5 );
71     CPPUNIT_TEST( testDAIBuildUnique1 );
72     CPPUNIT_TEST( testDAIPartitionByDifferentValues1 );
73     CPPUNIT_TEST( testDAICheckMonotonic1 );
74     CPPUNIT_TEST( testIntersect2DMeshesTmp6 );
75     CPPUNIT_TEST( testDAIBuildSubstractionOptimized1 );
76     CPPUNIT_TEST( testDAIIsStrictlyMonotonic1 );
77     CPPUNIT_TEST( testSimplexize3 );
78     CPPUNIT_TEST_SUITE_END();
79   public:
80     void testUMeshTessellate2D1();
81     void testUMeshTessellate2DCurve1();
82     void testIntersect2DMeshesTmp4();
83     void testGetCellIdsCrossingPlane1();
84     void testBuildSlice3D1();
85     void testBuildSlice3DSurf1();
86     void testDataArrayDoubleAdvSetting1();
87     void testDataArrayIntAdvSetting1();
88     void testBuildDescendingConnec2Of3DMesh1();
89     void testAre2DCellsNotCorrectlyOriented1();
90     void testDataArrayAbs1();
91     void testGetValueOn3();
92     void testGetNodeIdsOfCell2();
93     void testRenumberNodesInConn1();
94     void testComputeNeighborsOfCells1();
95     void testCheckButterflyCellsBug1();
96     void testDataArrayIntRange1();
97     void testDataArrayDoubleGetMinMaxPerComponent1();
98     void testDataArrayIntGetHashCode1();
99     void testZipConnectivityPol1();
100     void testConvexEnvelop2D1();
101     void testDataArraySort1();
102     void testPartitionBySpreadZone1();
103     void testGiveCellsWithType1();
104     void testBuildSlice3D2();
105     void testComputeTupleIdsToSelectFromCellIds1();
106     void testComputeSkin1();
107     void testUMeshSetPartOfMySelf2();
108     void testUnPolyze3();
109     void testKrSpatialDiscretization1();
110     void testDuplicateEachTupleNTimes1();
111     void testIntersect2DMeshesTmp5();
112     void testDAIBuildUnique1();
113     void testDAIPartitionByDifferentValues1();
114     void testDAICheckMonotonic1();
115     void testIntersect2DMeshesTmp6();
116     void testDAIBuildSubstractionOptimized1();
117     void testDAIIsStrictlyMonotonic1();
118     void testSimplexize3();
119   };
120 }
121
122 #endif