You are here

function NameGeneratorSpec::its_name_generates_name_based_on_interface_shortnames in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/spec/Prophecy/Doubler/NameGeneratorSpec.php \spec\Prophecy\Doubler\NameGeneratorSpec::its_name_generates_name_based_on_interface_shortnames()

Parameters

\ReflectionClass $interface1:

\ReflectionClass $interface2:

File

vendor/phpspec/prophecy/spec/Prophecy/Doubler/NameGeneratorSpec.php, line 31

Class

NameGeneratorSpec

Namespace

spec\Prophecy\Doubler

Code

function its_name_generates_name_based_on_interface_shortnames($interface1, $interface2) {
  $interface1
    ->getShortName()
    ->willReturn('HandlerInterface');
  $interface2
    ->getShortName()
    ->willReturn('LoaderInterface');
  $this
    ->name(null, array(
    $interface1,
    $interface2,
  ))
    ->shouldStartWith('Double\\HandlerInterface\\LoaderInterface\\P');
}