function at in Zircon Profile 8
Same name and namespace in other branches
Returns a matcher that matches when the method is executed at the given $index.
@since Method available since Release 3.0.0
Parameters
int $index:
Return value
PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex
3 string references to 'at'
- Random::sentences in core/
lib/ Drupal/ Component/ Utility/ Random.php - Generates sentences Latin words, often used as placeholder text.
- xa0.php in core/
lib/ Drupal/ Component/ Transliteration/ data/ xa0.php - xc5.php in core/
lib/ Drupal/ Component/ Transliteration/ data/ xc5.php
File
- vendor/
phpunit/ phpunit/ src/ Framework/ Assert/ Functions.php, line 1769
Code
function at($index) {
return call_user_func_array('PHPUnit_Framework_TestCase::at', func_get_args());
}