public function testGetIds()
 {
     $collection = new ResourceIdentifierCollection([$this->a, $this->b]);
     $expected = [$this->a->getId(), $this->b->getId()];
     $this->assertEquals($expected, $collection->getIds());
 }