public function testAllowsSettingAdditionalResourceLinks()
 {
     $links = new LinkCollection();
     $links->add(new Link('describedby'));
     $links->add(new Link('orders'));
     $hal = new HalCollection(array(), 'item/route');
     $hal->setResourceLinks($links);
     $this->assertSame($links, $hal->getResourceLinks());
     $this->assertSame($links, $hal->resourceLinks);
 }