[][src]Macro vector_assertions::assert_vec_eq

macro_rules! assert_vec_eq {
    ($left:expr, $right:expr) => { ... };
    ($left:expr, $right:expr,) => { ... };
    ($left:expr, $right:expr, $($arg:tt)+) => { ... };
}

Asserts that two expressions are equal to each other (using [PartialEq, Hash]).

On panic, this macro will print the values of the expressions with their debug representations.

Like assert!, this macro has a second form, where a custom panic message can be provided.

Examples

    let a = vec![1, 2];
    let b = vec![2, 1];

    assert_vec_eq!(a, b, "we are testing addition with {} and {}", "a", "b");
}