import isystem.connect as ic
winidea_id = ''
def test_setTestBatch():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
tcCtrl = ic.CTestCaseController(connMgr, 0)
print("Starting batch test...")
tcCtrl.setTestBatchNS(True)
print("Finishing batch test...")
tcCtrl.setTestBatchNS(False)
if __name__ == "__main__":
test_setTestBatch()