muParser API -  1.35
Namespaces | Macros
muParserTest.cpp File Reference

This file contains the implementation of parser test cases. More...

#include "muParserTest.h"
#include <cstdio>
#include <cmath>
#include <iostream>
#include <limits>
Include dependency graph for muParserTest.cpp:

Go to the source code of this file.

Namespaces

 mu
 Namespace for mathematical applications.
 
 mu::Test
 Namespace for test cases.
 

Macros

#define EQN_TEST_BULK(EXPR, R1, R2, R3, R4, PASS)
 
#define PARSER_THROWCHECK(DOMAIN, FAIL, EXPR, ARG)
 

Detailed Description

This file contains the implementation of parser test cases.

Definition in file muParserTest.cpp.

Macro Definition Documentation

#define EQN_TEST_BULK (   EXPR,
  R1,
  R2,
  R3,
  R4,
  PASS 
)
Value:
{ \
double res[] = { R1, R2, R3, R4 }; \
iStat += EqnTestBulk(_T(EXPR), res, (PASS)); \
}
#define _T(x)
Activate this option in order to compile with OpenMP support.
Definition: muParserDef.h:69
#define PARSER_THROWCHECK (   DOMAIN,
  FAIL,
  EXPR,
  ARG 
)
Value:
iErr = 0; \
ParserTester::c_iCount++; \
try \
{ \
p.Define##DOMAIN(EXPR, ARG); \
iErr = (FAIL) ? 0 : 1; \
} \
catch(...) \
{ \
iErr = (!FAIL) ? 0 : 1; \
} \
iStat += iErr;