test_simulation.py 517B

123456789101112131415161718192021222324
  1. from tests import BaseTest
  2. class TestBehaviours(BaseTest):
  3. def test_behaviour_produce_data(self):
  4. pass
  5. def test_behaviour_timebase(self):
  6. pass
  7. def test_behavior_not_called_if_no_more_subjects(self):
  8. pass
  9. class TestMechanisms(BaseTest):
  10. def test_mechanism_called_once_for_multiple_behaviors(self):
  11. pass
  12. def test_mechanism_not_called_if_no_behavior(self):
  13. pass
  14. def test_mechanism_not_called_if_behavior_timebase_not_active_yet(self):
  15. pass