public function testMergeWrongArgument()
 {
     $this->expectException(\InvalidArgumentException::class);
     $collection = new CollectionReference();
     $collection->merge(444);
 }