Skip to content
Snippets Groups Projects
Commit baeae533 authored by Oliver Sander's avatar Oliver Sander
Browse files

make test run

[[Imported from SVN: r6015]]
parent 276fbfad
Branches
Tags
No related merge requests found
......@@ -15,6 +15,10 @@ int main ()
try {
Dune::ConfigParser parameterSet;
parameterSet["testDouble"] = "3.14";
parameterSet["testInt"] = "42";
parameterSet["testString"] = "Hallo Welt!";
double testDouble = parameterSet.get<double>("testDouble");
int testInt = parameterSet.get<int>("testInt");
std::string testString = parameterSet.get<std::string>("testString");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment