(self)
| 248 | self.check_data_integrity(("col1 TIME",), generator) |
| 249 | |
| 250 | def test_DATETIME(self): |
| 251 | ticks = time() |
| 252 | |
| 253 | def generator(row, col): |
| 254 | return self.db_module.TimestampFromTicks(ticks + row * 86400 - col * 1313) |
| 255 | |
| 256 | self.check_data_integrity(("col1 DATETIME",), generator) |
| 257 | |
| 258 | def test_TIMESTAMP(self): |
| 259 | ticks = time() |
nothing calls this directly
no test coverage detected