Macro ratatui::assert_buffer_eq

source ·
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!().