Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
780add05
Commit
780add05
authored
11 years ago
by
catch
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2171315
by sun, Xano, diarmy, tim.plunkett: Ensure a NULL container in...
Issue
#2171315
by sun, Xano, diarmy, tim.plunkett: Ensure a NULL container in UnitTestCase::setUp().
parent
8bab6674
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/lib/Drupal.php
+4
-2
4 additions, 2 deletions
core/lib/Drupal.php
core/tests/Drupal/Tests/UnitTestCase.php
+5
-6
5 additions, 6 deletions
core/tests/Drupal/Tests/UnitTestCase.php
with
9 additions
and
8 deletions
core/lib/Drupal.php
+
4
−
2
View file @
780add05
...
@@ -102,9 +102,11 @@ class Drupal {
...
@@ -102,9 +102,11 @@ class Drupal {
* Sets a new global container.
* Sets a new global container.
*
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* A new container instance to replace the current.
* A new container instance to replace the current. NULL may be passed by
* testing frameworks to ensure that the global state of a previous
* environment does not leak into a test.
*/
*/
public
static
function
setContainer
(
ContainerInterface
$container
)
{
public
static
function
setContainer
(
ContainerInterface
$container
=
NULL
)
{
static
::
$container
=
$container
;
static
::
$container
=
$container
;
}
}
...
...
This diff is collapsed.
Click to expand it.
core/tests/Drupal/Tests/UnitTestCase.php
+
5
−
6
View file @
780add05
...
@@ -48,12 +48,11 @@ public static function getInfo() {
...
@@ -48,12 +48,11 @@ public static function getInfo() {
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*/
*/
protected
function
tearDown
()
{
protected
function
setUp
()
{
parent
::
tearDown
();
parent
::
setUp
();
if
(
\Drupal
::
getContainer
())
{
// Ensure that an instantiated container in the global state of \Drupal from
$container
=
new
ContainerBuilder
();
// a previous test does not leak into this test.
\Drupal
::
setContainer
(
$container
);
\Drupal
::
setContainer
(
NULL
);
}
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment