(self)
| 300 | |
| 301 | @skip_unless_internalhash |
| 302 | def test_ucs2_string(self): |
| 303 | h = self.get_expected_hash(3, 6) |
| 304 | self.assertEqual(self.get_hash(self.repr_ucs2, seed=0), h) |
| 305 | h = self.get_expected_hash(4, 6) |
| 306 | self.assertEqual(self.get_hash(self.repr_ucs2, seed=42), h) |
| 307 | |
| 308 | class BytesHashRandomizationTests(StringlikeHashRandomizationTests, |
| 309 | unittest.TestCase): |
nothing calls this directly
no test coverage detected