Bastien Sevajol пре 6 година
родитељ
комит
5176d1afe3
1 измењених фајлова са 23 додато и 0 уклоњено
  1. 23 0
      tests/test_simulation.py

+ 23 - 0
tests/test_simulation.py Прегледај датотеку

@@ -0,0 +1,23 @@
1
+from tests import BaseTest
2
+
3
+
4
+class TestBehaviours(BaseTest):
5
+    def test_behaviour_produce_data(self):
6
+        pass
7
+
8
+    def test_behaviour_timebase(self):
9
+        pass
10
+
11
+    def test_behavior_not_called_if_no_more_subjects(self):
12
+        pass
13
+
14
+
15
+class TestMechanisms(BaseTest):
16
+    def test_mechanism_called_once_for_multiple_behaviors(self):
17
+        pass
18
+
19
+    def test_mechanism_not_called_if_no_behavior(self):
20
+        pass
21
+
22
+    def test_mechanism_not_called_if_behavior_timebase_not_active_yet(self):
23
+        pass