Neos\Flow\Tests\Unit\Cli\CommandTest::constructRendersACommandIdentifierByTheGivenControllerAndCommandName PHP Метод

constructRendersACommandIdentifierByTheGivenControllerAndCommandName() публичный Метод

public constructRendersACommandIdentifierByTheGivenControllerAndCommandName ( $controllerClassName, $commandName, $expectedCommandIdentifier )
    public function constructRendersACommandIdentifierByTheGivenControllerAndCommandName($controllerClassName, $commandName, $expectedCommandIdentifier)
    {
        $command = new Cli\Command($controllerClassName, $commandName);
        $this->assertEquals($expectedCommandIdentifier, $command->getCommandIdentifier());
    }