コード例 #1
0
ファイル: NodeIntegrationTest.php プロジェクト: 0x20h/phloppy
 public function testInfo()
 {
     $server = new Node($this->stream);
     $info = $server->info();
     $this->assertArrayHasKey('Server', $info);
     $this->assertArrayHasKey('Clients', $info);
     $this->assertArrayHasKey('Memory', $info);
     $this->assertArrayHasKey('Jobs', $info);
     $this->assertArrayHasKey('Queues', $info);
     $this->assertArrayHasKey('Persistence', $info);
     $this->assertArrayHasKey('Stats', $info);
 }