import isystem.connect as ic
winidea_id = ''
def test_getTestCaseHandle():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
tcCtrl = ic.CTestCaseController(connMgr, "main", "")
tcCtrl.init()
print(f"Current test case handle: {tcCtrl.getTestCaseHandle()}")
tcCtrl.destroy()
if __name__ == "__main__":
test_getTestCaseHandle()