()
| 119 | |
| 120 | #[test] |
| 121 | fn bind_string_param() { |
| 122 | let result = bind_and_format( |
| 123 | "SELECT * FROM users WHERE name = $1", |
| 124 | &[ParamValue::Text("alice".into())], |
| 125 | ); |
| 126 | assert!(result.contains("name = 'alice'"), "got: {result}"); |
| 127 | } |
| 128 | |
| 129 | #[test] |
| 130 | fn bind_null_param() { |
nothing calls this directly
no test coverage detected