class PHPUnit_Framework_MockObject_Stub_Exception

Stubs a method by raising a user-defined exception.

@package PHPUnit_MockObject @author Oliver Schlicht <o.schlicht@bitExpert.de> @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_Exception

File

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

View source
class PHPUnit_Framework_MockObject_Stub_Exception implements PHPUnit_Framework_MockObject_Stub {
  protected $exception;
  public function __construct(Exception $exception) {
    $this->exception = $exception;
  }
  public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
    throw $this->exception;
  }
  public function toString() {
    return sprintf('raise user-specified exception %s', PHPUnit_Util_Type::toString($this->exception));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_MockObject_Stub_Exception::$exception protected property
PHPUnit_Framework_MockObject_Stub_Exception::invoke public function Fakes the processing of the invocation $invocation by returning a specific value. Overrides PHPUnit_Framework_MockObject_Stub::invoke
PHPUnit_Framework_MockObject_Stub_Exception::toString public function Returns a string representation of the object. Overrides PHPUnit_Framework_SelfDescribing::toString
PHPUnit_Framework_MockObject_Stub_Exception::__construct public function