()
| 134 | |
| 135 | #[test] |
| 136 | fn nonquoted_string_parameter() { |
| 137 | let mut parser = Statement::new().unwrap(); |
| 138 | let result = parser.parse_and_execute("[concat(abc)]", &Context::new()); |
| 139 | assert!(result.is_err()); |
| 140 | } |
| 141 | |
| 142 | #[test] |
| 143 | fn missing_endquote_string_parameter() { |
nothing calls this directly
no test coverage detected