PayPal\Test\Core\PayPalHttpConfigTest::testUserAgent PHP Method

testUserAgent() public method

public testUserAgent ( )
    public function testUserAgent()
    {
        $ua = 'UAString';
        $o = new PayPalHttpConfig();
        $o->setUserAgent($ua);
        $curlOpts = $o->getCurlOptions();
        $this->assertEquals($ua, $curlOpts[CURLOPT_USERAGENT]);
    }