(self)
| 198 | self.cursor.execute("drop table %s" % (self.table)) |
| 199 | |
| 200 | def test_CHAR(self): |
| 201 | # Character data |
| 202 | def generator(row, col): |
| 203 | return ("%i" % ((row + col) % 10)) * 255 |
| 204 | |
| 205 | self.check_data_integrity(("col1 char(255)", "col2 char(255)"), generator) |
| 206 | |
| 207 | def test_INT(self): |
| 208 | # Number data |
nothing calls this directly
no test coverage detected