From 292c1c9bbf890280887e46d1dc944db1f8daacc0 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 28 Mar 2019 09:07:21 -0600 Subject: [PATCH] Add a test. --- tests/vector/vector_59.cc | 41 +++++++++++++++++++++++++++++++++++ tests/vector/vector_59.output | 3 +++ 2 files changed, 44 insertions(+) create mode 100644 tests/vector/vector_59.cc create mode 100644 tests/vector/vector_59.output diff --git a/tests/vector/vector_59.cc b/tests/vector/vector_59.cc new file mode 100644 index 0000000000..0f6042e463 --- /dev/null +++ b/tests/vector/vector_59.cc @@ -0,0 +1,41 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 2004 - 2017 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.md at +// the top level directory of deal.II. +// +// --------------------------------------------------------------------- + + + +// check Vector initialization with std::initializer_list objects + +#include + +#include "../tests.h" + + + +int +main() +{ + initlog(); + + Vector vd({1.0, 2.0, 3.0}); + for (const auto &x : vd) + deallog << x << ' '; + deallog << std::endl; + + + Vector vi({1, 2, 3}); + for (const auto &x : vi) + deallog << x << ' '; + deallog << std::endl; +} diff --git a/tests/vector/vector_59.output b/tests/vector/vector_59.output new file mode 100644 index 0000000000..e6f09856b2 --- /dev/null +++ b/tests/vector/vector_59.output @@ -0,0 +1,3 @@ + +DEAL::1.00000 2.00000 3.00000 +DEAL::1.00000 2.00000 3.00000 -- 2.39.5