ContainerTest.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
- 8.9.x core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
- 10 core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
- 10 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
- 11.x core/tests/Drupal/Tests/Core/DependencyInjection/ContainerTest.php
- 11.x core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php
Namespace
Drupal\Tests\Core\DependencyInjectionFile
-
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.