diff --git a/test/test_sfg.py b/test/test_sfg.py index 02f4c492164176fae968d120c1bfa388fccc7ffb..d5ff3e2ebf64a61ba9a570060848b20cc60e3823 100644 --- a/test/test_sfg.py +++ b/test/test_sfg.py @@ -1597,7 +1597,10 @@ class TestCriticalPath: assert sfg_simple_accumulator.critical_path() == 6 -class TestUnroll: - def unrolling_by_factor_0_raises(self, sfg_simple_filter: SFG): +class TestUnfold: + # QUESTION: Is it possible to run a test on *all* fixtures? + def test_unfolding_by_factor_0_raises(self, sfg_simple_filter: SFG): with pytest.raises(ValueError): sfg_simple_filter.unfold(0) + + # TODO: Add more tests