コード例 #1
0
ファイル: ClientTest.php プロジェクト: f21/paradox
 /**
  * @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");
 }