From 7ceb2d2319a6670f7489c1d9b309708b0a87feb2 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Fri, 13 Jun 2014 14:41:52 -0700 Subject: [PATCH] Issue #2262247 by amitgoyal, pwolanin: Document member variables in AdminTest class --- .../system/src/Tests/System/AdminTest.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/core/modules/system/src/Tests/System/AdminTest.php b/core/modules/system/src/Tests/System/AdminTest.php index 63b96f739386..839f3e0f27c5 100644 --- a/core/modules/system/src/Tests/System/AdminTest.php +++ b/core/modules/system/src/Tests/System/AdminTest.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\system\Tests\System\AdminTest. + * Contains \Drupal\system\Tests\System\AdminTest. */ namespace Drupal\system\Tests\System; @@ -14,6 +14,20 @@ */ class AdminTest extends WebTestBase { + /** + * User account with all available permissions + * + * @var \Drupal\Core\Session\AccountInterface + */ + protected $admin_user; + + /** + * User account with limited access to administration pages. + * + * @var \Drupal\Core\Session\AccountInterface + */ + protected $web_user; + /** * Modules to enable. * -- GitLab