Файл: gapps/vendor/phpspec/prophecy/spec/Prophecy/Doubler/NameGeneratorSpec.php
Строк: 91
<?php
namespace specProphecyDoubler;
use PhpSpecObjectBehavior;
class NameGeneratorSpec extends ObjectBehavior
{
function its_name_generates_name_based_on_simple_class_reflection(ReflectionClass $class)
{
$class->getName()->willReturn('stdClass');
$this->name($class, array())->shouldStartWith('DoublestdClass\');
}
function its_name_generates_name_based_on_namespaced_class_reflection(ReflectionClass $class)
{
$class->getName()->willReturn('SomeCustomClass');
$this->name($class, array())->shouldStartWith('DoubleSomeCustomClassP');
}
function its_name_generates_name_based_on_interface_shortnames(
ReflectionClass $interface1,
ReflectionClass $interface2
) {
$interface1->getShortName()->willReturn('HandlerInterface');
$interface2->getShortName()->willReturn('LoaderInterface');
$this->name(null, array($interface1, $interface2))->shouldStartWith(
'DoubleHandlerInterfaceLoaderInterfaceP'
);
}
function it_generates_proper_name_for_no_class_and_interfaces_list()
{
$this->name(null, array())->shouldStartWith('DoublestdClassP');
}
function its_name_generates_name_based_only_on_class_if_its_available(
ReflectionClass $class,
ReflectionClass $interface1,
ReflectionClass $interface2
) {
$class->getName()->willReturn('SomeCustomClass');
$interface1->getShortName()->willReturn('HandlerInterface');
$interface2->getShortName()->willReturn('LoaderInterface');
$this->name($class, array($interface1, $interface2))->shouldStartWith(
'DoubleSomeCustomClassP'
);
}
public function getMatchers()
{
return array(
'startWith' => function ($subject, $string) {
return 0 === strpos($subject, $string);
},
);
}
}