Skip to content
Snippets Groups Projects
Commit 8b24ee4c authored by patavirt's avatar patavirt
Browse files

tests: test terminal solutions too

parent 2b8c4f54
No related branches found
No related tags found
No related merge requests found
......@@ -38,10 +38,16 @@ def test_solve_dos():
@pytest.mark.parametrize(
"omega,h", [(w, h) for w in (0.5 + 0.8j, -0.5 + 0.8j) for h in (0, -0.5, 0.5)]
"omega,h,terminals",
[
(w, h, terminals)
for w in (0.5 + 0.8j, -0.5 + 0.8j)
for h in (0, -0.5, 0.5)
for terminals in (True, False)
],
)
def test_result_S_J0(omega, h):
s = basic_setup(h=h)
def test_result_S_J0(omega, h, terminals):
s = basic_setup(h=h, terminals=terminals)
res = s.solve_many(omega=omega)
S = res.S
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment