()
| 152 | |
| 153 | #[test] |
| 154 | fn test_extract_json_direct() { |
| 155 | let input = r#"{"name": "Alice", "age": 30}"#; |
| 156 | let result = extract_json_value(input).unwrap(); |
| 157 | assert_eq!(result["name"], "Alice"); |
| 158 | assert_eq!(result["age"], 30); |
| 159 | } |
| 160 | |
| 161 | #[test] |
| 162 | fn test_extract_json_with_whitespace() { |
nothing calls this directly
no test coverage detected