Example #1
0
	public function testOptions()
	{
		// Option
		$this->assertTrue(is_string($this->wrapper->getOption('useragent')), "->getOption()");
		$this->wrapper->setOption('useragent', "Test");
		$this->assertEquals("Test", $this->wrapper->getOption('useragent'), "->setOption()");

		// Options
		$this->assertTrue(is_array($this->wrapper->getOptions()), "->getOptions()");
		$this->assertTrue(is_array($this->wrapper->options), "->options");
	}