(self)
| 17 | self.assertIsNotNone(ext) |
| 18 | |
| 19 | def test_create(self): |
| 20 | ext = KeyShareExtension() |
| 21 | |
| 22 | ext.create([(1, bytearray(b'\x12')), |
| 23 | (2, bytearray(b'\x33'))]) |
| 24 | |
| 25 | self.assertEqual(ext.client_shares, [(1, bytearray(b'\x12')), |
| 26 | (2, bytearray(b'\x33'))]) |
| 27 | |
| 28 | def test_write(self): |
| 29 | ext = KeyShareExtension() |
nothing calls this directly
no test coverage detected