winIDEA SDK
test_connection_mgr.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2# (c) TASKING Germany GmbH, 2023
3
4import os
5import isystem.connect as ic
6
7
8def test_ConnectionMgr():
9 print("Create connection manager instance without specifying exact winIDEA...")
10 connMgr1 = ic.ConnectionMgr()
11 print(f"Is connected: {connMgr1.isConnected()}")
12
13
14if __name__ == "__main__":
15 test_ConnectionMgr()