Assert that the opening handshake succeeded.
(self, client)
| 328 | """Test processing of handshake responses to configure the connection.""" |
| 329 | |
| 330 | def assertHandshakeSuccess(self, client): |
| 331 | """Assert that the opening handshake succeeded.""" |
| 332 | self.assertEqual(client.state, OPEN) |
| 333 | self.assertIsNone(client.handshake_exc) |
| 334 | |
| 335 | def assertHandshakeError(self, client, exc_type, msg): |
| 336 | """Assert that the opening handshake failed with the given exception.""" |
no outgoing calls
no test coverage detected