winIDEA SDK
Loading...
Searching...
No Matches
test_connection_mgr.py
# This script is licensed under BSD License, see file LICENSE.txt, or search for `License` in the SDK online help.
# (c) TASKING Germany GmbH, 2023
import os
import isystem.connect as ic
def test_ConnectionMgr():
print("Create connection manager instance without specifying exact winIDEA...")
connMgr1 = ic.ConnectionMgr()
print(f"Is connected: {connMgr1.isConnected()}")
if __name__ == "__main__":
test_ConnectionMgr()