jamesren | c394022 | 2010-02-19 21:57:37 +0000 | [diff] [blame] | 1 | class 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 |