Example #1
0
 /**
  * @covers think\Response::isExit
  * @todo Implement testIsExit().
  */
 public function testIsExit()
 {
     $isExit = true;
     Response::isExit($isExit);
     $result = Response::isExit();
     $this->assertTrue($isExit, $result);
     Response::isExit(false);
 }