You are here

function assertNotSameSize in Zircon Profile 8

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

Assert that the size of two arrays (or `Countable` or `Traversable` objects) is not the same.

Parameters

array|Countable|Traversable $expected:

array|Countable|Traversable $actual:

string $message:

File

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

Code

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