(self, stats, name)
| 4603 | return server_context, other_context, client_context |
| 4604 | |
| 4605 | def check_common_name(self, stats, name): |
| 4606 | cert = stats['peercert'] |
| 4607 | self.assertIn((('commonName', name),), cert['subject']) |
| 4608 | |
| 4609 | def test_sni_callback(self): |
| 4610 | calls = [] |
no test coverage detected