1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #ifndef _EXPREVALINTERPTEST_HXX_
22 #define _EXPREVALINTERPTEST_HXX_
24 #include <cppunit/extensions/HelperMacros.h>
26 #include "InterpKernelTestExport.hxx"
30 class INTERPKERNELTEST_EXPORT ExprEvalInterpTest : public CppUnit::TestFixture
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();
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();