macro_rules! str_assert_eq {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($arg:tt)+) => { ... };
}Expand description
See std::assert_eq for more information.
Main differences:
- Only accepts arguments which
impl AsRef<str> - Output on assertion failure is printed to stdout as a
Vecof Chunks