public function DrupalKernelTest::testSerialization

Tests kernel serialization/unserialization.

File

drupal/core/modules/system/lib/Drupal/system/Tests/DrupalKernel/DrupalKernelTest.php, line 120
Contains Drupal\system\Tests\DrupalKernel\DrupalKernelTest.

Class

DrupalKernelTest
Tests compilation of the DIC.

Namespace

Drupal\system\Tests\DrupalKernel

Code

public function testSerialization() {
  $classloader = drupal_classloader();
  $kernel = new DrupalKernel('testing', FALSE, $classloader);
  $string = serialize($kernel);
  $unserialized_kernel = unserialize($string);
  $this
    ->assertTrue($unserialized_kernel instanceof DrupalKernel);
}