From 43a8a178741aa84a610de1cd45728320df87373e Mon Sep 17 00:00:00 2001 From: Caleb Sitton Date: Fri, 13 Dec 2024 10:29:46 -0700 Subject: [PATCH] Modified unit tests to use Unittest tester --- tests/unit_tests/tests | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/unit_tests/tests b/tests/unit_tests/tests index 4a340f4e..8bcaa970 100644 --- a/tests/unit_tests/tests +++ b/tests/unit_tests/tests @@ -1,46 +1,46 @@ [Tests] [./TestMinimalInput] - type = RavenPython - input = '-m unittest test_heron.TestMinimalInput' + type = Unittest + input = 'test_heron.TestMinimalInput' [../] [./TestExpandedInput1] - type = RavenPython - input = '-m unittest test_heron.TestExpandedInput1' + type = Unittest + input = 'test_heron.TestExpandedInput1' [../] [./TestExpandedInput2] - type = RavenPython - input = '-m unittest test_heron.TestExpandedInput2' + type = Unittest + input = 'test_heron.TestExpandedInput2' [../] [./TestNoComponentsNode] - type = RavenPython - input = '-m unittest test_heron.TestNoComponentsNode' + type = Unittest + input = 'test_heron.TestNoComponentsNode' [../] [./TestNoComponentNodes] - type = RavenPython - input = '-m unittest test_heron.TestNoComponentNodes' + type = Unittest + input = 'test_heron.TestNoComponentNodes' [../] [./TestMissingSubnodes] - type = RavenPython - input = '-m unittest test_heron.TestMissingSubnodes' + type = Unittest + input = 'test_heron.TestMissingSubnodes' [../] [./TestEmptyCompSetsFolder] - type = RavenPython - input = '-m unittest test_heron.TestEmptyCompSetsFolder' + type = Unittest + input = 'test_heron.TestEmptyCompSetsFolder' [../] [./TestCompSetsFolderWithBadJSON] - type = RavenPython - input = '-m unittest test_heron.TestCompSetsFolderWithBadJSON' + type = Unittest + input = 'test_heron.TestCompSetsFolderWithBadJSON' [../] [./TestCompSetsFolderMultFiles] - type = RavenPython - input = '-m unittest test_heron.TestCompSetsFolderMultFiles' + type = Unittest + input = 'test_heron.TestCompSetsFolderMultFiles' [../] []