From 37df7e6a3c3bd3f277c099c24715b08f635c7798 Mon Sep 17 00:00:00 2001 From: Jiankai Yu Date: Sun, 15 Sep 2019 15:29:01 -0400 Subject: [PATCH] add regression test for white boundary condition --- tests/regression_tests/white_plane/__init__.py | 0 tests/regression_tests/white_plane/materials.xml | 9 +++++++++ tests/regression_tests/white_plane/settings.xml | 15 +++++++++++++++ tests/regression_tests/white_plane/test.py | 6 ++++++ 4 files changed, 30 insertions(+) create mode 100644 tests/regression_tests/white_plane/__init__.py create mode 100644 tests/regression_tests/white_plane/materials.xml create mode 100644 tests/regression_tests/white_plane/settings.xml create mode 100644 tests/regression_tests/white_plane/test.py diff --git a/tests/regression_tests/white_plane/__init__.py b/tests/regression_tests/white_plane/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/tests/regression_tests/white_plane/materials.xml b/tests/regression_tests/white_plane/materials.xml new file mode 100644 index 0000000000..2472a74717 --- /dev/null +++ b/tests/regression_tests/white_plane/materials.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/tests/regression_tests/white_plane/settings.xml b/tests/regression_tests/white_plane/settings.xml new file mode 100644 index 0000000000..70b4e802f8 --- /dev/null +++ b/tests/regression_tests/white_plane/settings.xml @@ -0,0 +1,15 @@ + + + + eigenvalue + 10 + 5 + 1000 + + + + -4 -4 -4 4 4 4 + + + + diff --git a/tests/regression_tests/white_plane/test.py b/tests/regression_tests/white_plane/test.py new file mode 100644 index 0000000000..223f4e5e6a --- /dev/null +++ b/tests/regression_tests/white_plane/test.py @@ -0,0 +1,6 @@ +from tests.testing_harness import TestHarness + + +def test_white_plane(): + harness = TestHarness('statepoint.10.h5') + harness.main()