Salome HOME
Merge from BR_V5_DEV 16Feb09
[tools/medcoupling.git] / src / INTERP_KERNELTest / CppUnitTest.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_TEST_CPPUNIT_HXX__
20 #define __TU_TEST_CPPUNIT_HXX__
21
22 #include <cppunit/extensions/HelperMacros.h>
23
24 /**
25  * \brief Class tested by TestBogusClass : not very useful
26  */
27 class BogusClass {
28   friend class TestBogusClass;
29
30 public:
31   BogusClass(double _x) : x(_x) {;} 
32  
33   double getX() { return x; }
34
35 private: 
36   double x;
37 };
38   
39 /**
40  * \brief Class used to figure out CppUnit : not very useful
41  *
42  */
43 class TestBogusClass : public CppUnit::TestFixture
44 {
45
46   CPPUNIT_TEST_SUITE( TestBogusClass );
47   CPPUNIT_TEST( test1 );
48   CPPUNIT_TEST( test2 );
49   CPPUNIT_TEST_SUITE_END();
50
51 public:
52   void setUp() {
53     obj = new BogusClass(3.14);
54   }
55
56   void tearDown() {
57     delete obj;
58   }
59
60   void test1() {
61     // test something
62     CPPUNIT_ASSERT(obj->x == 3.14);
63     CPPUNIT_ASSERT(obj->getX() == obj->x);
64   }
65
66   void test2() {
67     // test something else
68     obj->x += 2.6;
69     CPPUNIT_ASSERT(obj->getX() > 3.14);
70   }
71
72 private:
73   BogusClass* obj;
74
75 };
76
77
78
79
80
81
82
83
84 #endif