import isystem.connect as ic
winidea_id = ''
def test_setDebugModeOn():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
tcCtrl = ic.CTestCaseController(connMgr, "SoCInit", "")
tcCtrl.init()
tcCtrl.setDebugModeOn()
tcCtrl.destroy()
if __name__ == "__main__":
test_setDebugModeOn()