utmt 0.4.0

Unit Test Macros. Several tools and macro for unit test improving.
Documentation
1
2
3
4
5
6
# 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])`.