Skip to content

Commit 826abd4

Browse files
committed
Add tests
1 parent 1525f58 commit 826abd4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

tests/test_examples.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,36 @@ def test_download_modal_cyclic():
5454
assert isinstance(Model(path), Model)
5555

5656

57+
def test_download_fluent_multi_species():
58+
path = examples.download_fluent_multi_species()
59+
assert isinstance(Model(path), Model)
60+
61+
62+
def test_download_fluent_axial_comp():
63+
path = examples.download_fluent_axial_comp()
64+
assert isinstance(Model(path), Model)
65+
66+
67+
def test_download_fluent_mixing_elbow_steady_state():
68+
path = examples.download_fluent_mixing_elbow_steady_state()
69+
assert isinstance(Model(path), Model)
70+
71+
72+
def test_download_fluent_mixing_elbow_transient():
73+
path = examples.download_fluent_mixing_elbow_transient()
74+
assert isinstance(Model(path), Model)
75+
76+
77+
def test_download_cfx_heating_coil():
78+
path = examples.download_cfx_heating_coil()
79+
assert isinstance(Model(path), Model)
80+
81+
82+
def test_download_cfx_mixing_elbow():
83+
path = examples.download_cfx_mixing_elbow()
84+
assert isinstance(Model(path), Model)
85+
86+
5787
list_examples = [
5888
"simple_bar",
5989
"static_rst",

0 commit comments

Comments
 (0)