()
| 167 | @staticmethod |
| 168 | @pytest.fixture(scope="class") |
| 169 | def test_db(): |
| 170 | db = create_test_db() |
| 171 | yield db |
| 172 | clean_up_test_db(db) |
| 173 | |
| 174 | def test_schema_metadata_double(self, test_db): |
| 175 | self.run_schema_metadata_validation('double', test_db) |
nothing calls this directly
no test coverage detected