コード例 #1
0
ファイル: _ide_helper.php プロジェクト: satriashp/tour
 /**
  * Determine if we are running unit tests.
  *
  * @return bool 
  * @static 
  */
 public static function runningUnitTests()
 {
     return \Illuminate\Foundation\Application::runningUnitTests();
 }
コード例 #2
0
ファイル: VerifyCsrfToken.php プロジェクト: n6ither/vixit
 /**
  * Determine if the application is running unit tests.
  *
  * @return bool
  */
 protected function runningUnitTests()
 {
     return $this->app->runningInConsole() && $this->app->runningUnitTests();
 }