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

public rebootNode ( Node $node ) : Guzzle\Http\Message\Response
$node LibCloud\Compute\Model\Node
Результат Guzzle\Http\Message\Response
 /**
  * @depends testListNodesWithId
  */
 public function testRebootNode($node)
 {
     $this->addMockSubscriber($this->getTestFilePath('Server'));
     $this->addMockSubscriber($this->getTestFilePath('Server_Meta'));
     $this->addMockSubscriber($this->getTestFilePath('Server_Reboot'));
     $r = $this->provider->rebootNode($node);
     $this->assertSame(202, $r->getStatusCode(), 'rebootNode returns the API response for a successful reboot');
 }