/*************************************************************************************************** ** ** Original work Copyright (C) 2013 Ingo Berg ** Modified work Copyright 2014 Roman Telezhinsky ** ** Permission is hereby granted, free of charge, to any person obtaining a copy of this ** software and associated documentation files (the "Software"), to deal in the Software ** without restriction, including without limitation the rights to use, copy, modify, ** merge, publish, distribute, sublicense, and/or sell copies of the Software, and to ** permit persons to whom the Software is furnished to do so, subject to the following conditions: ** ** The above copyright notice and this permission notice shall be included in all copies or ** substantial portions of the Software. ** ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT ** NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ** NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, ** DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ** OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** ******************************************************************************************************/ #ifndef QMUPARSERTEST_H #define QMUPARSERTEST_H #include #include #include // for accumulate #include "qmuparser.h" #include /** \file \brief This file contains the parser test class. */ namespace qmu { /** \brief Namespace for test cases. */ namespace Test { //------------------------------------------------------------------------------ /** \brief Test cases for unit testing. (C) 2004-2011 Ingo Berg */ class QmuParserTester // final { private: static int c_iCount; // Multiarg callbacks static qreal f1of1(qreal v) { return v;} static qreal f1of2(qreal v, qreal ) {return v;} static qreal f2of2(qreal , qreal v) {return v;} static qreal f1of3(qreal v, qreal , qreal ) {return v;} static qreal f2of3(qreal , qreal v, qreal ) {return v;} static qreal f3of3(qreal , qreal , qreal v) {return v;} static qreal f1of4(qreal v, qreal, qreal , qreal ) {return v;} static qreal f2of4(qreal , qreal v, qreal , qreal ) {return v;} static qreal f3of4(qreal , qreal, qreal v, qreal ) {return v;} static qreal f4of4(qreal , qreal, qreal , qreal v) {return v;} static qreal f1of5(qreal v, qreal, qreal , qreal , qreal ) { return v; } static qreal f2of5(qreal , qreal v, qreal , qreal , qreal ) { return v; } static qreal f3of5(qreal , qreal, qreal v, qreal , qreal ) { return v; } static qreal f4of5(qreal , qreal, qreal , qreal v, qreal ) { return v; } static qreal f5of5(qreal , qreal, qreal , qreal , qreal v) { return v; } static qreal Min(qreal a_fVal1, qreal a_fVal2) { return (a_fVal1a_fVal2) ? a_fVal1 : a_fVal2; } static qreal plus2(qreal v1) { return v1+2; } static qreal times3(qreal v1) { return v1*3; } static qreal sqr(qreal v1) { return v1*v1; } static qreal sign(qreal v) { return -v; } static qreal add(qreal v1, qreal v2) { return v1+v2; } static qreal land(qreal v1, qreal v2) { return (int)v1 & (int)v2; } static qreal FirstArg(const qreal* a_afArg, int a_iArgc) { if (!a_iArgc) throw qmu::QmuParser::exception_type( "too few arguments for function FirstArg." ); return a_afArg[0]; } static qreal LastArg(const qreal* a_afArg, int a_iArgc) { if (!a_iArgc) throw qmu::QmuParser::exception_type( "too few arguments for function LastArg." ); return a_afArg[a_iArgc-1]; } static qreal Sum(const qreal* a_afArg, int a_iArgc) { if (!a_iArgc) throw qmu::QmuParser::exception_type( "too few arguments for function sum." ); qreal fRes=0; for (int i=0; i m_vTestFun; void AddTest(testfun_type a_pFun); // Test Double Parser int EqnTest(const QString &a_str, double a_fRes, bool a_fPass); int EqnTestWithVarChange(const QString &a_str, double a_fRes1, double a_fVar1, double a_fRes2, double a_fVar2); int ThrowTest(const QString &a_str, int a_iErrc, bool a_bFail = true); }; } // namespace Test } // namespace qmu #endif