Example #1
0
	public function testUserAgent()
	{
		$this->assertEquals('Nella\Utils\Curl ' . Framework::VERSION . " (http://nella-project.org)", $this->wrapper->userAgent, "->getUserAgent()");
		$this->assertEquals('Nella\Utils\Curl ' . Framework::VERSION . " (http://nella-project.org)", $this->wrapper->userAgent, "->userAgent");
		$this->assertEquals("Test 1", $this->wrapper->setUserAgent("Test 1")->userAgent, "->setUserAgent()");
		$this->wrapper->userAgent = "Test 2";
		$this->assertEquals("Test 2", $this->wrapper->userAgent, "->userAgent setter");
	}