Salome HOME
220da14bc71e8758be1f2de53ccaf32418d1af4c
[tools/medcoupling.git] / src / INTERP_KERNELTest / UnitTetraIntersectionBaryTest.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
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_SUITE_END();
56   public:
57     void test_UnitTetraIntersectionBary_1();
58     void test_UnitTetraIntersectionBary_2();
59     void test_UnitTetraIntersectionBary_3();
60     void test_UnitTetraIntersectionBary_4();
61     void test_UnitTetraIntersectionBary_5();
62     void test_UnitTetraIntersectionBary_6();
63     void test_UnitTetraIntersectionBary_7();
64     void test_UnitTetraIntersectionBary_8();
65     void test_UnitTetraIntersectionBary_9();
66     void test_UnitTetraIntersectionBary_10();
67     void test_UnitTetraIntersectionBary_11();
68     void test_UnitTetraIntersectionBary_12();
69     void test_UnitTetraIntersectionBary_13();
70     void test_TetraAffineTransform_reverseApply();
71     void test_barycentric_coords();
72   };
73 }
74
75 #endif