()
| 258 | |
| 259 | #[test] |
| 260 | fn test_parse_u32_empty() { |
| 261 | check_parse_error( |
| 262 | p_u32, |
| 263 | "", |
| 264 | r#"Parse error |
| 265 | expected integer at the end of input"#, |
| 266 | ); |
| 267 | } |
| 268 | |
| 269 | #[test] |
| 270 | fn test_parse_u32_invalid() { |
nothing calls this directly
no test coverage detected