1
2
3
4
5import isystem.connect as ic
6
7
8winidea_id = ''
9
10
11def test_setTestBatch():
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
14
15 tcCtrl = ic.CTestCaseController(connMgr, 0)
16
17 print("Starting batch test...")
18 tcCtrl.setTestBatchNS(True)
19
20
21
22 print("Finishing batch test...")
23 tcCtrl.setTestBatchNS(False)
24
25
26if __name__ == "__main__":
27 test_setTestBatch()