]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add more tests.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 22 Dec 2015 22:31:34 +0000 (16:31 -0600)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 23 Dec 2015 14:49:08 +0000 (08:49 -0600)
tests/base/array_view_04.cc [new file with mode: 0644]
tests/base/array_view_04.output [new file with mode: 0644]
tests/base/array_view_05.cc [new file with mode: 0644]
tests/base/array_view_05.output [new file with mode: 0644]

diff --git a/tests/base/array_view_04.cc b/tests/base/array_view_04.cc
new file mode 100644 (file)
index 0000000..fad7e11
--- /dev/null
@@ -0,0 +1,55 @@
+// ---------------------------------------------------------------------
+//
+// 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.
+//
+// ---------------------------------------------------------------------
+
+
+// test for class ArrayView. check make_array_view for Table arguments
+
+#include "../tests.h"
+#include <iomanip>
+
+#include <deal.II/base/array_view.h>
+
+
+void test ()
+{
+  Table<2,int> v(10,8);
+
+  ArrayView<int> a = make_array_view (v, 4);  // writable view to whole row
+  a[2] = 42;
+
+  Assert (a[2] == 42, ExcInternalError());
+  Assert (v[4][2] == 42, ExcInternalError());
+
+  ArrayView<const int> a2 = make_array_view (v, 4);  // readable view
+  Assert (a2[2] == 42, ExcInternalError());
+
+
+  // also check a different way of creating a readable view
+  ArrayView<const int> a3
+    = make_array_view (const_cast<const Table<2,int> &>(v), 4);
+  Assert (a3[2] == 42, ExcInternalError());
+
+  deallog << "OK" << std::endl;
+}
+
+
+
+
+int main()
+{
+  initlog();
+
+  test ();
+}
diff --git a/tests/base/array_view_04.output b/tests/base/array_view_04.output
new file mode 100644 (file)
index 0000000..0fd8fc1
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::OK
diff --git a/tests/base/array_view_05.cc b/tests/base/array_view_05.cc
new file mode 100644 (file)
index 0000000..69c6887
--- /dev/null
@@ -0,0 +1,55 @@
+// ---------------------------------------------------------------------
+//
+// 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.
+//
+// ---------------------------------------------------------------------
+
+
+// test for class ArrayView. check make_array_view for Table arguments
+
+#include "../tests.h"
+#include <iomanip>
+
+#include <deal.II/base/array_view.h>
+
+
+void test ()
+{
+  Table<2,int> v(8,10);
+
+  ArrayView<int> a = make_array_view (v, 4, 7, 3);  // writable view to part of a row
+  a[2] = 42;
+
+  Assert (a[2] == 42, ExcInternalError());
+  Assert (v[4][9] == 42, ExcInternalError());
+
+  ArrayView<const int> a2 = make_array_view (v, 4, 7, 3);  // readable view
+  Assert (a2[2] == 42, ExcInternalError());
+
+
+  // also check a different way of creating a readable view
+  ArrayView<const int> a3
+    = make_array_view (const_cast<const Table<2,int> &>(v), 4, 7, 3);
+  Assert (a3[2] == 42, ExcInternalError());
+
+  deallog << "OK" << std::endl;
+}
+
+
+
+
+int main()
+{
+  initlog();
+
+  test ();
+}
diff --git a/tests/base/array_view_05.output b/tests/base/array_view_05.output
new file mode 100644 (file)
index 0000000..0fd8fc1
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::OK

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.