コード例 #1
0
ファイル: responseTest.php プロジェクト: Lofanmi/think
 /**
  * @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);
 }