class PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls

Stubs a method by returning a user-defined stack of values.

@package PHPUnit_MockObject @author Patrick Müller <elias0@gmx.net> @author Sebastian Bergmann <sb@sebastian-bergmann.de> @copyright 2010-2013 Sebastian Bergmann <sb@sebastian-bergmann.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @version Release: @package_version@ @link http://github.com/sebastianbergmann/phpunit-mock-objects @since Class available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Stub/ConsecutiveCalls.php, line 58

View source
class PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls implements PHPUnit_Framework_MockObject_Stub {
  protected $stack;
  protected $value;
  public function __construct($stack) {
    $this->stack = $stack;
  }
  public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
    $this->value = array_shift($this->stack);
    if ($this->value instanceof PHPUnit_Framework_MockObject_Stub) {
      $this->value = $this->value
        ->invoke($invocation);
    }
    return $this->value;
  }
  public function toString() {
    return sprintf('return user-specified value %s', PHPUnit_Util_Type::toString($this->value));
  }

}

Members