Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / INTERP_KERNELTest / TransformedTriangleTest.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_HXX__
20 #define __TU_TRANSFORMED_TRIANGLE_HXX__
21
22 #include <cppunit/extensions/HelperMacros.h>
23 #include "../TransformedTriangle.hxx"
24
25 #define ERR_TOL 1.0e-8
26
27 using INTERP_KERNEL::TransformedTriangle;
28
29 namespace INTERP_TEST
30 {
31
32   /**
33    * \brief Test suite testing some of the low level methods of TransformedTriangle.
34    *
35    */
36   class TransformedTriangleTest : public CppUnit::TestFixture
37   {
38
39     CPPUNIT_TEST_SUITE( TransformedTriangleTest );
40     CPPUNIT_TEST( test_constructor );
41     CPPUNIT_TEST( test_calcUnstableC );
42     CPPUNIT_TEST( test_calcUnstableT );
43     //removed because the test fails to enter the desired code branch
44  //   CPPUNIT_TEST( test_calcStableC_Consistency );
45     CPPUNIT_TEST_SUITE_END();
46
47     typedef INTERP_KERNEL::TransformedTriangle::TriSegment TriSegment;
48     typedef INTERP_KERNEL::TransformedTriangle::DoubleProduct DoubleProduct;
49
50   public:
51     void setUp();
52
53     void tearDown();
54
55     // tests
56     void test_constructor();
57
58     void test_calcUnstableC(); 
59
60     void test_calcUnstableT();
61
62     void test_calcStableC_Consistency();
63
64     double p1[3], q1[3], r1[3];
65     double hp1, hq1, hr1;
66     double Hp1, Hq1, Hr1;
67
68     double p2[3], q2[3], r2[3];
69     double hp2, hq2, hr2;
70     double Hp2, Hq2, Hr2;
71
72     double stable_c2[24];
73   
74   private:
75     TransformedTriangle* tri1;
76     TransformedTriangle* tri2;
77
78   };
79
80
81
82
83 }
84
85
86
87 #endif