From e27aff7fd8bd99835d04849376509e5394cca218 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Tue, 26 Feb 2013 14:11:07 -0800 Subject: [PATCH] Issue #1925930 by dawehner: Document the container variable on TestBase class --- core/modules/simpletest/lib/Drupal/simpletest/TestBase.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php index da6a65f3a5b..e483a0b456a 100644 --- a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php +++ b/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php @@ -161,6 +161,13 @@ abstract class TestBase { */ public $dieOnFail = FALSE; + /** + * The dependency injection container used in the test. + * + * @var \Symfony\Component\DependencyInjection\ContainerInterface + */ + protected $container; + /** * Constructor for Test. *