Kraken\_Unit\Console\Client\Command\Project\ProjectStartCommandTest::testApiCommand_ReturnsCommandData PHP Метод

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

    public function testApiCommand_ReturnsCommandData()
    {
        $command = $this->createCommand(['informServer']);
        $command->expects($this->once())->method('informServer')->with(null, 'project:start', []);
        $input = $this->createInputMock();
        $output = $this->createOutputMock();
        $this->callProtectedMethod($command, 'command', [$input, $output]);
    }