Файл: gapps/vendor/phpspec/prophecy/spec/Prophecy/Exception/Doubler/ClassMirrorExceptionSpec.php
Строк: 28
<?php
namespace specProphecyExceptionDoubler;
use PhpSpecObjectBehavior;
class ClassMirrorExceptionSpec extends ObjectBehavior
{
function let(ReflectionClass $class)
{
$this->beConstructedWith('', $class);
}
function it_is_a_prophecy_exception()
{
$this->shouldBeAnInstanceOf('ProphecyExceptionException');
$this->shouldBeAnInstanceOf('ProphecyExceptionDoublerDoublerException');
}
function it_contains_a_reflected_class_link($class)
{
$this->getReflectedClass()->shouldReturn($class);
}
}