diff --git a/test/test_sfg.py b/test/test_sfg.py index 285bd3a10c8237c582d5674b2c17cccf3e0b158a..3f36a71b278cef3c31d2ab9496d86fdfe4291a21 100644 --- a/test/test_sfg.py +++ b/test/test_sfg.py @@ -1572,7 +1572,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