You are here

function simpletest_clean_environment in Drupal 8

Same name and namespace in other branches
  1. 7 modules/simpletest/simpletest.module \simpletest_clean_environment()

Removes all temporary database tables and directories.

Deprecated

in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or use \Drupal\Core\Test\EnvironmentCleaner::cleanEnvironment() instead.

See also

https://www.drupal.org/node/3076634

1 call to simpletest_clean_environment()
DeprecatedCleanupTest::testDeprecatedCleanFunctions in core/modules/simpletest/tests/src/Kernel/DeprecatedCleanupTest.php
@expectedDeprecation simpletest_clean_environment is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or use…
1 string reference to 'simpletest_clean_environment'
SimpletestTestForm::buildForm in core/modules/simpletest/src/Form/SimpletestTestForm.php
Form constructor.

File

core/modules/simpletest/simpletest.module, line 612
Provides testing functionality.

Code

function simpletest_clean_environment() {
  @trigger_error(__FUNCTION__ . ' is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Access the environment_cleaner service and call its cleanEnvironment() method, or use \\Drupal\\Core\\Test\\EnvironmentCleaner::cleanEnvironment() instead.. See https://www.drupal.org/node/3076634', E_USER_DEPRECATED);

  /* @var $cleaner \Drupal\simpletest\EnvironmentCleanerService */
  $cleaner = \Drupal::service('environment_cleaner');
  $cleaner
    ->cleanEnvironment();
}