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