Example #1
0
 /**
  * @covers Paradox\Client::listIndices
  */
 public function testListIndices()
 {
     $indices = $this->client->listIndices($this->collectionName, true);
     $this->assertInternalType('array', $indices, "The indices info should be an array");
     $this->assertCount(3, $indices, "The collection should only have 3 indices");
 }