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

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

    public function getArgumentDefinitionsReturnsEmptyArrayIfCommandExpectsNoArguments()
    {
        $this->methodReflection->expects($this->atLeastOnce())->method('getParameters')->will($this->returnValue([]));
        $this->assertSame([], $this->command->getArgumentDefinitions());
    }