cURL\Tests\OptionsTest::testSingleSet PHP Method

testSingleSet() public method

public testSingleSet ( )
    public function testSingleSet()
    {
        $opts = new Options();
        $opts->set(CURLOPT_TIMEOUT, 123);
        $opts->set(CURLOPT_USERAGENT, 'browser');
        $this->assertsForSet($opts);
    }