Exemplo n.º 1
0
 public function testSetGetCookieStore()
 {
     $http = new Http();
     $this->assertEmpty($http->getCookieStore());
     $http->setCookieStore(new CookieStore\Memory());
     $this->assertInstanceOf('PSX\\Http\\CookieStore\\Memory', $http->getCookieStore());
 }