public function testGetKeys()
 {
     $this->collection[] = 'one';
     $this->collection[] = 'two';
     $this->assertEquals(array(0, 1), $this->collection->getKeys());
 }