(self)
| 412 | self.assertTrue(wait_closed.done()) |
| 413 | |
| 414 | def test_close_code(self): |
| 415 | self.close_connection(CloseCode.GOING_AWAY, "Bye!") |
| 416 | self.assertEqual(self.protocol.close_code, CloseCode.GOING_AWAY) |
| 417 | |
| 418 | def test_close_reason(self): |
| 419 | self.close_connection(CloseCode.GOING_AWAY, "Bye!") |
nothing calls this directly
no test coverage detected