(cls)
| 467 | |
| 468 | @classmethod |
| 469 | def setup_test_class(cls): |
| 470 | with testing.db.connect().execution_options( |
| 471 | isolation_level="AUTOCOMMIT" |
| 472 | ) as conn: |
| 473 | try: |
| 474 | conn.exec_driver_sql("DROP FULLTEXT CATALOG Catalog") |
| 475 | except: |
| 476 | pass |
| 477 | |
| 478 | @classmethod |
| 479 | def insert_data(cls, connection): |
nothing calls this directly
no test coverage detected