public function testGetEntries()
{
$feed = new CellFeed($this->getSimpleXMLElement("cell-feed"));
$this->assertEquals(6, count($feed->getEntries()));
// The same call needs to be made again to test returning the
// cached version of the entries. required for 100% coverage
$this->assertEquals(6, count($feed->getEntries()));
}