Vector assertion

Compares if two vectors contain the same values.

Example

```rust

[macrouse] extern crate vectorassertions;

fn main() { let a = vec![1, 2]; let b = vec![2, 1]; assertveceq!(a, b, "we are testing addition with {} and {}", "a", "b"); } ```