public function testWithoutValueNotContained()
 {
     $expected = ['a', 'b'];
     $collection = new Collection($expected);
     $this->assertEquals($collection->toArray(), $collection->without('c')->toArray());
 }