NotEquals asserts that the supplied value is not equal to the test value.
(test interface{})
| 69 | |
| 70 | // NotEquals asserts that the supplied value is not equal to the test value. |
| 71 | func (o OnValue) NotEquals(test interface{}) bool { |
| 72 | return o.Compare(o.value, "!=", test).Test(o.value != test) |
| 73 | } |
| 74 | |
| 75 | // CustomDeepEquals asserts that the supplied value is equal to the expected |
| 76 | // value using compare.Diff and the custom comparators. |