(og: SchemaId)
| 2586 | #[mz_ore::test] |
| 2587 | fn proptest_schema_id_roundtrips() { |
| 2588 | fn testcase(og: SchemaId) { |
| 2589 | let s = og.to_string(); |
| 2590 | let rnd: SchemaId = s.parse().unwrap(); |
| 2591 | assert_eq!(og, rnd); |
| 2592 | } |
| 2593 | |
| 2594 | proptest!(|(id in any::<SchemaId>())| { |
| 2595 | testcase(id); |