fixed: do not use ParameterGroup code in opm-core test program

it now sits in opm-common. yields confusing output as test
program compilation will succeed even if opm-common but not opm-core
is available
This commit is contained in:
Arne Morten Kvarving
2017-11-24 12:42:26 +01:00
parent 4f6a398db1
commit af503d2c48

View File

@@ -31,12 +31,14 @@ find_opm_package (
# test program
"
#include <opm/core/utility/parameters/ParameterGroup.hpp>
#include <opm/core/well_controls.h>
#include <iostream>
int main()
{
Opm::ParameterGroup parameters;
parameters.insertParameter(\"number\", \"7\");
return 0;
WellControlType type;
type = BHP;
std::cout << type;
return 0;
}
"
# config variables