public function testCanRemoveNullValuesByKey()
 {
     $this->collection->add(null);
     $this->collection->remove(0);
     $this->assertTrue($this->collection->isEmpty());
 }