AdWordsUserTest::testIncludeUtiliesInUserAgent PHP Method

testIncludeUtiliesInUserAgent() public method

Tests that the AdWordsUser object recognizes the settings of including user agents of ads utilities into the SOAP headers.
    public function testIncludeUtiliesInUserAgent()
    {
        $user = new AdWordsUser($this->authIniFilePath, 'devToken', null, null, null, $this->mockOAuth2Credential);
        $user->setIncludeUtilitiesInUserAgent('true');
        $this->assertEquals($user->getIsIncludeUtilitiesInUserAgent(), 'true');
    }