本文整理汇总了Python中pymodbus.client.sync.ModbusUdpClient.close方法的典型用法代码示例。如果您正苦于以下问题:Python ModbusUdpClient.close方法的具体用法?Python ModbusUdpClient.close怎么用?Python ModbusUdpClient.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pymodbus.client.sync.ModbusUdpClient
的用法示例。
在下文中一共展示了ModbusUdpClient.close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: SynchronousUdpClient
# 需要导入模块: from pymodbus.client.sync import ModbusUdpClient [as 别名]
# 或者: from pymodbus.client.sync.ModbusUdpClient import close [as 别名]
class SynchronousUdpClient(Runner, unittest.TestCase):
"""
These are the integration tests for the synchronous
udp client.
"""
def setUp(self):
""" Initializes the test environment """
super(Runner, self).setUp()
self.client = ModbusClient()
def tearDown(self):
""" Cleans up the test environment """
self.client.close()
super(Runner, self).tearDown()
示例2: AsynchronousUdpClient
# 需要导入模块: from pymodbus.client.sync import ModbusUdpClient [as 别名]
# 或者: from pymodbus.client.sync.ModbusUdpClient import close [as 别名]
class AsynchronousUdpClient(Runner, unittest.TestCase):
'''
These are the integration tests for the asynchronous
udp client.
'''
def setUp(self):
''' Initializes the test environment '''
super(Runner, self).setUp()
self.client = ModbusClient()
def tearDown(self):
''' Cleans up the test environment '''
self.client.close()
super(Runner, self).tearDown()
示例3: testBasicSyncUdpClient
# 需要导入模块: from pymodbus.client.sync import ModbusUdpClient [as 别名]
# 或者: from pymodbus.client.sync.ModbusUdpClient import close [as 别名]
def testBasicSyncUdpClient(self):
''' Test the basic methods for the udp sync client'''
# receive/send
client = ModbusUdpClient()
client.socket = mockSocket()
self.assertEqual(0, client._send(None))
self.assertEqual(1, client._send('\x00'))
self.assertEqual('\x00', client._recv(1))
# connect/disconnect
self.assertTrue(client.connect())
client.close()
# already closed socket
client.socket = False
client.close()
self.assertEqual("127.0.0.1:502", str(client))