Revision bb50181da1730e04b588f06bdf3be0d6993923f8 authored by Ian Bell on 02 August 2014, 10:40:01 UTC, committed by Ian Bell on 02 August 2014, 10:40:01 UTC
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
1 parent ef7aaec
Raw File
TestObjects.h
/**
 *  This file contains some basic methods to generate
 *  objects that can be used in the test routines.
 *  This makes the tests themselves much more readable
 *  and assures that the objects used for testing are the
 *  same in all places.
 */
#include "IncompressibleFluid.h"
#include "Eigen/Core"
#include "MatrixMath.h"

#if defined ENABLE_CATCH
namespace CoolPropTesting {

Eigen::MatrixXd makeMatrix(const std::vector<double> &coefficients);
CoolProp::IncompressibleFluid incompressibleFluidObject();
//IncompressibleBackend incompressibleBackendObject();

} // namespace CoolPropTesting
#endif // ENABLE_CATCH
back to top