abstract fun assertNotEquals(first: Any, second: Any): TestContext
Assert the first argument is not equals to the second argument. If the arguments are equals an assertion error is thrown otherwise the execution continue.
first - the first object to test
second - the second object to test
Return
a reference to this, so the API can be used fluently
abstract fun assertNotEquals(first: Any, second: Any, message: String): TestContext
Assert the first argument is not equals to the second argument. If the arguments are equals an assertion error is thrown otherwise the execution continue.
first - the first object to test
second - the second object to test
Return
a reference to this, so the API can be used fluently