You are here

function exactly in Zircon Profile 8

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

Returns a matcher that matches when the method is executed exactly $count times.

@since Method available since Release 3.0.0

Parameters

int $count:

Return value

PHPUnit_Framework_MockObject_Matcher_InvokedCount

File

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

Code

function exactly($count) {
  return call_user_func_array('PHPUnit_Framework_TestCase::exactly', func_get_args());
}