(cls)
| 481 | |
| 482 | @classmethod |
| 483 | def setup_test_class(cls): |
| 484 | with testing.db.connect().execution_options( |
| 485 | isolation_level="AUTOCOMMIT" |
| 486 | ) as conn: |
| 487 | try: |
| 488 | conn.exec_driver_sql("DROP FULLTEXT CATALOG Catalog") |
| 489 | except: |
| 490 | pass |
| 491 | |
| 492 | @classmethod |
| 493 | def insert_data(cls, connection): |
nothing calls this directly
no test coverage detected