public function testGetValues()
 {
     $this->collection[] = 'one';
     $this->collection[] = 'two';
     $this->assertEquals(array('one', 'two'), $this->collection->getValues());
 }