cloudy  trunk
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TestMain.cpp
Go to the documentation of this file.
1 /* This file is part of Cloudy and is copyright (C)1978-2017 by Gary J. Ferland and
2  * others. For conditions of distribution and use see copyright notice in license.txt */
3 #include "cdstd.h"
4 #include <fenv.h>
5 #include <UnitTest++.h>
6 #include <TestReporterStdout.h>
7 #include "cddefines.h"
8 
9 int main ()
10 {
11  ioQQQ = stdout;
12  // disable FP exceptions, they would lead to spurious crashes in the tests
13  fesetenv(FE_DFL_ENV);
14  return UnitTest::RunAllTests();
15 }
FILE * ioQQQ
Definition: cddefines.cpp:7
int main(int argc, char *argv[])
Definition: maincl.cpp:27