Expand description
This is a macro for writing Rust test code in an easy way.
Macrosยง
- test_
assert - Test that the given argument is expected to be true.
- test_
assert_ eq - Generate a test code that internally uses assert_eq!.
- test_
assert_ ne - Generate a test code that internally uses assert_ne!.
- test_
should_ panic - Test to see if it panics as expected.