You are here

function assertNotSame in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \assertNotSame()

Asserts that two variables do not have the same type and value. Used on objects, it asserts that two variables do not reference the same object.

Parameters

mixed $expected:

mixed $actual:

string $message:

File

vendor/phpunit/phpunit/src/Framework/Assert/Functions.php, line 1117

Code

function assertNotSame($expected, $actual, $message = '') {
  return call_user_func_array('PHPUnit_Framework_Assert::assertNotSame', func_get_args());
}