예제 #1
0
파일: RequestTest.php 프로젝트: mvc5/tests
 /**
  *
  */
 function test_cookie()
 {
     $request = new Request([Arg::COOKIES => ['foo' => 'bar']]);
     $this->assertEquals('bar', $request->cookie('foo'));
 }