public function testPrependRejectNonMappableItems()
 {
     $this->setExpectedException('InvalidArgumentException');
     $c = new Collection();
     $c->prepend('string');
 }