function KernelTestBaseShutdownTest::testShutdownFunction

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::testShutdownFunction()
  2. 8.9.x core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::testShutdownFunction()
  3. 10 core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php \Drupal\KernelTests\KernelTestBaseShutdownTest::testShutdownFunction()

@covers ::assertPostConditions

File

core/tests/Drupal/KernelTests/KernelTestBaseShutdownTest.php, line 42

Class

KernelTestBaseShutdownTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase[[api-linebreak]]

Namespace

Drupal\KernelTests

Code

public function testShutdownFunction() : void {
  $this->expectedShutdownCalled = [
    'shutdownFunction',
    'shutdownFunction2',
  ];
  drupal_register_shutdown_function([
    $this,
    'shutdownFunction',
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.