Файл: gapps/vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/ClassCreatorExceptionSpec.php
Строк: 33
<?php
namespace specProphecyExceptionDoubler;
use PhpSpecObjectBehavior;
use ProphecyDoublerGeneratorNodeClassNode;
use specProphecyExceptionProphecy;
class ClassCreatorExceptionSpec extends ObjectBehavior
{
function let(ClassNode $node)
{
$this->beConstructedWith('', $node);
}
function it_is_a_prophecy_exception()
{
$this->shouldBeAnInstanceOf('ProphecyExceptionException');
$this->shouldBeAnInstanceOf('ProphecyExceptionDoublerDoublerException');
}
function it_contains_a_reflected_node($node)
{
$this->getClassNode()->shouldReturn($node);
}
}