Skip to content

Commit

Permalink
Modified unit tests to use Unittest tester
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb-sitton-inl committed Dec 13, 2024
1 parent 6ef7bd9 commit 43a8a17
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions tests/unit_tests/tests
Original file line number Diff line number Diff line change
@@ -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'
[../]
[]

0 comments on commit 43a8a17

Please sign in to comment.