Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
assert_not_equal(exp, act, msg=nil)
public
Tests if expected is not equal to actual.
An optional failure message may be provided as
the final argument.
# File lib/test/unit/assertions.rb, line 270
def assert_not_equal(exp, act, msg=nil)
msg = message(msg) { "<#{mu_pp(exp)}> expected to be != to\n<#{mu_pp(act)}>" }
assert(exp != act, msg)
end