function assertNotInstanceOf

Asserts that a variable is not of a given type.

@since Method available since Release 3.5.0

Parameters

string $expected:

mixed $actual:

string $message:

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/Assert/Functions.php, line 1039

Code

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