Example #1
0
 public function testEven()
 {
     $data = new Collection(['a', 'b', 'c', 'd', 'e', 'f']);
     $this->assertEquals(['a', 'c', 'e'], $data->even()->all());
 }