1
2
3
4
5import isystem.connect as ic
6
7
8winidea_id = ''
9
10
11def test_control():
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
14 session = ic.CSessionCtrl(connMgr)
15 session.begin_program()
16 execCtrl = ic.CExecutionController(connMgr)
17 execCtrl.runUntilFunction('main')
18 execCtrl.waitUntilStopped()
19
20 tcCtrl = ic.CTestCaseController(connMgr, "targetInit", "")
21 tcCtrl.init()
22
23 tcCtrl.run()
24 tcCtrl.waitUntilStopped()
25 tcCtrl.destroy()
26
27
28if __name__ == "__main__":
29 test_control()