()
| 275 | |
| 276 | #[test] |
| 277 | fn translate_params_passes_through_empty() { |
| 278 | // Empty params is a no-op; translate produces an empty vec. |
| 279 | let translated = translate_params(&[]).expect("empty translate is fine"); |
| 280 | assert!(translated.is_empty()); |
| 281 | } |
| 282 | |
| 283 | #[test] |
| 284 | fn translate_params_accepts_bound_parameters() { |
nothing calls this directly
no test coverage detected