You are here

class PHPUnit_Framework_MockObject_Stub_Exception in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php \PHPUnit_Framework_MockObject_Stub_Exception

Stubs a method by raising a user-defined exception.

@since Class available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_Exception

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/Exception.php, line 18

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() {
    $exporter = new Exporter();
    return sprintf('raise user-specified exception %s', $exporter
      ->export($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