From fa25f2ebee22c4715d042d0668c1a349f6381528 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 21 Dec 2013 14:41:08 +0000 Subject: [PATCH] Add another test. git-svn-id: https://svn.dealii.org/trunk@32083 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/table_03.cc | 71 ++++++++++++++++++++++++++++++++++++++ tests/base/table_03.output | 5 +++ 2 files changed, 76 insertions(+) create mode 100644 tests/base/table_03.cc create mode 100644 tests/base/table_03.output diff --git a/tests/base/table_03.cc b/tests/base/table_03.cc new file mode 100644 index 0000000000..77c1644c3b --- /dev/null +++ b/tests/base/table_03.cc @@ -0,0 +1,71 @@ +// --------------------------------------------------------------------- +// $Id: table.cc 31349 2013-10-20 19:07:06Z maier $ +// +// Copyright (C) 1998 - 2013 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. +// +// --------------------------------------------------------------------- + + +// check TableBase::fill using an istream_iterator + + +#include "../tests.h" +#include +#include +#include +#include + +#include +#include + + +int +main () +{ + std::ofstream logfile("output"); + deallog << std::fixed; + deallog << std::setprecision(0); + deallog.attach(logfile); + deallog.depth_console(0); + deallog.threshold_double(1.e-10); + + const std::string elements = "1 2 3 4 5 6"; + { + // create a 2x3 table from this + Table<2,double> t (2,3); + std::istringstream in1(elements); + t.fill (std::istream_iterator(in1), + true); + + for (unsigned int i=0; i(in2), + false); + + for (unsigned int i=0; i