It would be great if the assertion macros were to support specifying an error message with format parameters as the standard library assertions do. Example: ```rust assert_eq!(1, 2, "Numbers in test case {} didn't match", case); ```