function assertNotInstanceOf in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/Assert/Functions.php \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
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1039
Code
function assertNotInstanceOf($expected, $actual, $message = '') {
return call_user_func_array('PHPUnit_Framework_Assert::assertNotInstanceOf', func_get_args());
}