function assertNotSameSize

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

Parameters

array|Countable|Iterator $expected:

array|Countable|Iterator $actual:

string $message:

File

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

Code

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