(self, x)
| 296 | self.assertEqual(ri, bb.ri) |
| 297 | |
| 298 | def check_skip_long(self, x): |
| 299 | x = ByteBuffer.truncate_long(x) |
| 300 | bb = ByteBuffer() |
| 301 | bb.write_long(x) |
| 302 | bb.read_long() |
| 303 | ri = bb.ri |
| 304 | bb.ri = 0 |
| 305 | bb.skip_long() |
| 306 | self.assertEqual(ri, bb.ri) |
| 307 | |
| 308 | def check_skip_ulong(self, x): |
| 309 | x = ByteBuffer.truncate_long(x) |
no test coverage detected