function ShutdownFunctionsTest::testShutdownFunctions
7.x system.test | ShutdownFunctionsTest::testShutdownFunctions() |
Test shutdown functions.
File
- drupal-7.x/
modules/ system/ system.test, line 2472 - Tests for system.module.
Class
- ShutdownFunctionsTest
- Functional tests shutdown functions.
Code
function testShutdownFunctions() {
$arg1 = $this->randomName();
$arg2 = $this->randomName();
$this->drupalGet('system-test/shutdown-functions/' . $arg1 . '/' . $arg2);
$this->assertText(t('First shutdown function, arg1 : @arg1, arg2: @arg2', array('@arg1' => $arg1, '@arg2' => $arg2)));
$this->assertText(t('Second shutdown function, arg1 : @arg1, arg2: @arg2', array('@arg1' => $arg1, '@arg2' => $arg2)));
// Make sure exceptions displayed through _drupal_render_exception_safe()
// are correctly escaped.
$this->assertRaw('Drupal is <blink>awesome</blink>.');
}