Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _EXPREVALINTERPTEST_HXX_
00021 #define _EXPREVALINTERPTEST_HXX_
00022
00023 #include <cppunit/extensions/HelperMacros.h>
00024
00025 #include "InterpKernelTestExport.hxx"
00026
00027 namespace INTERP_TEST
00028 {
00029 class INTERPKERNELTEST_EXPORT ExprEvalInterpTest : public CppUnit::TestFixture
00030 {
00031 CPPUNIT_TEST_SUITE( ExprEvalInterpTest );
00032 CPPUNIT_TEST( testBuildStringFromFortran );
00033 CPPUNIT_TEST( testDeleteWhiteSpaces );
00034 CPPUNIT_TEST( testInterpreter0 );
00035 CPPUNIT_TEST( testInterpreter1 );
00036 CPPUNIT_TEST( testInterpreter2 );
00037 CPPUNIT_TEST( testInterpreterUnit0 );
00038 CPPUNIT_TEST( testInterpreterUnit1 );
00039 CPPUNIT_TEST( testInterpreter3 );
00040 CPPUNIT_TEST( testInterpreter4 );
00041 CPPUNIT_TEST( testInterpreter5 );
00042 CPPUNIT_TEST_SUITE_END();
00043 public:
00044 void setUp() { }
00045 void tearDown() { }
00046 void cleanUp() { }
00047 void testBuildStringFromFortran();
00048 void testDeleteWhiteSpaces();
00049 void testInterpreter0();
00050 void testInterpreter1();
00051 void testInterpreter2();
00052 void testInterpreter3();
00053 void testInterpreter4();
00054 void testInterpreter5();
00055 void testInterpreterUnit0();
00056 void testInterpreterUnit1();
00057 };
00058 }
00059
00060 #endif