GoogleSpreadsheet\Tests\Google\Spreadsheet\ListFeedTest::testInsert PHP Method

testInsert() public method

public testInsert ( )
    public function testInsert()
    {
        $mockServiceRequest = $this->getMockBuilder("Google\\Spreadsheet\\DefaultServiceRequest")->setMethods(array("post"))->disableOriginalConstructor()->getMock();
        $mockServiceRequest->expects($this->once())->method("post")->with($this->equalTo("https://spreadsheets.google.com/feeds/list/G3345eEsfsk60/od6/private/full"), $this->stringContains("<gsx:occupation>software engineer</gsx:occupation>"));
        ServiceRequestFactory::setInstance($mockServiceRequest);
        $this->listFeed->insert(["name" => "asim", "occupation" => "software engineer"]);
    }