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
4
import
os
5
import
isystem.connect
as
ic
6
7
8
def
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
14
if
__name__ ==
"__main__"
:
15
test_ConnectionMgr()
© TASKING Germany GmbH (9.21.279)