()
| 233 | |
| 234 | #[test] |
| 235 | fn test_partial_json_unclosed_object() { |
| 236 | let input = r#"{"name": "Alice", "age": 30"#; |
| 237 | let result = try_parse_partial_json(input).unwrap(); |
| 238 | assert_eq!(result["name"], "Alice"); |
| 239 | assert_eq!(result["age"], 30); |
| 240 | } |
| 241 | |
| 242 | #[test] |
| 243 | fn test_partial_json_unclosed_array() { |
nothing calls this directly
no test coverage detected