Issue #2801883 by claudiu.cristea: Add an empty $modules property in BrowserTestBase

8.3.x
Alex Pott 2016-09-19 11:30:51 +01:00
parent fdc09d3138
commit 41cab62705
1 changed files with 13 additions and 0 deletions

View File

@ -164,6 +164,19 @@ abstract class BrowserTestBase extends \PHPUnit_Framework_TestCase {
*/
protected $strictConfigSchema = TRUE;
/**
* Modules to enable.
*
* The test runner will merge the $modules lists from this class, the class
* it extends, and so on up the class hierarchy. It is not necessary to
* include modules in your list that a parent class has already declared.
*
* @var string[]
*
* @see \Drupal\Tests\BrowserTestBase::installDrupal()
*/
public static $modules = [];
/**
* An array of config object names that are excluded from schema checking.
*