(self)
| 283 | self.check_data_integrity(("col1 INT", "col2 LONG"), generator) |
| 284 | |
| 285 | def test_TEXT(self): |
| 286 | def generator(row, col): |
| 287 | return self.BLOBUText # 'BLOB Text ' * 1024 |
| 288 | |
| 289 | self.check_data_integrity(("col2 TEXT",), generator) |
| 290 | |
| 291 | def test_LONG_BYTE(self): |
| 292 | def generator(row, col): |
nothing calls this directly
no test coverage detected