Salome HOME
Boost of expression evaluator DataArrayDouble::applyFunc* + DataArrayDouble::applyFun...
[modules/med.git] / src / INTERP_KERNELTest / ExprEvalInterpTest.hxx
1 // Copyright (C) 2007-2014  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 // 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( testInterpreter6 );
44     CPPUNIT_TEST_SUITE_END();
45   public:
46     void setUp() { }
47     void tearDown() { }
48     void cleanUp() { }
49     void testBuildStringFromFortran();
50     void testDeleteWhiteSpaces();
51     void testInterpreter0();
52     void testInterpreter1();
53     void testInterpreter2();
54     void testInterpreter3();
55     void testInterpreter4();
56     void testInterpreter5();
57     void testInterpreter6();
58     void testInterpreterUnit0();
59     void testInterpreterUnit1();
60   };
61 }
62
63 #endif