GoogleSpreadsheet\Tests\Google\Spreadsheet\DefaultServiceRequestTest::testGet PHP Method

testGet() public method

public testGet ( )
    public function testGet()
    {
        $mockRequest = $this->getMockBuilder(DefaultServiceRequest::class)->setMethods(["execute"])->disableOriginalConstructor()->getMock();
        $mockRequest->expects($this->once())->method("execute")->will($this->returnValue("<entry/>"));
        $this->assertEquals("<entry/>", $mockRequest->get("http://test"));
    }