Salome HOME
580f7daebcf318f4deed4509c0af7cf261a72446
[modules/med.git] / src / INTERP_KERNELTest / ExprEvalInterpTest.hxx
1 // Copyright (C) 2007-2013  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 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef _EXPREVALINTERPTEST_HXX_
22 #define _EXPREVALINTERPTEST_HXX_
23
24 #include <cppunit/extensions/HelperMacros.h>
25
26 #include "InterpKernelTestExport.hxx"
27
28 namespace INTERP_TEST
29 {
30   class INTERPKERNELTEST_EXPORT ExprEvalInterpTest : public CppUnit::TestFixture
31   {
32     CPPUNIT_TEST_SUITE( ExprEvalInterpTest );
33     CPPUNIT_TEST( testBuildStringFromFortran );
34     CPPUNIT_TEST( testDeleteWhiteSpaces );
35     CPPUNIT_TEST( testInterpreter0 );
36     CPPUNIT_TEST( testInterpreter1 );
37     CPPUNIT_TEST( testInterpreter2 );
38     CPPUNIT_TEST( testInterpreterUnit0 );
39     CPPUNIT_TEST( testInterpreterUnit1 );
40     CPPUNIT_TEST( testInterpreter3 );
41     CPPUNIT_TEST( testInterpreter4 );
42     CPPUNIT_TEST( testInterpreter5 );
43     CPPUNIT_TEST_SUITE_END();
44   public:
45     void setUp() { }
46     void tearDown() { }
47     void cleanUp() { }
48     void testBuildStringFromFortran();
49     void testDeleteWhiteSpaces();
50     void testInterpreter0();
51     void testInterpreter1();
52     void testInterpreter2();
53     void testInterpreter3();
54     void testInterpreter4();
55     void testInterpreter5();
56     void testInterpreterUnit0();
57     void testInterpreterUnit1();
58   };
59 }
60
61 #endif