winIDEA SDK
test_set_test_batch.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2#
3# (c) TASKING Germany GmbH, 2023
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 # perform several tests here
21
22 print("Finishing batch test...")
23 tcCtrl.setTestBatchNS(False)
24
25
26if __name__ == "__main__":
27 test_setTestBatch()