function TableSortExtenderUnitTest::setUp

Sets up unit test environment.

Unlike Drupal\simpletest\WebTestBase::setUp(), UnitTestBase::setUp() does not install modules because tests are performed without accessing the database. Any required files must be explicitly included by the child class setUp() method.

Overrides UnitTestBase::setUp

File

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

Class

TableSortExtenderUnitTest
Tests unicode handling features implemented in unicode.inc.

Namespace

Drupal\system\Tests\Common

Code

function setUp() {

  // Save the original $_GET to be restored later.
  $this->GET = $_GET;
  parent::setUp();
}