]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Yet another test.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 7 Sep 2012 22:04:44 +0000 (22:04 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 7 Sep 2012 22:04:44 +0000 (22:04 +0000)
git-svn-id: https://svn.dealii.org/trunk@26253 0785d39b-7218-0410-832d-ea1e28bc413d

tests/base/table_handler_08.cc [new file with mode: 0644]
tests/base/table_handler_08/cmp/generic [new file with mode: 0644]

diff --git a/tests/base/table_handler_08.cc b/tests/base/table_handler_08.cc
new file mode 100644 (file)
index 0000000..777c55c
--- /dev/null
@@ -0,0 +1,60 @@
+//-----------------------------------------------------------------------------
+//    $Id$
+//    Version: $Name$
+//
+//    Copyright (C) 2010, 2011, 2012 by the deal.II authors
+//
+//    This file is subject to QPL and may not be  distributed
+//    without copyright and license information. Please refer
+//    to the file deal.II/doc/license.html for the  text  and
+//    further information on this license.
+//
+//-----------------------------------------------------------------------------
+
+// make sure a TableHandler can be copied, this time using the copy
+// constructor
+
+
+#include "../tests.h"
+#include <deal.II/base/data_out_base.h>
+#include <deal.II/base/table_handler.h>
+#include <deal.II/base/logstream.h>
+
+#include <vector>
+#include <iomanip>
+#include <fstream>
+#include <string>
+
+
+int main ()
+{
+  std::ofstream logfile("table_handler_08/output");
+  deallog.attach(logfile);
+  deallog.depth_console(0);
+  deallog.threshold_double(1.e-10);
+
+/* Like in _06 */
+  TableHandler table;
+  table.set_auto_fill_mode (true);
+
+  std::string keys[3] = { "key1", "key2", "key3" };
+
+                                  // fill rows 1 and 2 partially
+  table.add_value(keys[0], 0);
+  table.add_value(keys[0], 1);
+                                  // now fill row 3 completely
+  table.add_value(keys[0], 2);
+  table.add_value(keys[1], 13);
+  table.add_value(keys[2], std::string("a"));
+
+                                  // now again fill row 4 partially
+  table.add_value(keys[0], 1);
+
+/* Now copy and write the file from the copy */
+  TableHandler table2(table);
+
+                                  // produce output. hope that row 4 is
+                                  // completely padded
+  table2.write_text(deallog.get_file_stream(),
+                  TableHandler::table_with_separate_column_description);
+}
diff --git a/tests/base/table_handler_08/cmp/generic b/tests/base/table_handler_08/cmp/generic
new file mode 100644 (file)
index 0000000..e6a8bb1
--- /dev/null
@@ -0,0 +1,8 @@
+
+# 1: key1
+# 2: key2
+# 3: key3
+0 0  "" 
+1 0  "" 
+2 13 a  
+1 0  "" 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.