class PHPUnit_Framework_MockObject_Stub_Exception in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
- class \PHPUnit_Framework_MockObject_Stub_Exception implements PHPUnit_Framework_MockObject_Stub
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PHPUnit_Framework_MockObject_Stub_Exception:: |
protected | property | ||
PHPUnit_Framework_MockObject_Stub_Exception:: |
public | function |
Fakes the processing of the invocation $invocation by returning a
specific value. Overrides PHPUnit_Framework_MockObject_Stub:: |
|
PHPUnit_Framework_MockObject_Stub_Exception:: |
public | function |
Returns a string representation of the object. Overrides PHPUnit_Framework_SelfDescribing:: |
|
PHPUnit_Framework_MockObject_Stub_Exception:: |
public | function |