-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accept extra parameters in assert_eq!, pass them to panic! #1604
Comments
Good idea. I would be more inclined toward making the whole format string customisable though: assert_eq!(..., ..., "blah blah '{left}' '{right}' blah {}", some_value); ($left:expr , $right:expr, $fmt:expr, $($arg:tt)*) => ({
match (&($left), &($right)) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
panic!($fmt, left=left_val, right=right_val, $($arg)*)
}
}
}
}); |
This has always been strange, especially considering that without this functionality, it could be a normal function instead. |
@bjz I proposed concatenating instead of replacing the format string based on the assumption that, if you use @ticki With a function instead of a macro, the potentially-expensive string formatting would have to be done even when it’s not necessary (when the two values are equal and the assertion succeeds). |
Oh, don't get me wrong. I simple state that, as it is currently, having it as a macro is unnecessary since there is no formatting involved. |
rust-lang/rust#33976 was merged, can this be closed? |
Indeed! |
The
assert!
macro has a one-argument form that simply takes a boolean expression, and a "detailed" form where extra arguments are passed topanic!
, allowing the user to change the panic message.The
assert_eq!
macro however only has one form: two arguments that are compared for equality.https://twitter.com/natpryce/status/656110689082286080?s=09
I propose adding another form form
assert_eq!
where additional arguments are passed topanic!
. But unlikeassert!
, I think this should add to the default message instead of replacing it. Something like:CC @alexcrichton
The text was updated successfully, but these errors were encountered: