예제 #1
0
파일: CookieTest.php 프로젝트: wagnert/http
 public function testHttpCookieToStringMethodWithBooleanFalseAsValue()
 {
     $cookie = new HttpCookie('testCookie');
     $cookie->setValue(false);
     $this->assertSame($cookie->__toString(), 'testCookie=0; Path=/; HttpOnly');
 }