public function testThatPropertyCanBePlucked()
 {
     $items = [["a" => "b"], ["a" => "c"], ["d" => "e"], null];
     $plucked = CollectionUtility::pluck($items, "a");
     $this->assertEquals(["b", "c", null, null], $plucked);
 }