getIndices() public method

Gets the status of the indices.
public getIndices ( ) : Index[]
return Elastica\Cluster\Health\Index[]
 public function testGetIndices()
 {
     $indices = $this->_health->getIndices();
     $this->assertInternalType('array', $indices);
     $this->assertEquals(2, count($indices));
     foreach ($indices as $index) {
         $this->assertInstanceOf('Elastica\\Cluster\\Health\\Index', $index);
     }
 }