Example #1
0
 public function testIsEmpty()
 {
     foreach (array(204, 304) as $code) {
         $response = new Response('', $code);
         $this->assertTrue($response->isEmpty());
     }
     $response = new Response('', 200);
     $this->assertFalse($response->isEmpty());
 }