class ClassCreatorExceptionSpec in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/ClassCreatorExceptionSpec.php \spec\Prophecy\Exception\Doubler\ClassCreatorExceptionSpec
Hierarchy
- class \spec\Prophecy\Exception\Doubler\ClassCreatorExceptionSpec extends \PhpSpec\ObjectBehavior
Expanded class hierarchy of ClassCreatorExceptionSpec
File
- vendor/
phpspec/ prophecy/ spec/ Prophecy/ Exception/ Doubler/ ClassCreatorExceptionSpec.php, line 8
Namespace
spec\Prophecy\Exception\DoublerView source
class ClassCreatorExceptionSpec extends ObjectBehavior {
/**
* @param \Prophecy\Doubler\Generator\Node\ClassNode $node
*/
function let($node) {
$this
->beConstructedWith('', $node);
}
function it_is_a_prophecy_exception() {
$this
->shouldBeAnInstanceOf('Prophecy\\Exception\\Exception');
$this
->shouldBeAnInstanceOf('Prophecy\\Exception\\Doubler\\DoublerException');
}
function it_contains_a_reflected_node($node) {
$this
->getClassNode()
->shouldReturn($node);
}
}