ContainerTest.php

Namespace

Drupal\Tests\Core\DependencyInjection

File

core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\DependencyInjection;

use Drupal\Core\DependencyInjection\Container;
use Drupal\Tests\UnitTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;

/**
 * Tests Drupal\Core\DependencyInjection\Container.
 */
class ContainerTest extends UnitTestCase {
  
  /**
   * Tests serialization.
   */
  public function testSerialize() : void {
    $container = new Container();
    $this->expectException(\AssertionError::class);
    serialize($container);
  }

}

Classes

Title Deprecated Summary
ContainerTest Tests Drupal\Core\DependencyInjection\Container.

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