Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / INTERP_KERNELTest / UnitTetraIntersectionBaryTest.hxx
1 // Copyright (C) 2007-2021  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
20 // File      : UnitTetraIntersectionBaryTests.hxx
21 // Created   : Thu Nov  6 17:11:27 2008
22 // Author    : Edward AGAPOV (eap)
23 //
24 #ifndef __UNITTETRAINTERSECTIONBARYTEST_HXX__
25 #define __UNITTETRAINTERSECTIONBARYTEST_HXX__
26
27 #include <cppunit/extensions/HelperMacros.h>
28
29 #include "InterpKernelTestExport.hxx"
30
31 namespace INTERP_TEST
32 {
33   /**
34    * \brief Test suite testing UnitTetraIntersectionBary class.
35    *
36    */
37   class INTERPKERNELTEST_EXPORT UnitTetraIntersectionBaryTest : public CppUnit::TestFixture
38   {
39     CPPUNIT_TEST_SUITE( UnitTetraIntersectionBaryTest );
40     CPPUNIT_TEST( test_UnitTetraIntersectionBary_13 );
41     CPPUNIT_TEST( test_UnitTetraIntersectionBary_12 );
42     CPPUNIT_TEST( test_UnitTetraIntersectionBary_1 );
43     CPPUNIT_TEST( test_UnitTetraIntersectionBary_2 );
44     CPPUNIT_TEST( test_UnitTetraIntersectionBary_3 );
45     CPPUNIT_TEST( test_UnitTetraIntersectionBary_4 );
46     CPPUNIT_TEST( test_UnitTetraIntersectionBary_5 );
47     CPPUNIT_TEST( test_UnitTetraIntersectionBary_6 );
48     CPPUNIT_TEST( test_UnitTetraIntersectionBary_7 );
49     CPPUNIT_TEST( test_UnitTetraIntersectionBary_8 );
50     CPPUNIT_TEST( test_UnitTetraIntersectionBary_9 );
51     CPPUNIT_TEST( test_UnitTetraIntersectionBary_10 );
52     CPPUNIT_TEST( test_UnitTetraIntersectionBary_11 );
53     CPPUNIT_TEST( test_TetraAffineTransform_reverseApply );
54     CPPUNIT_TEST( test_barycentric_coords );
55     CPPUNIT_TEST( test_cuboid_mapped_coords_3D );
56     CPPUNIT_TEST( test_quad_mapped_coords_2D );
57     CPPUNIT_TEST_SUITE_END();
58   public:
59     void test_UnitTetraIntersectionBary_1();
60     void test_UnitTetraIntersectionBary_2();
61     void test_UnitTetraIntersectionBary_3();
62     void test_UnitTetraIntersectionBary_4();
63     void test_UnitTetraIntersectionBary_5();
64     void test_UnitTetraIntersectionBary_6();
65     void test_UnitTetraIntersectionBary_7();
66     void test_UnitTetraIntersectionBary_8();
67     void test_UnitTetraIntersectionBary_9();
68     void test_UnitTetraIntersectionBary_10();
69     void test_UnitTetraIntersectionBary_11();
70     void test_UnitTetraIntersectionBary_12();
71     void test_UnitTetraIntersectionBary_13();
72     void test_TetraAffineTransform_reverseApply();
73     void test_barycentric_coords();
74     void test_cuboid_mapped_coords_3D();
75     void test_quad_mapped_coords_2D();
76   };
77 }
78
79 #endif