blob: 30016c9123197ff6b0ff4f165f9f2b7e38087b84 [file] [log] [blame]
jamesrenc3940222010-02-19 21:57:37 +00001class ExecutionEngine(object):
2 """
3 Provides the Test Planner execution engine
4 """
5
6 def __init__(self, plan_id):
7 self.plan_id = plan_id
8
9
10 def start(self):
11 """
12 Starts the execution engine.
13
14 Thread remains in this method until the execution engine is complete.
15 """
16 pass