blob: 30016c9123197ff6b0ff4f165f9f2b7e38087b84 [file] [log] [blame]
class ExecutionEngine(object):
"""
Provides the Test Planner execution engine
"""
def __init__(self, plan_id):
self.plan_id = plan_id
def start(self):
"""
Starts the execution engine.
Thread remains in this method until the execution engine is complete.
"""
pass