public static function PHPUnit_Framework_TestCase::onConsecutiveCalls

@since Method available since Release 3.0.0

Parameters

mixed $value, ...:

Return value

PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls

3 calls to PHPUnit_Framework_TestCase::onConsecutiveCalls()
PHP_CodeCoverage_TestCase::getCoverageForBankAccount in drupal/core/vendor/phpunit/php-code-coverage/Tests/TestCase.php
PHP_CodeCoverage_TestCase::getCoverageForBankAccountForFirstTwoTests in drupal/core/vendor/phpunit/php-code-coverage/Tests/TestCase.php
PHP_CodeCoverage_TestCase::getCoverageForBankAccountForLastTwoTests in drupal/core/vendor/phpunit/php-code-coverage/Tests/TestCase.php

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestCase.php, line 1648

Class

PHPUnit_Framework_TestCase
A TestCase defines the fixture to run multiple tests.

Code

public static function onConsecutiveCalls() {
  $args = func_get_args();
  return new PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls($args);
}