function assertSameSize

Assert that the size of two arrays (or `Countable` or `Iterator` objects) is 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 1234

Code

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