(self)
| 243 | generator) |
| 244 | |
| 245 | def test_LONG(self): |
| 246 | def generator(row,col): |
| 247 | if col == 0: |
| 248 | return row |
| 249 | else: |
| 250 | return self.BLOBUText # 'BLOB Text ' * 1024 |
| 251 | self.check_data_integrity( |
| 252 | ('col1 INT','col2 LONG'), |
| 253 | generator) |
| 254 | |
| 255 | def test_TEXT(self): |
| 256 | def generator(row,col): |
nothing calls this directly
no test coverage detected