Kraken\_Unit\Runtime\Command\Processes\ProcessesStartCommandTest::testApiCommand_InvokesProperAction PHP Метод

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

    public function testApiCommand_InvokesProperAction()
    {
        $aliases = ['alias1', 'alias2'];
        $result = new StdClass();
        $command = $this->createCommand();
        $manager = $this->createManager();
        $manager->expects($this->once())->method('startProcesses')->with($aliases)->will($this->returnValue($result));
        $this->assertSame($result, $this->callProtectedMethod($command, 'command', [['aliases' => $aliases]]));
    }