From: Luca Heltai Date: Wed, 20 Sep 2017 09:46:58 +0000 (+0200) Subject: Test with Point. X-Git-Tag: v9.0.0-rc1~1033^2~8 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9ac1a36effc5bc2694cb33da5302274d73e45e2;p=dealii.git Test with Point. --- diff --git a/tests/parameter_handler/parameter_acceptor_03.cc b/tests/parameter_handler/parameter_acceptor_03.cc new file mode 100644 index 0000000000..92a4348852 --- /dev/null +++ b/tests/parameter_handler/parameter_acceptor_03.cc @@ -0,0 +1,72 @@ +//----------------------------------------------------------- +// +// Copyright (C) 2015 by the deal.II authors +// +// This file is part of the deal.II library. +// +// The deal.II library is free software; you can use it, redistribute +// it, and/or modify it under the terms of the GNU Lesser General +// Public License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// The full text of the license can be found in the file LICENSE at +// the top level of the deal.II distribution. +// +//----------------------------------------------------------- + + +#include "../tests.h" +#include +#include + +#include + +template +class Test : public ParameterAcceptor +{ +public: + Test() + { + std::string def = "0."; + for (int i=1; i p; +}; + + +int main () +{ + initlog(); + Test<1> a; + Test<2> b; + Test<3> c; + + auto &prm = ParameterAcceptor::prm; + ParameterAcceptor::declare_all_parameters(); + prm.parse_input_from_string("" + "subsection Test<1>\n" + " set A point = 1.0\n" + "end\n" + "subsection Test<2>\n" + " set A point = 1.0, 2.0\n" + "end\n" + "subsection Test<3>\n" + " set A point = 1.0, 2.0, 3.0\n" + "end\n"); + + prm.log_parameters(deallog); + ParameterAcceptor::parse_all_parameters(prm); + + a.log_info(); + b.log_info(); + c.log_info(); +} diff --git a/tests/parameter_handler/parameter_acceptor_03.output b/tests/parameter_handler/parameter_acceptor_03.output new file mode 100644 index 0000000000..a392e1b8c3 --- /dev/null +++ b/tests/parameter_handler/parameter_acceptor_03.output @@ -0,0 +1,10 @@ + +DEAL:parameters:Test<1>::A point: 1.0 +DEAL:parameters:Test<2>::A point: 1.0, 2.0 +DEAL:parameters:Test<3>::A point: 1.0, 2.0, 3.0 +DEAL::My type: Test<1> +DEAL::p: 1.00000 +DEAL::My type: Test<2> +DEAL::p: 1.00000 2.00000 +DEAL::My type: Test<3> +DEAL::p: 1.00000 2.00000 3.00000