def __init__(self, pathToBBoxConfigFile="./config/bbox_config.ini"):
     self.androidManifestFile = None
     self.instrumentedApk = None
     self.config = BBoxConfig(pathToBBoxConfigFile)
     self.bboxInstrumenter = BBoxInstrumenter(self.config)
     self.bboxExecutor = BBoxExecutor(self.config)
     self.bboxReporter = BBoxReporter(self.config)
     self._bboxStateMachine = StateMachine(states=STATES)