Exemplo n.º 1
0
 public function testSetGetHandler()
 {
     $http = new Http();
     $this->assertInstanceOf('PSX\\Http\\Handler\\Curl', $http->getHandler());
     $http->setHandler(new Handler\Socks());
     $this->assertInstanceOf('PSX\\Http\\Handler\\Socks', $http->getHandler());
 }