GoogleSpreadsheet\Tests\Google\Spreadsheet\CellFeedTest::testGetCell PHP Method

testGetCell() public method

public testGetCell ( )
    public function testGetCell()
    {
        $feed = new CellFeed($this->getSimpleXMLElement("cell-feed"));
        $this->assertTrue($feed->getCell(1, 1) instanceof CellEntry);
        $this->assertNull($feed->getCell(5, 3));
    }