()
| 268 | |
| 269 | #[test] |
| 270 | fn test_parse_u32_invalid() { |
| 271 | check_parse_error( |
| 272 | p_u32, |
| 273 | "x", |
| 274 | r#"Parse error |
| 275 | expected integer at character 0: "x""#, |
| 276 | ); |
| 277 | } |
| 278 | |
| 279 | #[test] |
| 280 | fn test_parse_u32_underscores() { |
nothing calls this directly
no test coverage detected