ratatui

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