コード例 #1
0
ファイル: Mockery.php プロジェクト: ehough/mockery
 /**
  * Static shortcut to closing up and verifying all mocks in the global
  * container, and resetting the container static variable to null
  *
  * @return void
  */
 public static function close()
 {
     if (is_null(self::$_container)) {
         return;
     }
     self::$_container->mockery_teardown();
     self::$_container->mockery_close();
     self::$_container = null;
 }