spec\Phpro\SoapClient\CodeGenerator\Util\NormalizerSpec::it_gets_classname_from_fqn PHP Méthode

it_gets_classname_from_fqn() public méthode

    function it_gets_classname_from_fqn()
    {
        $this->getClassNameFromFQN('MyClass')->shouldReturn('MyClass');
        $this->getClassNameFromFQN('\\Namespace\\MyClass')->shouldReturn('MyClass');
        $this->getClassNameFromFQN('Vendor\\Namespace\\MyClass')->shouldReturn('MyClass');
    }