コード例 #1
0
 public function testGetKeys()
 {
     $this->coll->add('keyOne', 'testing1');
     $this->coll->add('keyTwo', 'testing2');
     $this->coll->add('keyThree', 'testing3');
     $this->assertEquals(array('keyOne', 'keyTwo', 'keyThree'), $this->coll->toKeysArray());
 }