1 tablesort.test | TableSortTest::setUp() |
Sets up unit test environment.
Unlike BackdropWebTestCase::setUp(), BackdropUnitTestCase::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 BackdropUnitTestCase::setUp
File
- core/
modules/ simpletest/ tests/ tablesort.test, line 19 - Various tablesort tests.
Class
- TableSortTest
- Test unicode handling features implemented in unicode.inc.
Code
function setUp() {
// Save the original $_GET to be restored later.
$this->GET = $_GET;
parent::setUp();
}