()
| 13 | static SHARED_FIXTURE: OnceLock<TestFixture> = OnceLock::new(); |
| 14 | |
| 15 | fn get_shared_fixture() -> &'static TestFixture { |
| 16 | SHARED_FIXTURE.get_or_init(|| TestFixture::empty().expect("Failed to create shared fixture")) |
| 17 | } |
| 18 | |
| 19 | #[test] |
| 20 | fn test_schema_ddl_operations() { |
no outgoing calls
no test coverage detected