You are here

public function KernelTestBaseShutdownTest::testShutdownFunction in Drupal 10

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

@covers ::assertPostConditions

File

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

Class

KernelTestBaseShutdownTest
@coversDefaultClass \Drupal\KernelTests\KernelTestBase

Namespace

Drupal\KernelTests

Code

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