public function testIndexOf()
 {
     $collection = new Collection(array(1, 2));
     $this->assertEquals(1, $collection->indexOf(2));
     $this->assertEquals(0, $collection->indexOf(1));
     $this->assertEquals(-1, $collection->indexOf(3));
 }