(self, **kwargs)
| 158 | |
| 159 | class SubprotocolHandler(TestWebSocketHandler): |
| 160 | def initialize(self, **kwargs): |
| 161 | super().initialize(**kwargs) |
| 162 | self.select_subprotocol_called = False |
| 163 | |
| 164 | def select_subprotocol(self, subprotocols): |
| 165 | if self.select_subprotocol_called: |
no outgoing calls
no test coverage detected