mockery_teardown() публичный Метод

Tear down tasks for this container
public mockery_teardown ( ) : void
Результат void
Пример #1
0
 /**
  * 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;
 }
Пример #2
0
 /**
  * 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()
 {
     foreach (self::$_filesToCleanUp as $fileName) {
         @unlink($fileName);
     }
     if (is_null(self::$_container)) {
         return;
     }
     self::$_container->mockery_teardown();
     self::$_container->mockery_close();
     self::$_container = null;
 }