ContainerTest.php

Same filename in this branch
  1. 9 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
Same filename and directory in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
  2. 8.9.x core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
  3. 10 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
  4. 10 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
  5. 11.x core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
  6. 11.x core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php

Namespace

Drupal\Tests\Core\DependencyInjection

File

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

View source
<?php

namespace Drupal\Tests\Core\DependencyInjection;

use Drupal\Core\DependencyInjection\Container;
use Drupal\Tests\UnitTestCase;

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

}

Classes

Title Deprecated Summary
ContainerTest @coversDefaultClass \Drupal\Core\DependencyInjection\Container @group DependencyInjection

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