(self)
| 298 | self.check_data_integrity(("col1 INT", "col2 LONG BYTE"), generator) |
| 299 | |
| 300 | def test_BLOB(self): |
| 301 | def generator(row, col): |
| 302 | if col == 0: |
| 303 | return row |
| 304 | else: |
| 305 | return self.BLOBBinary # 'BLOB\000Binary ' * 1024 |
| 306 | |
| 307 | self.check_data_integrity(("col1 INT", "col2 BLOB"), generator) |
| 308 | |
| 309 | def test_DOUBLE(self): |
| 310 | for val in (18014398509481982.0, 0.1): |
nothing calls this directly
no test coverage detected