GoogleSpreadsheet\Tests\Google\Spreadsheet\CellFeedTest::testGetEntries PHP 메소드

testGetEntries() 공개 메소드

public testGetEntries ( )
    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()));
    }