public function testGet()
 {
     $this->assertNull($this->arrayCollection->offsetGet('not_exists_key'));
     $this->assertEquals($this->data[1], $this->arrayCollection->offsetGet(1));
 }