Salome HOME
752c0508cf0b4c532f813331cfba039fa336dd9e
[tools/medcoupling.git] / src / INTERP_KERNELTest / TransformedTriangleIntersectTest.hxx
1 //  Copyright (C) 2007-2008  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 #ifndef __TU_TRANSFORMED_TRIANGLE_INTERSECT_HXX__
20 #define __TU_TRANSFORMED_TRIANGLE_INTERSECT_HXX__
21
22 #include <cppunit/extensions/HelperMacros.h>
23 #include "../TransformedTriangle.hxx"
24
25 namespace INTERP_TEST
26 {
27
28   class TransformedTriangleIntersectTest : public CppUnit::TestFixture
29   {
30
31     CPPUNIT_TEST_SUITE( TransformedTriangleIntersectTest );
32
33     CPPUNIT_TEST( testTriangle1 );
34     CPPUNIT_TEST( testTriangle2 );
35     CPPUNIT_TEST( testTriangle3 );
36     CPPUNIT_TEST( testTriangle4 );
37     CPPUNIT_TEST( testTriangle5 );
38     CPPUNIT_TEST( testTriangle6 );
39     CPPUNIT_TEST( testTriangle7 );
40     CPPUNIT_TEST( testTriangle8 );
41     CPPUNIT_TEST( testTriangle9 );
42     CPPUNIT_TEST( testTriangle10 );
43     CPPUNIT_TEST( testTriangle11 );
44     CPPUNIT_TEST( testTriangle12 );
45     CPPUNIT_TEST( testTriangle13 );
46
47     CPPUNIT_TEST_SUITE_END();
48
49     typedef INTERP_KERNEL::TransformedTriangle::TriSegment TriSegment;
50     typedef INTERP_KERNEL::TransformedTriangle::DoubleProduct DoubleProduct;
51
52   public:
53
54     void testTriangle1();
55   
56     void testTriangle2();
57
58     void testTriangle3();
59
60     void testTriangle4();
61
62     void testTriangle5();
63
64     void testTriangle6();
65
66     void testTriangle7();
67
68     void testTriangle8();
69
70     void testTriangle9();
71   
72     void testTriangle10();
73   
74     void testTriangle11();
75   
76     void testTriangle12();
77
78     void testTriangle13();
79
80   private:
81  
82   };
83
84 }
85
86
87
88
89
90
91 #endif