Detect
assert!(a == b)
(and
assert!(a != b)
) macro call that can be simplified into
assert_eq!(a, b)
(or
assert_ne!(a, b)
).