class DoubleExceptionSpec in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/DoubleExceptionSpec.php \spec\Prophecy\Exception\Doubler\DoubleExceptionSpec
Hierarchy
- class \spec\Prophecy\Exception\Doubler\DoubleExceptionSpec extends \PhpSpec\ObjectBehavior
Expanded class hierarchy of DoubleExceptionSpec
File
- vendor/
phpspec/ prophecy/ spec/ Prophecy/ Exception/ Doubler/ DoubleExceptionSpec.php, line 7
Namespace
spec\Prophecy\Exception\DoublerView source
class DoubleExceptionSpec extends ObjectBehavior {
function it_is_a_double_exception() {
$this
->shouldBeAnInstanceOf('RuntimeException');
$this
->shouldBeAnInstanceOf('Prophecy\\Exception\\Doubler\\DoublerException');
}
}