# New features
- [x] assert_match_option with right and false awaiting value. Eg: `assert_match_option!(result, true, false)`.
- [x] assert_match_result with right and false awaiting value. Eg: `assert_match_result!(result, true, false)`.
- [x] assert_slices_eq for slices comparison. Eg: `assert_slices_eq!([1,2,3,4,5], [1,2,3,4,5])`;
- [x] assert_slices_ne for slices comparison. Eg: `assert_slices_ne!([1,2,3], [1,2,3,4])` or `assert_slices_ne!([1,2,3,4], [1,2,3,0])`;
- [x] assert_match_values for specific value comparison. Eg: `assert_match_values(true, true, false)`;
- [x] assert_not_match_values for specific value comparison. Eg: `assert_not_match_values(true, false, true)`;
- [x] facility_match_values, a support macro that is using into other macros. Eg: `assert!(facility_match_values!(true, true, false).is_ok())`;
- [x] assert_same_slices, a macro to verify if 2 slices have the same content. Eg: `assert_same_slices!([1,2,3,4], [1,2,3,4])`;
- [x] assert_not_same_slices, a macro to verify if 2 slices have not the same content. Eg: `assert_not_same_slices!([1,2,3,4], [6,7,8])`.