Ejemplo n.º 1
0
 /**
  * Test isInformational
  */
 public function testIsInformational()
 {
     $r1 = new Slim_Http_Response();
     $r2 = new Slim_Http_Response();
     $r1->status(100);
     $r2->status(200);
     $this->assertTrue($r1->isInformational());
     $this->assertFalse($r2->isInformational());
 }