public function testSkipMapCollector()
 {
     $array = ['a' => 1, 'b' => 2, 'c' => 3, 'd' => 4, 'e' => 5, 'f' => 6];
     $stream = new Stream($array);
     $stream->skip(3);
     $res = $stream->collect(new MapCollector());
     $this->assertEquals(['d' => 4, 'e' => 5, 'f' => 6], $res);
 }