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

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

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