1
2
3
4
5
6
7import isystem.connect as ic
8
9
10winidea_id = ''
11
12
13def test_gotoFunction():
14 connMgr = ic.ConnectionMgr()
15 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
16
17 execCtrl = ic.CExecutionController(connMgr)
18
19 execCtrl.gotoFunction("targetInit")
20
21
22if __name__ == "__main__":
23 test_gotoFunction()