(self)
| 289 | self.check_data_integrity(("col2 TEXT",), generator) |
| 290 | |
| 291 | def test_LONG_BYTE(self): |
| 292 | def generator(row, col): |
| 293 | if col == 0: |
| 294 | return row |
| 295 | else: |
| 296 | return self.BLOBBinary # 'BLOB\000Binary ' * 1024 |
| 297 | |
| 298 | self.check_data_integrity(("col1 INT", "col2 LONG BYTE"), generator) |
| 299 | |
| 300 | def test_BLOB(self): |
| 301 | def generator(row, col): |
nothing calls this directly
no test coverage detected