function TableSortExtenderUnitTest::tearDown

Deletes created files, database tables, and reverts all environment changes.

This method needs to be invoked for both unit and integration tests.

Overrides TestBase::tearDown

See also

TestBase::prepareDatabasePrefix()

TestBase::changeDatabasePrefix()

TestBase::prepareEnvironment()

File

drupal/core/modules/system/lib/Drupal/system/Tests/Common/TableSortExtenderUnitTest.php, line 39
Definition of Drupal\system\Tests\Common\TableSortExtenderTest.

Class

TableSortExtenderUnitTest
Tests unicode handling features implemented in unicode.inc.

Namespace

Drupal\system\Tests\Common

Code

function tearDown() {

  // Revert $_GET.
  $_GET = $this->GET;
  parent::tearDown();
}