123456789101112131415161718192021222324 |
- from tests import BaseTest
-
-
- class TestBehaviours(BaseTest):
- def test_behaviour_produce_data(self):
- pass
-
- def test_behaviour_timebase(self):
- pass
-
- def test_behavior_not_called_if_no_more_subjects(self):
- pass
-
-
- class TestMechanisms(BaseTest):
- def test_mechanism_called_once_for_multiple_behaviors(self):
- pass
-
- def test_mechanism_not_called_if_no_behavior(self):
- pass
-
- def test_mechanism_not_called_if_behavior_timebase_not_active_yet(self):
- pass
|