macro_rules! assert_buffer_eq {
($actual_expr:expr, $expected_expr:expr) => { ... };
}
๐Deprecated: use assert_eq!(&actual, &expected)
Expand description
Assert that two buffers are equal by comparing their areas and content.
ยงPanics
When the buffers differ this method panics and displays the differences similar to
assert_eq!()
.