/**
  * Test getting index of an element
  *
  * @return void
  */
 public function testIndexOf()
 {
     $this->assertEquals(1, $this->collection->indexOf(2));
     $this->assertEquals('a', $this->collection->indexOf(4));
     $this->assertFalse($this->collection->indexOf(7));
 }