/**
  * Tests RestFulCollection->getEntry()
  */
 public function testGetEntry()
 {
     $entry = array();
     $entry[] = "Entry";
     $this->RestFulCollection->setEntry($entry);
     $this->assertEquals($entry, $this->RestFulCollection->getEntry());
 }