%PDF- %PDF-
Direktori : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Exception/ |
Current File : /var/www/html/car_rent/vendor/phpspec/phpspec/spec/PhpSpec/Exception/ExceptionSpec.php |
<?php namespace spec\PhpSpec\Exception; use PhpSpec\ObjectBehavior; use ReflectionMethod; class ExceptionSpec extends ObjectBehavior { function it_extends_basic_exception() { $this->shouldBeAnInstanceOf('Exception'); } function it_could_have_a_cause(ReflectionMethod $cause) { $this->setCause($cause); $this->getCause()->shouldReturn($cause); } }