(self, file_server, site)
| 74 | CryptConnection.manager.crypt_supported = crypt_supported_bk |
| 75 | |
| 76 | def testPing(self, file_server, site): |
| 77 | client = ConnectionServer(file_server.ip, 1545) |
| 78 | connection = client.getConnection(file_server.ip, 1544) |
| 79 | |
| 80 | assert connection.ping() |
| 81 | |
| 82 | connection.close() |
| 83 | client.stop() |
| 84 | |
| 85 | def testGetConnection(self, file_server): |
| 86 | client = ConnectionServer(file_server.ip, 1545) |
nothing calls this directly
no test coverage detected