()
| 130 | |
| 131 | #[test] |
| 132 | fn extract_generates_when_missing() { |
| 133 | let headers = axum::http::HeaderMap::new(); |
| 134 | let id = extract_from_headers(&headers); |
| 135 | assert_ne!(id, TraceId::ZERO); |
| 136 | } |
| 137 | |
| 138 | #[test] |
| 139 | fn pgwire_param_extraction_roundtrips() { |
nothing calls this directly
no test coverage detected