diff --git a/core/modules/action/tests/src/Functional/ActionListTest.php b/core/modules/action/tests/src/Functional/ActionListTest.php index 47f29e1405edea33d36c317fe673a9c4e21e4995..28eda681876c2af7cda6432e789f17b384dc033a 100644 --- a/core/modules/action/tests/src/Functional/ActionListTest.php +++ b/core/modules/action/tests/src/Functional/ActionListTest.php @@ -16,7 +16,7 @@ class ActionListTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['action']; + public static $modules = ['action']; /** * Tests the behavior when there are no actions to list in the admin page. diff --git a/core/modules/action/tests/src/Functional/ActionUninstallTest.php b/core/modules/action/tests/src/Functional/ActionUninstallTest.php index 8c7e6ac65c5479bcea63872f5e14c21f39a611f8..5b01099fd216a37e4d9ba07d30c8afe57fe81b3c 100644 --- a/core/modules/action/tests/src/Functional/ActionUninstallTest.php +++ b/core/modules/action/tests/src/Functional/ActionUninstallTest.php @@ -17,7 +17,7 @@ class ActionUninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['views', 'action']; + public static $modules = ['views', 'action']; /** * Tests Action uninstall. diff --git a/core/modules/action/tests/src/Functional/BulkFormTest.php b/core/modules/action/tests/src/Functional/BulkFormTest.php index fbf32b2e968d5a17d168647edff4560381a0a5d6..ec6ca482bca8633df00ab41662f625e09f0d2a8c 100644 --- a/core/modules/action/tests/src/Functional/BulkFormTest.php +++ b/core/modules/action/tests/src/Functional/BulkFormTest.php @@ -18,7 +18,7 @@ class BulkFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'action_bulk_test']; + public static $modules = ['node', 'action_bulk_test']; /** * Tests the bulk form. diff --git a/core/modules/action/tests/src/Functional/ConfigurationTest.php b/core/modules/action/tests/src/Functional/ConfigurationTest.php index cc384844c23f679cfd80bcfd423be3aa80a9d725..9b9dcf62a07f9a4df76cb3826e71df8ebf8ca787 100644 --- a/core/modules/action/tests/src/Functional/ConfigurationTest.php +++ b/core/modules/action/tests/src/Functional/ConfigurationTest.php @@ -18,7 +18,7 @@ class ConfigurationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['action']; + public static $modules = ['action']; /** * Tests configuration of advanced actions through administration interface. diff --git a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php index 337f033670a3b7a15c7fab8b75f96f71f49d317b..bd87724cf235cdcb35cb2140ff4d31e6def9cc32 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionConfigsTest.php @@ -17,7 +17,7 @@ class MigrateActionConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['action']; + public static $modules = ['action']; /** * {@inheritdoc} diff --git a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php index 7e5a68607aefb7649b8d69f428af5f7832ef7923..928b3c9b812864d54f92f056fba86b7eb44315b4 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d6/MigrateActionsTest.php @@ -12,7 +12,7 @@ */ class MigrateActionsTest extends MigrateDrupal6TestBase { - protected static $modules = ['action', 'comment', 'node']; + public static $modules = ['action', 'comment', 'node']; /** * {@inheritdoc} diff --git a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionConfigsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionConfigsTest.php index 13b31881d1d1e746bd151214ee8ca9245e54152c..0b1a2caae5033924499223f9f22045e23937af01 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionConfigsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionConfigsTest.php @@ -17,7 +17,7 @@ class MigrateActionConfigsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['action']; + public static $modules = ['action']; /** * {@inheritdoc} diff --git a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php index 45f24fbaa8371e5442a0318fb6f6da602192832a..47049f33c6efc1cd325ef3aaa62495ef8c190f3c 100644 --- a/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php +++ b/core/modules/action/tests/src/Kernel/Migrate/d7/MigrateActionsTest.php @@ -12,7 +12,7 @@ */ class MigrateActionsTest extends MigrateDrupal7TestBase { - protected static $modules = ['action', 'comment', 'node']; + public static $modules = ['action', 'comment', 'node']; /** * {@inheritdoc} diff --git a/core/modules/action/tests/src/Kernel/Plugin/Action/EmailActionTest.php b/core/modules/action/tests/src/Kernel/Plugin/Action/EmailActionTest.php index fd3954a74531766ffd8cc0d8646081599ebaa657..a47f9b35f74e5aaa70f4f7f92db6fac8def2f26d 100644 --- a/core/modules/action/tests/src/Kernel/Plugin/Action/EmailActionTest.php +++ b/core/modules/action/tests/src/Kernel/Plugin/Action/EmailActionTest.php @@ -16,7 +16,7 @@ class EmailActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'action', 'dblog']; + public static $modules = ['system', 'user', 'action', 'dblog']; /** * {@inheritdoc} diff --git a/core/modules/action/tests/src/Kernel/Plugin/migrate/source/ActionTest.php b/core/modules/action/tests/src/Kernel/Plugin/migrate/source/ActionTest.php index e70f88e43a8f8c0faeb3754154acbf8f2bbbe615..938752ad4d61e49c78b9a34460ee6f7bdd617ddb 100644 --- a/core/modules/action/tests/src/Kernel/Plugin/migrate/source/ActionTest.php +++ b/core/modules/action/tests/src/Kernel/Plugin/migrate/source/ActionTest.php @@ -15,7 +15,7 @@ class ActionTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['action', 'migrate_drupal', 'system']; + public static $modules = ['action', 'migrate_drupal', 'system']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/src/Tests/AggregatorTestBase.php b/core/modules/aggregator/src/Tests/AggregatorTestBase.php index f8b5e5c0f4ef9bf55b3666ebe2914ea3744cf9b6..f42248975ae9f27eb4b3bc29f67033567575781b 100644 --- a/core/modules/aggregator/src/Tests/AggregatorTestBase.php +++ b/core/modules/aggregator/src/Tests/AggregatorTestBase.php @@ -27,7 +27,7 @@ abstract class AggregatorTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'aggregator', 'aggregator_test', 'views']; + public static $modules = ['block', 'node', 'aggregator', 'aggregator_test', 'views']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php b/core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php index e2e3beff05269125c11bf7393dceae8a143eaa5a..b03ddf88db2db9adb1f44e2b2b5bfe3f1cc301f2 100644 --- a/core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php +++ b/core/modules/aggregator/tests/src/Functional/AggregatorRenderingTest.php @@ -17,7 +17,7 @@ class AggregatorRenderingTest extends AggregatorTestBase { * * @var array */ - protected static $modules = ['block', 'test_page_test']; + public static $modules = ['block', 'test_page_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php b/core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php index 92c6f91ed7a5f277ec100777dd3daef39d75442d..ddd98bb82f48fce4426fed8be7376a45e5abef8f 100644 --- a/core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php +++ b/core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php @@ -24,7 +24,7 @@ abstract class AggregatorTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'aggregator', 'aggregator_test', 'views']; + public static $modules = ['block', 'node', 'aggregator', 'aggregator_test', 'views']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/DeleteFeedTest.php b/core/modules/aggregator/tests/src/Functional/DeleteFeedTest.php index 07d27d832feaab6ae0dbdcd6cdb61a49ff4c10d9..557720658da2555fb0174c73ae88526b6dd97360 100644 --- a/core/modules/aggregator/tests/src/Functional/DeleteFeedTest.php +++ b/core/modules/aggregator/tests/src/Functional/DeleteFeedTest.php @@ -14,7 +14,7 @@ class DeleteFeedTest extends AggregatorTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Deletes a feed and ensures that all of its services are deleted. diff --git a/core/modules/aggregator/tests/src/Functional/FeedCacheTagsTest.php b/core/modules/aggregator/tests/src/Functional/FeedCacheTagsTest.php index f26bb93d2298dd234e737aafc72db3efb9ddae1a..0cf6d1d031214d1ea931cc7db62359934a1c44f0 100644 --- a/core/modules/aggregator/tests/src/Functional/FeedCacheTagsTest.php +++ b/core/modules/aggregator/tests/src/Functional/FeedCacheTagsTest.php @@ -17,7 +17,7 @@ class FeedCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/FeedLanguageTest.php b/core/modules/aggregator/tests/src/Functional/FeedLanguageTest.php index fc2b8051aa286596977edcb90fc49b6663a4595c..7e3d672c06c1f27464e204dae155b62839e4ab4f 100644 --- a/core/modules/aggregator/tests/src/Functional/FeedLanguageTest.php +++ b/core/modules/aggregator/tests/src/Functional/FeedLanguageTest.php @@ -19,7 +19,7 @@ class FeedLanguageTest extends AggregatorTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * List of langcodes. diff --git a/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonBasicAuthTest.php index 73c61d82d274d230fada401ff67dca5442472e1d..58bb47351a9d11a7d9f3a4cccf630c5ffef110c2 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FeedHalJsonBasicAuthTest extends FeedHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonTestBase.php b/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonTestBase.php index 22357bf0f4b9b7ff77f227bc25ee17ade6cd21e9..7fa28700122c2834109feaefeeb8d1cc46311b2e 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonTestBase.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/FeedHalJsonTestBase.php @@ -12,7 +12,7 @@ abstract class FeedHalJsonTestBase extends FeedResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonAnonTest.php b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonAnonTest.php index 4823d65b9e535976c4091c48ef355d3f6faafeca..20d37fa1ee733b9fdedf9d1d797e422fc90346c6 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonAnonTest.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonAnonTest.php @@ -14,7 +14,7 @@ class ItemHalJsonAnonTest extends ItemHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonBasicAuthTest.php index f6162675f698002b199df35c62c9e3ac9339f3dd..767c7025a476638eca9ae37335d23414aba7003d 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ItemHalJsonBasicAuthTest extends ItemHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonCookieTest.php b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonCookieTest.php index c5b41c59aa0cb7d0115bf1175aa0fc8f93fe76fe..161a7357661aaf7db5f224e5ad4a3e15a74a7469 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonCookieTest.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonCookieTest.php @@ -14,7 +14,7 @@ class ItemHalJsonCookieTest extends ItemHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonTestBase.php b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonTestBase.php index 5c5120b945dbc3b4ab277d43dba0a1a3199c31e1..c786b7b181a4f5cd744166356070ae49f65fc5a7 100644 --- a/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonTestBase.php +++ b/core/modules/aggregator/tests/src/Functional/Hal/ItemHalJsonTestBase.php @@ -18,7 +18,7 @@ abstract class ItemHalJsonTestBase extends ItemResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/ImportOpmlTest.php b/core/modules/aggregator/tests/src/Functional/ImportOpmlTest.php index 68543bf0084a0bab580895e011004f4993125886..2500b9ebb541b19670ee6d215e10531c61679b2e 100644 --- a/core/modules/aggregator/tests/src/Functional/ImportOpmlTest.php +++ b/core/modules/aggregator/tests/src/Functional/ImportOpmlTest.php @@ -14,7 +14,7 @@ class ImportOpmlTest extends AggregatorTestBase { * * @var array */ - protected static $modules = ['block', 'help']; + public static $modules = ['block', 'help']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php b/core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php index 6d852db838a8f0064dbcb972f30c99a0d67c59ac..edd2ac32a92cb601ef43522334037cd35f5fe85c 100644 --- a/core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php +++ b/core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php @@ -19,7 +19,7 @@ class ItemCacheTagsTest extends EntityCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/FeedJsonBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Rest/FeedJsonBasicAuthTest.php index e10df2f04201937e5310f858f4cd883f11ee74d9..e918ab9819a86f4b7dcecdacc77993f08fc0d6eb 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/FeedJsonBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/FeedJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FeedJsonBasicAuthTest extends FeedResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/FeedResourceTestBase.php b/core/modules/aggregator/tests/src/Functional/Rest/FeedResourceTestBase.php index f62305075d423190218230d316b20b21de3a47ec..fefa75e1ff26ce2a77d081040f21f02d2341f35e 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/FeedResourceTestBase.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/FeedResourceTestBase.php @@ -13,7 +13,7 @@ abstract class FeedResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlBasicAuthTest.php index ca2d964f7e10596ff0e28c118f4d2c0f62c4bf7f..450cc49effdc75f8774c45e7225eb85f81711c58 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/FeedXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class FeedXmlBasicAuthTest extends FeedResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/ItemJsonBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Rest/ItemJsonBasicAuthTest.php index f69c51b045a4029d35fc355ad7b0e528825a88be..15f800d1384d34976f44dda8129697fe970a83b0 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/ItemJsonBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/ItemJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ItemJsonBasicAuthTest extends ItemResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/ItemResourceTestBase.php b/core/modules/aggregator/tests/src/Functional/Rest/ItemResourceTestBase.php index 761f8de51ea9324038f57bdf98f4c17c8b6e64ec..c7163e098ad5194f51408d5c55b87f5e92dd67c7 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/ItemResourceTestBase.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/ItemResourceTestBase.php @@ -17,7 +17,7 @@ abstract class ItemResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Functional/Rest/ItemXmlBasicAuthTest.php b/core/modules/aggregator/tests/src/Functional/Rest/ItemXmlBasicAuthTest.php index f868a21dfa0421157fadc81847676c6fe2c5d1bb..438a4233ca70ccce77f8888df236b284d911c3a2 100644 --- a/core/modules/aggregator/tests/src/Functional/Rest/ItemXmlBasicAuthTest.php +++ b/core/modules/aggregator/tests/src/Functional/Rest/ItemXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ItemXmlBasicAuthTest extends ItemResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/AggregatorTitleTest.php b/core/modules/aggregator/tests/src/Kernel/AggregatorTitleTest.php index 374a2c10fb5c235d6fd7a09c6b3a16538404cd5c..4493c5c8d736161ab97f47136f9a07caf576f0ec 100644 --- a/core/modules/aggregator/tests/src/Kernel/AggregatorTitleTest.php +++ b/core/modules/aggregator/tests/src/Kernel/AggregatorTitleTest.php @@ -18,7 +18,7 @@ class AggregatorTitleTest extends KernelTestBase { * * @var array */ - protected static $modules = ['file', 'field', 'options', 'aggregator', 'system']; + public static $modules = ['file', 'field', 'options', 'aggregator', 'system']; /** * The field name that is tested. diff --git a/core/modules/aggregator/tests/src/Kernel/FeedValidationTest.php b/core/modules/aggregator/tests/src/Kernel/FeedValidationTest.php index b3e10e4a0375e5410dbbe7134084ff34e6fb6433..d8804dd9c3792093de789545347e67fc45baec5f 100644 --- a/core/modules/aggregator/tests/src/Kernel/FeedValidationTest.php +++ b/core/modules/aggregator/tests/src/Kernel/FeedValidationTest.php @@ -17,7 +17,7 @@ class FeedValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['aggregator', 'options']; + public static $modules = ['aggregator', 'options']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php b/core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php index 705c4b6b2a80395c51c0cbf3f77e4f17a1316df0..e44bd4f3cd8a1dbfa492b51543872a0c368c83ca 100644 --- a/core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php +++ b/core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php @@ -15,7 +15,7 @@ class ItemWithoutFeedTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'options']; + public static $modules = ['aggregator', 'options']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/MigrateAggregatorStubTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/MigrateAggregatorStubTest.php index f85c957e0b80f370c492cb19caa6ff0120013940..8de1487d0cb62dc4b2049855f959d04766d370ff 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/MigrateAggregatorStubTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/MigrateAggregatorStubTest.php @@ -17,7 +17,7 @@ class MigrateAggregatorStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php index a9a4355ab446a0ca8334b8e120caf0b1c79e023d..280a103db8e17251f4e0624ec0f7656a07218995 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorConfigsTest.php @@ -17,7 +17,7 @@ class MigrateAggregatorConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php index eef5ba448ba99fd0b9023392d12a272386ec9fc8..9dac60faa839a735eb0c07c99669172cfb09cbc8 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorFeedTest.php @@ -15,7 +15,7 @@ class MigrateAggregatorFeedTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php index d14846c7c9b2d84e0dde074eb1e050460a1fb2ac..5343d1e2de75c10ce8c767a5b17bcfdcde3c3348 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d6/MigrateAggregatorItemTest.php @@ -15,7 +15,7 @@ class MigrateAggregatorItemTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php index e4dbe34aebf7d1c7e24605b411d3bd813abff60d..fd208238c77d991f62a8a9859dd576ee9968c388 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorFeedTest.php @@ -15,7 +15,7 @@ class MigrateAggregatorFeedTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php index 8dde35b298def5003927cb31d97405881104bf9d..83e59d97070d1a7f97322885b9cf5a9059ef9a56 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorItemTest.php @@ -15,7 +15,7 @@ class MigrateAggregatorItemTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php index 9e2eb36545f82bf3458ed384d6590e7597a14dfd..0fa8f63597489e5b0063b25fdf2cfc11e327ca19 100644 --- a/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Migrate/d7/MigrateAggregatorSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateAggregatorSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorFeedTest.php b/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorFeedTest.php index 67fe136808c66aec5c913113652d8a1918824d5e..d41f4f4b38a10cbccbe76f1722d65206f5b0dff2 100644 --- a/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorFeedTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorFeedTest.php @@ -15,7 +15,7 @@ class AggregatorFeedTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'migrate_drupal']; + public static $modules = ['aggregator', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorItemTest.php b/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorItemTest.php index ea9206a44b0f8a152e4c181f99cec84a29f16f9f..09101f7cd4da9c3a01de63c951ccd6ba3f8c7bff 100644 --- a/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorItemTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Plugin/migrate/source/AggregatorItemTest.php @@ -15,7 +15,7 @@ class AggregatorItemTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'migrate_drupal']; + public static $modules = ['aggregator', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php index 2d5a5f53a99a9a1065b9a15ab0533adefa4b1ecf..d0ca46ead99ec9851d2593fff661209f39f6088b 100644 --- a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorFeedViewsFieldAccessTest.php @@ -15,7 +15,7 @@ class AggregatorFeedViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'entity_test', 'options']; + public static $modules = ['aggregator', 'entity_test', 'options']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php index a0164678123a155dd09273aec7012773d3fa1ede..a095d3c42fedf2eeffc3b0d8aae82e8c94919256 100644 --- a/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Views/AggregatorItemViewsFieldAccessTest.php @@ -16,7 +16,7 @@ class AggregatorItemViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'entity_test', 'options']; + public static $modules = ['aggregator', 'entity_test', 'options']; /** * {@inheritdoc} diff --git a/core/modules/aggregator/tests/src/Kernel/Views/IntegrationTest.php b/core/modules/aggregator/tests/src/Kernel/Views/IntegrationTest.php index be9d149c1474a7b62b8ddca3eab6efa4af10dbd9..39f57b251889e6026ee24022268e2c87a63397ff 100644 --- a/core/modules/aggregator/tests/src/Kernel/Views/IntegrationTest.php +++ b/core/modules/aggregator/tests/src/Kernel/Views/IntegrationTest.php @@ -21,7 +21,7 @@ class IntegrationTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['aggregator', 'aggregator_test_views', 'system', 'field', 'options', 'user']; + public static $modules = ['aggregator', 'aggregator_test_views', 'system', 'field', 'options', 'user']; /** * Views used by this test. diff --git a/core/modules/ban/tests/src/Functional/IpAddressBlockingTest.php b/core/modules/ban/tests/src/Functional/IpAddressBlockingTest.php index 92ebcdf6ff69c92b7f26abad486100cd8e1699d5..778f3dba97514a3fdb02924295e9bba291a07676 100644 --- a/core/modules/ban/tests/src/Functional/IpAddressBlockingTest.php +++ b/core/modules/ban/tests/src/Functional/IpAddressBlockingTest.php @@ -18,7 +18,7 @@ class IpAddressBlockingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['ban']; + public static $modules = ['ban']; /** * Tests various user input to confirm correct validation and saving of data. diff --git a/core/modules/ban/tests/src/Kernel/Migrate/d7/MigrateBlockedIPsTest.php b/core/modules/ban/tests/src/Kernel/Migrate/d7/MigrateBlockedIPsTest.php index d673ec558959abf961e6d17457c9346c95be9f52..48f35a7e113100c748d96e1874f92994cbc68b14 100644 --- a/core/modules/ban/tests/src/Kernel/Migrate/d7/MigrateBlockedIPsTest.php +++ b/core/modules/ban/tests/src/Kernel/Migrate/d7/MigrateBlockedIPsTest.php @@ -19,7 +19,7 @@ class MigrateBlockedIPsTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = ['ban']; + public static $modules = ['ban']; /** * {@inheritdoc} diff --git a/core/modules/ban/tests/src/Kernel/Plugin/migrate/source/d7/BlockedIpsTest.php b/core/modules/ban/tests/src/Kernel/Plugin/migrate/source/d7/BlockedIpsTest.php index 80adf4ec548dba64fe4c3ce94c24ba07afb7a0ee..2ce7820a7dbe85abc56c0ca525839fcbf8449330 100644 --- a/core/modules/ban/tests/src/Kernel/Plugin/migrate/source/d7/BlockedIpsTest.php +++ b/core/modules/ban/tests/src/Kernel/Plugin/migrate/source/d7/BlockedIpsTest.php @@ -15,7 +15,7 @@ class BlockedIpsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ban', 'migrate_drupal']; + public static $modules = ['ban', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/basic_auth/tests/src/Functional/BasicAuthTest.php b/core/modules/basic_auth/tests/src/Functional/BasicAuthTest.php index 39adeb1b038103b7d2ba28aa2efb60f023e7d5d5..ed13ea5d38f61c7c1eee84844bae047dfe42b103 100644 --- a/core/modules/basic_auth/tests/src/Functional/BasicAuthTest.php +++ b/core/modules/basic_auth/tests/src/Functional/BasicAuthTest.php @@ -23,7 +23,7 @@ class BasicAuthTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['basic_auth', 'router_test', 'locale', 'basic_auth_test']; + public static $modules = ['basic_auth', 'router_test', 'locale', 'basic_auth_test']; /** * Test http basic authentication. diff --git a/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php b/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php index 3b477b072cbd92db6416c0f62a7827e45854d77f..8b6327cadb795f977ae15c8e83f5cfd1dd03d4d6 100644 --- a/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php +++ b/core/modules/big_pipe/tests/src/Functional/BigPipeTest.php @@ -30,7 +30,7 @@ class BigPipeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['big_pipe', 'big_pipe_test', 'dblog']; + public static $modules = ['big_pipe', 'big_pipe_test', 'dblog']; /** * {@inheritdoc} diff --git a/core/modules/big_pipe/tests/src/FunctionalJavascript/BigPipeRegressionTest.php b/core/modules/big_pipe/tests/src/FunctionalJavascript/BigPipeRegressionTest.php index 4abd9dc60ad610df07ccd763f4042cbea5347f2b..f4cd5108bf8872d73d236ab7fcefa59e85af0ef1 100644 --- a/core/modules/big_pipe/tests/src/FunctionalJavascript/BigPipeRegressionTest.php +++ b/core/modules/big_pipe/tests/src/FunctionalJavascript/BigPipeRegressionTest.php @@ -29,7 +29,7 @@ class BigPipeRegressionTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'big_pipe', 'big_pipe_regression_test', ]; diff --git a/core/modules/block/src/Tests/BlockTestBase.php b/core/modules/block/src/Tests/BlockTestBase.php index 8419db75a5b6ec7acd4fcb2895cb400eb5d2849c..7397a47053b5a7981697ef465670d8005cc8df27 100644 --- a/core/modules/block/src/Tests/BlockTestBase.php +++ b/core/modules/block/src/Tests/BlockTestBase.php @@ -22,7 +22,7 @@ abstract class BlockTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['block', 'filter', 'test_page_test', 'help', 'block_test']; + public static $modules = ['block', 'filter', 'test_page_test', 'help', 'block_test']; /** * A list of theme regions to test. diff --git a/core/modules/block/tests/src/Functional/BlockAdminThemeTest.php b/core/modules/block/tests/src/Functional/BlockAdminThemeTest.php index 3189e67399911927af3aae477f9986ada839175d..88f35e4b09e199f4773e58bed26d2ff25ae5e61f 100644 --- a/core/modules/block/tests/src/Functional/BlockAdminThemeTest.php +++ b/core/modules/block/tests/src/Functional/BlockAdminThemeTest.php @@ -16,7 +16,7 @@ class BlockAdminThemeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'contextual']; + public static $modules = ['block', 'contextual']; /** * Check for the accessibility of the admin theme on the block admin page. diff --git a/core/modules/block/tests/src/Functional/BlockCacheTest.php b/core/modules/block/tests/src/Functional/BlockCacheTest.php index 6413e5001735018ae96ccda872825fba8dcd5e84..e5bb360e3e66060f88a7ea2f37d8b33945b74f03 100644 --- a/core/modules/block/tests/src/Functional/BlockCacheTest.php +++ b/core/modules/block/tests/src/Functional/BlockCacheTest.php @@ -17,7 +17,7 @@ class BlockCacheTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'test_page_test']; + public static $modules = ['block', 'block_test', 'test_page_test']; /** * A user with permission to create and edit books and to administer blocks. diff --git a/core/modules/block/tests/src/Functional/BlockDemoTest.php b/core/modules/block/tests/src/Functional/BlockDemoTest.php index 5977531130839bd7f8315d77fbc9889c7a2a577b..884b587a11a0fc850fa0df03bebcb31a29c296d7 100644 --- a/core/modules/block/tests/src/Functional/BlockDemoTest.php +++ b/core/modules/block/tests/src/Functional/BlockDemoTest.php @@ -16,7 +16,7 @@ class BlockDemoTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Check for the accessibility of the admin block demo page. diff --git a/core/modules/block/tests/src/Functional/BlockFormInBlockTest.php b/core/modules/block/tests/src/Functional/BlockFormInBlockTest.php index ea5702b83d9db2715c6cfa1aee7ef0859ba4f679..c0e7f589267ef567b68c8456b0734ad2e48d9041 100644 --- a/core/modules/block/tests/src/Functional/BlockFormInBlockTest.php +++ b/core/modules/block/tests/src/Functional/BlockFormInBlockTest.php @@ -17,7 +17,7 @@ class BlockFormInBlockTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'test_page_test']; + public static $modules = ['block', 'block_test', 'test_page_test']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/BlockHiddenRegionTest.php b/core/modules/block/tests/src/Functional/BlockHiddenRegionTest.php index 4b3244f0ba10b74391379ae5bae7e9da9097ffe1..c51551521ab905acd0b698f37fb4ea50f5000848 100644 --- a/core/modules/block/tests/src/Functional/BlockHiddenRegionTest.php +++ b/core/modules/block/tests/src/Functional/BlockHiddenRegionTest.php @@ -22,7 +22,7 @@ class BlockHiddenRegionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'search']; + public static $modules = ['block', 'block_test', 'search']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockHookOperationTest.php b/core/modules/block/tests/src/Functional/BlockHookOperationTest.php index a2bdd5c545e928798fc8dafe2aca36f61e64f725..23b1f0ce5fd3e4f845a9aec5a068bd18d64fee47 100644 --- a/core/modules/block/tests/src/Functional/BlockHookOperationTest.php +++ b/core/modules/block/tests/src/Functional/BlockHookOperationTest.php @@ -16,7 +16,7 @@ class BlockHookOperationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'entity_test']; + public static $modules = ['block', 'entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockHtmlTest.php b/core/modules/block/tests/src/Functional/BlockHtmlTest.php index b2426e405600f23627d65ab4b534e8cc028a2574..5f9afe916f7d15bfcc27700f3d041e2f39664205 100644 --- a/core/modules/block/tests/src/Functional/BlockHtmlTest.php +++ b/core/modules/block/tests/src/Functional/BlockHtmlTest.php @@ -16,7 +16,7 @@ class BlockHtmlTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test']; + public static $modules = ['block', 'block_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockInvalidRegionTest.php b/core/modules/block/tests/src/Functional/BlockInvalidRegionTest.php index c7425fa424560c402a293dc5b6de0f1dae683cb0..fe8cdcb56a7884ab8911a4c7d9dc6f797c7f4db5 100644 --- a/core/modules/block/tests/src/Functional/BlockInvalidRegionTest.php +++ b/core/modules/block/tests/src/Functional/BlockInvalidRegionTest.php @@ -18,7 +18,7 @@ class BlockInvalidRegionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test']; + public static $modules = ['block', 'block_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockLanguageCacheTest.php b/core/modules/block/tests/src/Functional/BlockLanguageCacheTest.php index 9f732ad7c79242527e5cad91fa6a6071e30507a4..9ca2b718636de7c648065caedccb9e3e6c1825eb 100644 --- a/core/modules/block/tests/src/Functional/BlockLanguageCacheTest.php +++ b/core/modules/block/tests/src/Functional/BlockLanguageCacheTest.php @@ -17,7 +17,7 @@ class BlockLanguageCacheTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'language', 'menu_ui']; + public static $modules = ['block', 'language', 'menu_ui']; /** * List of langcodes. diff --git a/core/modules/block/tests/src/Functional/BlockLanguageTest.php b/core/modules/block/tests/src/Functional/BlockLanguageTest.php index d7d7e60c9ec37b4ddf900898f49bb99cfd16e231..8f963e17e64a040c54468cc64eba5e4700dce1ef 100644 --- a/core/modules/block/tests/src/Functional/BlockLanguageTest.php +++ b/core/modules/block/tests/src/Functional/BlockLanguageTest.php @@ -23,7 +23,7 @@ class BlockLanguageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'block', 'content_translation']; + public static $modules = ['language', 'block', 'content_translation']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockRenderOrderTest.php b/core/modules/block/tests/src/Functional/BlockRenderOrderTest.php index e0668606e84812d83f7dd23ea868e9909975d5b2..2fd1ab8925d76e8f0ad4378fc2f612f346a50b9b 100644 --- a/core/modules/block/tests/src/Functional/BlockRenderOrderTest.php +++ b/core/modules/block/tests/src/Functional/BlockRenderOrderTest.php @@ -17,7 +17,7 @@ class BlockRenderOrderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'block']; + public static $modules = ['node', 'block']; protected function setUp() { parent::setUp(); diff --git a/core/modules/block/tests/src/Functional/BlockSystemBrandingTest.php b/core/modules/block/tests/src/Functional/BlockSystemBrandingTest.php index 27cf5bc79a0fb121ff4444b9bad22bc730aea9e3..89ce0c4b45a9c8ccad9567b1af0d58ee890f8e96 100644 --- a/core/modules/block/tests/src/Functional/BlockSystemBrandingTest.php +++ b/core/modules/block/tests/src/Functional/BlockSystemBrandingTest.php @@ -14,7 +14,7 @@ class BlockSystemBrandingTest extends BlockTestBase { * * @var array */ - protected static $modules = ['block', 'system']; + public static $modules = ['block', 'system']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/BlockTemplateSuggestionsTest.php b/core/modules/block/tests/src/Functional/BlockTemplateSuggestionsTest.php index fe0f7bbd09fc5351a598e951aceb32375f6e8b01..fd4fd5138cda84879a508a1037cb528e81e4ffe0 100644 --- a/core/modules/block/tests/src/Functional/BlockTemplateSuggestionsTest.php +++ b/core/modules/block/tests/src/Functional/BlockTemplateSuggestionsTest.php @@ -17,7 +17,7 @@ class BlockTemplateSuggestionsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Tests template suggestions from block_theme_suggestions_block(). diff --git a/core/modules/block/tests/src/Functional/BlockTestBase.php b/core/modules/block/tests/src/Functional/BlockTestBase.php index 725c04d6fca31c26221ca7332418955cba5edd7f..e1ccd1a3658ca580d782eb4f1952fab15e50be60 100644 --- a/core/modules/block/tests/src/Functional/BlockTestBase.php +++ b/core/modules/block/tests/src/Functional/BlockTestBase.php @@ -15,7 +15,7 @@ abstract class BlockTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'filter', 'test_page_test', 'help', 'block_test']; + public static $modules = ['block', 'filter', 'test_page_test', 'help', 'block_test']; /** * A list of theme regions to test. diff --git a/core/modules/block/tests/src/Functional/BlockUiTest.php b/core/modules/block/tests/src/Functional/BlockUiTest.php index b5e818ef9db0f1802f5f7187f1d6c1d8b3a8888d..e6c187544ed902c5e534d35eb272cc6b32604f48 100644 --- a/core/modules/block/tests/src/Functional/BlockUiTest.php +++ b/core/modules/block/tests/src/Functional/BlockUiTest.php @@ -17,7 +17,7 @@ class BlockUiTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'help', 'condition_test']; + public static $modules = ['block', 'block_test', 'help', 'condition_test']; protected $regions; diff --git a/core/modules/block/tests/src/Functional/BlockXssTest.php b/core/modules/block/tests/src/Functional/BlockXssTest.php index 7eea08103d1a13549261e2cd0bf74cf4864c9a4b..3e661d775d3de201f020d429c73a5b383e6064a1 100644 --- a/core/modules/block/tests/src/Functional/BlockXssTest.php +++ b/core/modules/block/tests/src/Functional/BlockXssTest.php @@ -21,7 +21,7 @@ class BlockXssTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'menu_ui', 'views']; + public static $modules = ['block', 'block_content', 'menu_ui', 'views']; /** * Tests that nothing is escaped other than the blocks explicitly tested. diff --git a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonAnonTest.php b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonAnonTest.php index ca140d47a88088cc536f563f6e622f718d1f1ae1..3069667c2dc0b5747158fe9c310dc7c79507a5f6 100644 --- a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonAnonTest.php +++ b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonAnonTest.php @@ -15,7 +15,7 @@ class BlockHalJsonAnonTest extends BlockResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonBasicAuthTest.php b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonBasicAuthTest.php index a574ba776ac6cb2540f7d77f67b4d06ee32c66f8..f95f6d732be03958381cd2315cd56097a4d25119 100644 --- a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonBasicAuthTest.php +++ b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class BlockHalJsonBasicAuthTest extends BlockResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonCookieTest.php b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonCookieTest.php index f1d4df98326af78d6234fa9b38086bd87ddb08c4..87df9ff580bc9d0f42a3272097934aa09e9882cf 100644 --- a/core/modules/block/tests/src/Functional/Hal/BlockHalJsonCookieTest.php +++ b/core/modules/block/tests/src/Functional/Hal/BlockHalJsonCookieTest.php @@ -15,7 +15,7 @@ class BlockHalJsonCookieTest extends BlockResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/NewDefaultThemeBlocksTest.php b/core/modules/block/tests/src/Functional/NewDefaultThemeBlocksTest.php index b3353aedb998f4673930099d6ff92285d3f47edd..adc7da3f1fd355847d04a0e67fdb89d2ebb00125 100644 --- a/core/modules/block/tests/src/Functional/NewDefaultThemeBlocksTest.php +++ b/core/modules/block/tests/src/Functional/NewDefaultThemeBlocksTest.php @@ -16,7 +16,7 @@ class NewDefaultThemeBlocksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Check the enabled Bartik blocks are correctly copied over. diff --git a/core/modules/block/tests/src/Functional/NonDefaultBlockAdminTest.php b/core/modules/block/tests/src/Functional/NonDefaultBlockAdminTest.php index 1e9bed972c5906b72c478d6e7c3b740ae1eef0d2..7b7927de20c1bdd3fa6616c86f28786e8e261f8d 100644 --- a/core/modules/block/tests/src/Functional/NonDefaultBlockAdminTest.php +++ b/core/modules/block/tests/src/Functional/NonDefaultBlockAdminTest.php @@ -16,7 +16,7 @@ class NonDefaultBlockAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Rest/BlockJsonBasicAuthTest.php b/core/modules/block/tests/src/Functional/Rest/BlockJsonBasicAuthTest.php index 819a5fbfd9724e1e30a26097a4c4f48cacd10abe..9c2a2728265cf9f8ff96e14458edb7e35059657d 100644 --- a/core/modules/block/tests/src/Functional/Rest/BlockJsonBasicAuthTest.php +++ b/core/modules/block/tests/src/Functional/Rest/BlockJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class BlockJsonBasicAuthTest extends BlockResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Rest/BlockResourceTestBase.php b/core/modules/block/tests/src/Functional/Rest/BlockResourceTestBase.php index bfb09c5f740bc612a6194b14006727790d47708c..998690caa8352267149a2233835ec384fe5bf9ea 100644 --- a/core/modules/block/tests/src/Functional/Rest/BlockResourceTestBase.php +++ b/core/modules/block/tests/src/Functional/Rest/BlockResourceTestBase.php @@ -10,7 +10,7 @@ abstract class BlockResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Rest/BlockXmlBasicAuthTest.php b/core/modules/block/tests/src/Functional/Rest/BlockXmlBasicAuthTest.php index 60631cdb2ab02e21e1095c7bd11390319d1e8039..2b720d1d9fc751539227d1a9fe67d1610b4ee61e 100644 --- a/core/modules/block/tests/src/Functional/Rest/BlockXmlBasicAuthTest.php +++ b/core/modules/block/tests/src/Functional/Rest/BlockXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class BlockXmlBasicAuthTest extends BlockResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Functional/Views/DisplayBlockTest.php b/core/modules/block/tests/src/Functional/Views/DisplayBlockTest.php index fd3a1d1da556e7887633eef154c761838c21c830..0a18d7fa0fd74c87a9dbe4da2d34bd55e93b0862 100644 --- a/core/modules/block/tests/src/Functional/Views/DisplayBlockTest.php +++ b/core/modules/block/tests/src/Functional/Views/DisplayBlockTest.php @@ -28,7 +28,7 @@ class DisplayBlockTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'block_test_views', 'test_page_test', 'contextual', 'views_ui']; + public static $modules = ['node', 'block_test_views', 'test_page_test', 'contextual', 'views_ui']; /** * Views used by this test. diff --git a/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php b/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php index b083bc3c571783f08a0ec547d77f3131e4e10b8a..e9ecc06526062b249a450183ca7bb8c7d3d252bf 100644 --- a/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php +++ b/core/modules/block/tests/src/FunctionalJavascript/BlockFilterTest.php @@ -15,7 +15,7 @@ class BlockFilterTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'block']; + public static $modules = ['user', 'block']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php b/core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php index cfd9a4680c89ccad592a02ab5a1a09015304f4a5..2bf41e0f4c02c4665d88efdc0a2ab6483fcf2eaf 100644 --- a/core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php +++ b/core/modules/block/tests/src/Kernel/BlockConfigSchemaTest.php @@ -18,7 +18,7 @@ class BlockConfigSchemaTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'aggregator', 'book', diff --git a/core/modules/block/tests/src/Kernel/BlockInterfaceTest.php b/core/modules/block/tests/src/Kernel/BlockInterfaceTest.php index 6e1a4d25451000bab8e7ca92f7886e6fc160ced4..48d63a302d2e54c36d2eb6e98dc3711bc14284e8 100644 --- a/core/modules/block/tests/src/Kernel/BlockInterfaceTest.php +++ b/core/modules/block/tests/src/Kernel/BlockInterfaceTest.php @@ -13,7 +13,7 @@ */ class BlockInterfaceTest extends KernelTestBase { - protected static $modules = ['system', 'block', 'block_test', 'user']; + public static $modules = ['system', 'block', 'block_test', 'user']; /** * Test configuration and subsequent form() and build() method calls. diff --git a/core/modules/block/tests/src/Kernel/BlockRebuildTest.php b/core/modules/block/tests/src/Kernel/BlockRebuildTest.php index 3cd63dff1d5994b57fa1c1a282913423842c3d34..2443c21052ff1d7bddf480ef6dba7ea8081833c3 100644 --- a/core/modules/block/tests/src/Kernel/BlockRebuildTest.php +++ b/core/modules/block/tests/src/Kernel/BlockRebuildTest.php @@ -19,7 +19,7 @@ class BlockRebuildTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'system']; + public static $modules = ['block', 'system']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php b/core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php index 59ce2dbe98657ccb6b48aeab27fbb0e99e89c554..cfe9d1b0d8895dfaf65da5c674e34fcec1eeb6db 100644 --- a/core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php +++ b/core/modules/block/tests/src/Kernel/BlockStorageUnitTest.php @@ -21,7 +21,7 @@ class BlockStorageUnitTest extends KernelTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'system']; + public static $modules = ['block', 'block_test', 'system']; /** * The block storage. diff --git a/core/modules/block/tests/src/Kernel/BlockViewBuilderTest.php b/core/modules/block/tests/src/Kernel/BlockViewBuilderTest.php index 05164de28ca6f45ab87d184b8d37ff4af3d16391..71c4f55b8d089b51defe53222244b3fa011e2c75 100644 --- a/core/modules/block/tests/src/Kernel/BlockViewBuilderTest.php +++ b/core/modules/block/tests/src/Kernel/BlockViewBuilderTest.php @@ -20,7 +20,7 @@ class BlockViewBuilderTest extends KernelTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'system', 'user']; + public static $modules = ['block', 'block_test', 'system', 'user']; /** * The block being tested. diff --git a/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php b/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php index 515e5eeb4af586b714fbce5a39dc154ccc08b266..4078782143baec2b27852c774878b6e358e3c8ec 100644 --- a/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php +++ b/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php @@ -14,7 +14,7 @@ class MigrateBlockContentTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'aggregator', 'book', 'block', diff --git a/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php b/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php index 9b499b820fa3285de388e920dad811b5c905b630..e0876fd1e487f9781998e64482d595b7abea527d 100644 --- a/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php +++ b/core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockTest.php @@ -15,7 +15,7 @@ class MigrateBlockTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'views', 'comment', diff --git a/core/modules/block/tests/src/Kernel/Migrate/d7/MigrateBlockTest.php b/core/modules/block/tests/src/Kernel/Migrate/d7/MigrateBlockTest.php index 8028cbc0b9d40429a972ecd64a3a4c6323c6243d..6f07dc9c21e7bc38f865e94d2b2ba48574f2e9ff 100644 --- a/core/modules/block/tests/src/Kernel/Migrate/d7/MigrateBlockTest.php +++ b/core/modules/block/tests/src/Kernel/Migrate/d7/MigrateBlockTest.php @@ -16,7 +16,7 @@ class MigrateBlockTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'views', 'comment', diff --git a/core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php b/core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php index b0f507e126ec49db624cab04847958366f41e80f..66c2679bb052e9f684bf8213ff56959237282b84 100644 --- a/core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php +++ b/core/modules/block/tests/src/Kernel/Plugin/migrate/source/BlockTest.php @@ -15,7 +15,7 @@ class BlockTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'migrate_drupal']; + public static $modules = ['block', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php b/core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php index 18dd8041350b7cd9eb464cd7edf21e29ebe52fab..445f32cec50e79d840988b46039bf5eead3c41f0 100644 --- a/core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php +++ b/core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php @@ -16,7 +16,7 @@ class BlockTranslationTest extends BlockTest { /** * {@inheritdoc} */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/block_content/src/Tests/BlockContentTestBase.php b/core/modules/block_content/src/Tests/BlockContentTestBase.php index b3a3b8d47685529d4af17f4fefa4820b32497f2d..a60ab91d4bf6a4de41846a221187cc2b95a09760 100644 --- a/core/modules/block_content/src/Tests/BlockContentTestBase.php +++ b/core/modules/block_content/src/Tests/BlockContentTestBase.php @@ -42,7 +42,7 @@ abstract class BlockContentTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['block', 'block_content']; + public static $modules = ['block', 'block_content']; /** * Whether or not to auto-create the basic block type during setup. diff --git a/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php b/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php index 24b7770f048be62b627bd6802cf67181595608bd..0e3fbfeeb0099cece8985748de7cfd7bb820ba76 100644 --- a/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php +++ b/core/modules/block_content/src/Tests/Views/BlockContentTestBase.php @@ -39,7 +39,7 @@ abstract class BlockContentTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'block_content_test_views']; + public static $modules = ['block', 'block_content', 'block_content_test_views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php b/core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php index d226273ae002e2777ee48e7c0a492ccbc25040ea..ea5dd2873debaccb8156beb21d513921c3236908 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php @@ -20,7 +20,7 @@ class BlockContentCacheTagsTest extends EntityCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content']; + public static $modules = ['block_content']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php b/core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php index 0920781c06745e5f3d79cb97c5688cd2388e680b..e4e1a48ac8fdfda1cb1e226ea8214e6f12ae6b01 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php @@ -12,7 +12,7 @@ class BlockContentContextualLinksTest extends BlockContentTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'contextual', ]; diff --git a/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php b/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php index 1f3576493a4d4cef537fa672af0f166aa751f2fc..46768d694b249bee1a1e74a992023f129a95ddc3 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentCreationTest.php @@ -20,7 +20,7 @@ class BlockContentCreationTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block_content_test', 'dblog', 'field_ui']; + public static $modules = ['block_content_test', 'dblog', 'field_ui']; /** * Permissions to grant admin user. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentListTest.php b/core/modules/block_content/tests/src/Functional/BlockContentListTest.php index cf665bffaeef1ccbc967a36f2223d76918efc12b..8919c05d00193c6354d84979aaa116725d35f1ce 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentListTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentListTest.php @@ -20,7 +20,7 @@ class BlockContentListTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'config_translation']; + public static $modules = ['block', 'block_content', 'config_translation']; /** * Tests the custom block listing page. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php b/core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php index c89ef37ca52a1bf2f3dec5f50c277df53df93585..f9cf29eb77bcc20ea4c47a4871c3f2d10d25ab9e 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentListViewsTest.php @@ -18,7 +18,7 @@ class BlockContentListViewsTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'config_translation', 'views']; + public static $modules = ['block', 'block_content', 'config_translation', 'views']; /** * Tests the custom block listing page. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentPageViewTest.php b/core/modules/block_content/tests/src/Functional/BlockContentPageViewTest.php index 5e773e9035f30c5a808b48b43652bb04c26ce658..355faf1f0f4a3c87faee0e2ac9117e2baade6c06 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentPageViewTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentPageViewTest.php @@ -14,7 +14,7 @@ class BlockContentPageViewTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block_content_test']; + public static $modules = ['block_content_test']; /** * Checks block edit and fallback functionality. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php b/core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php index 70377c4bbdfad7573b539dcaf4466c40ba3e210e..fe730e8a0c4da36cc0afd5936ed857069966e0c2 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentSaveTest.php @@ -16,7 +16,7 @@ class BlockContentSaveTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block_content_test']; + public static $modules = ['block_content_test']; /** * Sets the test up. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentTestBase.php b/core/modules/block_content/tests/src/Functional/BlockContentTestBase.php index 50bf4fc8f16e6a9d786da0ac83ac56b37cd35d31..c8c32fdacfb03018858b7fb9bcb90d007cffeaf9 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentTestBase.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentTestBase.php @@ -39,7 +39,7 @@ abstract class BlockContentTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_content']; + public static $modules = ['block', 'block_content']; /** * Whether or not to auto-create the basic block type during setup. diff --git a/core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php b/core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php index 1652bd3e59e5d71df20e48a37474d86b995355f5..6fc5f1af01324ce87c2f053e0cd0f6a0e3d2d83c 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentTranslationUITest.php @@ -18,7 +18,7 @@ class BlockContentTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'block', diff --git a/core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php b/core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php index 9303a8f73a450aef71662aede9eb317c9dec4dcc..b707c83a92c0e590e87c15a2ed64bc0024fcbf89 100644 --- a/core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php +++ b/core/modules/block_content/tests/src/Functional/BlockContentTypeTest.php @@ -20,7 +20,7 @@ class BlockContentTypeTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['field_ui']; + public static $modules = ['field_ui']; /** * Permissions to grant admin user. diff --git a/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonAnonTest.php b/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonAnonTest.php index ce9e41074835421de2291f26f517663dfee34f9b..33c1108d24864334da0ad7ca1fcbafaeb6600275 100644 --- a/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonAnonTest.php +++ b/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonAnonTest.php @@ -18,7 +18,7 @@ class BlockContentHalJsonAnonTest extends BlockContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonBasicAuthTest.php index bec66f1df171a225221d7491cd098e99c405dfbc..b9b262e9bedc4fdb931757fe3b4a982303ec0d5a 100644 --- a/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Hal/BlockContentHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class BlockContentHalJsonBasicAuthTest extends BlockContentHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonAnonTest.php b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonAnonTest.php index 67a1e943280221f32536aa1b7239b6b512a8059e..3bfff1068a81007301297586638945e12affd344 100644 --- a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonAnonTest.php +++ b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class BlockContentTypeHalJsonAnonTest extends BlockContentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonBasicAuthTest.php index 8bcabcf5175766d97d44c19d468b6a7d555ee5b5..6112c2b60a716528e15ea896da9571ff512da431 100644 --- a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class BlockContentTypeHalJsonBasicAuthTest extends BlockContentTypeResourceTestB /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonCookieTest.php b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonCookieTest.php index 970cc73722081eb225bd68aab9a11dab6cdb3a0e..889d775cde401983942ad421481fbb7141eaf01f 100644 --- a/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonCookieTest.php +++ b/core/modules/block_content/tests/src/Functional/Hal/BlockContentTypeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class BlockContentTypeHalJsonCookieTest extends BlockContentTypeResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentJsonBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentJsonBasicAuthTest.php index 44e7657efda276ad48f7227778323c55d008b1dd..63bf314eb511017e5fce4d3492950320d8e402f9 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentJsonBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class BlockContentJsonBasicAuthTest extends BlockContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentResourceTestBase.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentResourceTestBase.php index e74f4e2f3260ae55e12749fcebba4dc37a48e64d..4a3ac11f4c5a71e448a48421057f1c9ef567bedc 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentResourceTestBase.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentResourceTestBase.php @@ -18,7 +18,7 @@ abstract class BlockContentResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content']; + public static $modules = ['block_content']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeJsonBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeJsonBasicAuthTest.php index 7884a4ff468325e4e99bf002c382324103444673..a993d1f1bd5a5480abd176177796096982839b15 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeJsonBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class BlockContentTypeJsonBasicAuthTest extends BlockContentTypeResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeResourceTestBase.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeResourceTestBase.php index 46fe436be607f41bd779d4914bbd15203a9969b9..13d6ed2d00d7f36aa2517e31c8549632b208618c 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeResourceTestBase.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeResourceTestBase.php @@ -10,7 +10,7 @@ abstract class BlockContentTypeResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content']; + public static $modules = ['block_content']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeXmlBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeXmlBasicAuthTest.php index 1a402fbd4d288535e0023c0d820a5859c6ff45ce..a878c7d5b3cd9d926f20a4992413c43695587f59 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeXmlBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentTypeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class BlockContentTypeXmlBasicAuthTest extends BlockContentTypeResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Rest/BlockContentXmlBasicAuthTest.php b/core/modules/block_content/tests/src/Functional/Rest/BlockContentXmlBasicAuthTest.php index 73dd5c90e0d9b1571ed9c7b9eacd8e5a95d19e42..199abea08dceb83887b6ae0837c37609540deddc 100644 --- a/core/modules/block_content/tests/src/Functional/Rest/BlockContentXmlBasicAuthTest.php +++ b/core/modules/block_content/tests/src/Functional/Rest/BlockContentXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class BlockContentXmlBasicAuthTest extends BlockContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/UnpublishedBlockTest.php b/core/modules/block_content/tests/src/Functional/UnpublishedBlockTest.php index c85816d561813b3434aada9a22ac170b5ce789f1..8f87ccacccafd5731ed93fce6520ed9d3b33b33f 100644 --- a/core/modules/block_content/tests/src/Functional/UnpublishedBlockTest.php +++ b/core/modules/block_content/tests/src/Functional/UnpublishedBlockTest.php @@ -18,7 +18,7 @@ class UnpublishedBlockTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content']; + public static $modules = ['block_content']; /** * Tests unpublishing of block_content entities. diff --git a/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php b/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php index 70c7f07fc5007c221f58ef0785f2c8a900369880..a77c2e1b297c263da760aa4e5a6815607ebdc407 100644 --- a/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php +++ b/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php @@ -15,7 +15,7 @@ class BlockContentFieldFilterTest extends BlockContentTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Views used by this test. diff --git a/core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php b/core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php index d283a1bd55a0ecb2a0dcc602e4a5f470c8f56b57..10ce140e967edd2b39054a1d41a294f23c68f04f 100644 --- a/core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php +++ b/core/modules/block_content/tests/src/Functional/Views/BlockContentRedirectTest.php @@ -21,7 +21,7 @@ class BlockContentRedirectTest extends BlockContentTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'views']; + public static $modules = ['block', 'block_content', 'views']; /** * Tests the redirect destination when editing block content. diff --git a/core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php b/core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php index c3cd0deac8519a77eca0f94567d553328bd53f46..dd14a4266cb3b45a9762effe22dbbe505c81f412 100644 --- a/core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php +++ b/core/modules/block_content/tests/src/Functional/Views/BlockContentTestBase.php @@ -34,7 +34,7 @@ abstract class BlockContentTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['block', 'block_content', 'block_content_test_views']; + public static $modules = ['block', 'block_content', 'block_content_test_views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php b/core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php index 5275605c2d20e6c3075b5b54e58dcabeb3b7a58a..2c59e5c50fe84ec0c7888e02f0d84e0a7d273821 100644 --- a/core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php +++ b/core/modules/block_content/tests/src/Functional/Views/BlockContentWizardTest.php @@ -14,7 +14,7 @@ class BlockContentWizardTest extends BlockContentTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content', 'views_ui']; + public static $modules = ['block_content', 'views_ui']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Functional/Views/RevisionRelationshipsTest.php b/core/modules/block_content/tests/src/Functional/Views/RevisionRelationshipsTest.php index f5240c41f0b3a15073a566280b9f45f2d2e26d3c..0ccebd2a9f665bd5daa3573c95d186a3cadf9c86 100644 --- a/core/modules/block_content/tests/src/Functional/Views/RevisionRelationshipsTest.php +++ b/core/modules/block_content/tests/src/Functional/Views/RevisionRelationshipsTest.php @@ -20,7 +20,7 @@ class RevisionRelationshipsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['block_content' , 'block_content_test_views']; + public static $modules = ['block_content' , 'block_content_test_views']; /** * Views used by this test. diff --git a/core/modules/block_content/tests/src/Kernel/BlockContentAccessHandlerTest.php b/core/modules/block_content/tests/src/Kernel/BlockContentAccessHandlerTest.php index 45510ed8593954278eac6fc59e01dcc138a05a4a..64b524d80b89273049ca86fed288b9b3d84bef62 100644 --- a/core/modules/block_content/tests/src/Kernel/BlockContentAccessHandlerTest.php +++ b/core/modules/block_content/tests/src/Kernel/BlockContentAccessHandlerTest.php @@ -23,7 +23,7 @@ class BlockContentAccessHandlerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'block_content', 'system', diff --git a/core/modules/block_content/tests/src/Kernel/BlockContentDeletionTest.php b/core/modules/block_content/tests/src/Kernel/BlockContentDeletionTest.php index 2274750205734b364679a84d5c4d634749eea015..e54b2d3d4a1e139678f291420d3d532e185862a2 100644 --- a/core/modules/block_content/tests/src/Kernel/BlockContentDeletionTest.php +++ b/core/modules/block_content/tests/src/Kernel/BlockContentDeletionTest.php @@ -17,7 +17,7 @@ class BlockContentDeletionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'block_content', 'system', 'user']; + public static $modules = ['block', 'block_content', 'system', 'user']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/BlockContentDeriverTest.php b/core/modules/block_content/tests/src/Kernel/BlockContentDeriverTest.php index cfec70a305cdc26b8120cedf9550b873a7c9a435..d08d86f25fa8a86f23bbbafd0733d33bd75c0e24 100644 --- a/core/modules/block_content/tests/src/Kernel/BlockContentDeriverTest.php +++ b/core/modules/block_content/tests/src/Kernel/BlockContentDeriverTest.php @@ -17,7 +17,7 @@ class BlockContentDeriverTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'block_content', 'system', 'user']; + public static $modules = ['block', 'block_content', 'system', 'user']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/BlockContentEntityReferenceSelectionTest.php b/core/modules/block_content/tests/src/Kernel/BlockContentEntityReferenceSelectionTest.php index f6dd9dec6b2e276e768d1196777e7b2f484b072f..e593336fa3a1eff8526203a199679efb5bca1b56 100644 --- a/core/modules/block_content/tests/src/Kernel/BlockContentEntityReferenceSelectionTest.php +++ b/core/modules/block_content/tests/src/Kernel/BlockContentEntityReferenceSelectionTest.php @@ -19,7 +19,7 @@ class BlockContentEntityReferenceSelectionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'block_content', 'block_content_test', diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php index d09a26bde10fab0b17e49349971072f596dc0264..7d343738c9b7106d08bb62321366393b5f0fbbbc 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentBodyFieldTest.php @@ -15,7 +15,7 @@ */ class MigrateBlockContentBodyFieldTest extends MigrateDrupal7TestBase { - protected static $modules = ['block', 'block_content', 'filter', 'text']; + public static $modules = ['block', 'block_content', 'filter', 'text']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityDisplayTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityDisplayTest.php index 1cd4b35feefc7203ba0b6222c8b5fd03365ff95e..5eb9e413d9fb2518d4ba7e808652197aa929322c 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityDisplayTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityDisplayTest.php @@ -15,7 +15,7 @@ class MigrateBlockContentEntityDisplayTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'block_content', 'filter', 'text']; + public static $modules = ['block', 'block_content', 'filter', 'text']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityFormDisplayTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityFormDisplayTest.php index 314e41298b339b4543730e27617dc98adc140331..8fed90584815fcb5bd5b54427bfa357e2f7dc25f 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityFormDisplayTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentEntityFormDisplayTest.php @@ -15,7 +15,7 @@ class MigrateBlockContentEntityFormDisplayTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'block_content', 'filter', 'text']; + public static $modules = ['block', 'block_content', 'filter', 'text']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentStubTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentStubTest.php index a6356edc7e1c206b386c06a8c476beea55cb99de..1958039acb62768a3f08d416d82d836a3893e5ad 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentStubTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentStubTest.php @@ -19,7 +19,7 @@ class MigrateBlockContentStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content']; + public static $modules = ['block_content']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentTypeTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentTypeTest.php index e8ab9910884ea25b405941561f38b075df31f88d..4accc2040b7011c2a94691ea0aded3472dfd13c9 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentTypeTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/MigrateBlockContentTypeTest.php @@ -13,7 +13,7 @@ */ class MigrateBlockContentTypeTest extends MigrateDrupal7TestBase { - protected static $modules = ['block', 'block_content', 'filter', 'text']; + public static $modules = ['block', 'block_content', 'filter', 'text']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateBlockContentTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateBlockContentTest.php index 22e37e4de83dab04f2679cedd648ed5f0ca3b8b3..87e6fac89346331075358b874ada38f7e04ecbc7 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateBlockContentTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateBlockContentTest.php @@ -15,7 +15,7 @@ class MigrateBlockContentTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'block_content']; + public static $modules = ['block', 'block_content']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateCustomBlockContentTranslationTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateCustomBlockContentTranslationTest.php index 45f0c88ba6d6862bdf55b533b8ce69639c7730e4..2847e35d5e17dc0c6165cb3fa8708b15b6eecf6e 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateCustomBlockContentTranslationTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/d6/MigrateCustomBlockContentTranslationTest.php @@ -15,7 +15,7 @@ class MigrateCustomBlockContentTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block_content', 'content_translation', 'language', diff --git a/core/modules/block_content/tests/src/Kernel/Migrate/d7/MigrateCustomBlockTest.php b/core/modules/block_content/tests/src/Kernel/Migrate/d7/MigrateCustomBlockTest.php index edab6765b8209f93bfa45a0226b1657c708d0f7a..706a7ccf05cb69d6467035a380d76c6806723136 100644 --- a/core/modules/block_content/tests/src/Kernel/Migrate/d7/MigrateCustomBlockTest.php +++ b/core/modules/block_content/tests/src/Kernel/Migrate/d7/MigrateCustomBlockTest.php @@ -13,7 +13,7 @@ */ class MigrateCustomBlockTest extends MigrateDrupal7TestBase { - protected static $modules = [ + public static $modules = [ 'block_content', 'filter', 'text', diff --git a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTest.php b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTest.php index 7f84eb582020101341e1018354aacb56e6847270..22ab03c1f9de86ef5dffafbdbbe3dd854227b833 100644 --- a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTest.php +++ b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTest.php @@ -15,7 +15,7 @@ class BoxTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content', 'migrate_drupal']; + public static $modules = ['block_content', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTranslationTest.php b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTranslationTest.php index 6bf50176fd8e9b71d7fc3674dda3bf832546761c..3c3b89e30dd899c04ef780d53487fa791e5d70bd 100644 --- a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTranslationTest.php +++ b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d6/BoxTranslationTest.php @@ -16,7 +16,7 @@ class BoxTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content', 'migrate_drupal']; + public static $modules = ['block_content', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php index 3a2e02d534fc19a51cba00d98e118545e9e6011d..55419e38788bfc5b73a5fac36cd4f0a17342dbb4 100644 --- a/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php +++ b/core/modules/block_content/tests/src/Kernel/Plugin/migrate/source/d7/BlockCustomTest.php @@ -15,7 +15,7 @@ class BlockCustomTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block_content', 'migrate_drupal']; + public static $modules = ['block_content', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/block_place/tests/src/Functional/BlockPlaceTest.php b/core/modules/block_place/tests/src/Functional/BlockPlaceTest.php index 919be0c25de421d73791b09f43af8e00a46583b7..8e89048acdaa42abad40e819462b649fde6fe1ad 100644 --- a/core/modules/block_place/tests/src/Functional/BlockPlaceTest.php +++ b/core/modules/block_place/tests/src/Functional/BlockPlaceTest.php @@ -17,7 +17,7 @@ class BlockPlaceTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'block_place', 'toolbar']; + public static $modules = ['block', 'block_place', 'toolbar']; /** * Tests placing blocks as an admin. diff --git a/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php b/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php index 40ed9da5ca612d4db668a4a069ed054d6ce21493..a863ff1529fc2494f512956d4825115e33c42fd4 100644 --- a/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php +++ b/core/modules/book/tests/src/Functional/BookBreadcrumbTest.php @@ -16,7 +16,7 @@ class BookBreadcrumbTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['book', 'block', 'book_breadcrumb_test']; + public static $modules = ['book', 'block', 'book_breadcrumb_test']; /** * A book node. diff --git a/core/modules/book/tests/src/Functional/BookContentModerationTest.php b/core/modules/book/tests/src/Functional/BookContentModerationTest.php index 2cdd45d891c3bf74d0f99e966843aa6723bde944..b9c7cd28418467ced0d18b6215e67bec883346f8 100644 --- a/core/modules/book/tests/src/Functional/BookContentModerationTest.php +++ b/core/modules/book/tests/src/Functional/BookContentModerationTest.php @@ -20,7 +20,7 @@ class BookContentModerationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['book', 'block', 'book_test', 'content_moderation']; + public static $modules = ['book', 'block', 'book_test', 'content_moderation']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Functional/BookInstallTest.php b/core/modules/book/tests/src/Functional/BookInstallTest.php index be0ee9a83b5f2b10404b6c2dc5f6ac139c902d77..b5658bdc72372bb4e2d6dfda2a28805d3188bebd 100644 --- a/core/modules/book/tests/src/Functional/BookInstallTest.php +++ b/core/modules/book/tests/src/Functional/BookInstallTest.php @@ -17,7 +17,7 @@ class BookInstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Functional/BookTest.php b/core/modules/book/tests/src/Functional/BookTest.php index 0097c1f789734a6a3c71c99d392339c6408f6588..d02dfd50d9c3f1fddd4deca01beda884b5726141 100644 --- a/core/modules/book/tests/src/Functional/BookTest.php +++ b/core/modules/book/tests/src/Functional/BookTest.php @@ -20,7 +20,7 @@ class BookTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['book', 'block', 'node_access_test', 'book_test']; + public static $modules = ['book', 'block', 'node_access_test', 'book_test']; /** * A user with permission to view a book and access printer-friendly version. diff --git a/core/modules/book/tests/src/Functional/Views/BookRelationshipTest.php b/core/modules/book/tests/src/Functional/Views/BookRelationshipTest.php index 41d626fd400eedd341454d38fafd7a2ecec469e8..9ee79c78dc6110ec7a7573319f11719c047c5bc1 100644 --- a/core/modules/book/tests/src/Functional/Views/BookRelationshipTest.php +++ b/core/modules/book/tests/src/Functional/Views/BookRelationshipTest.php @@ -26,7 +26,7 @@ class BookRelationshipTest extends ViewTestBase { * * @var array */ - protected static $modules = ['book_test_views', 'book', 'views']; + public static $modules = ['book_test_views', 'book', 'views']; /** * A book node. diff --git a/core/modules/book/tests/src/FunctionalJavascript/BookJavascriptTest.php b/core/modules/book/tests/src/FunctionalJavascript/BookJavascriptTest.php index a4247167cfb65319998c31da9bf51c7a4465a3e0..dc9b8125ccccda21dc2cf8eaed836a08081e29cb 100644 --- a/core/modules/book/tests/src/FunctionalJavascript/BookJavascriptTest.php +++ b/core/modules/book/tests/src/FunctionalJavascript/BookJavascriptTest.php @@ -17,7 +17,7 @@ class BookJavascriptTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['book']; + public static $modules = ['book']; /** * Tests re-ordering of books. diff --git a/core/modules/book/tests/src/Kernel/BookPendingRevisionTest.php b/core/modules/book/tests/src/Kernel/BookPendingRevisionTest.php index 516b1e16535a4551b62ce109ddbacb7df3045377..ababb3daaab0cd03c34d4eae4330c72d67356748 100644 --- a/core/modules/book/tests/src/Kernel/BookPendingRevisionTest.php +++ b/core/modules/book/tests/src/Kernel/BookPendingRevisionTest.php @@ -18,7 +18,7 @@ class BookPendingRevisionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'filter', 'text', 'node', 'book']; + public static $modules = ['system', 'user', 'field', 'filter', 'text', 'node', 'book']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Kernel/BookUninstallTest.php b/core/modules/book/tests/src/Kernel/BookUninstallTest.php index a330ae4c83e4cb5ba26481008540d23c674f584d..d4205ebf11bc7be8c8808745f82495be20d60bb4 100644 --- a/core/modules/book/tests/src/Kernel/BookUninstallTest.php +++ b/core/modules/book/tests/src/Kernel/BookUninstallTest.php @@ -18,7 +18,7 @@ class BookUninstallTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'filter', 'text', 'node', 'book']; + public static $modules = ['system', 'user', 'field', 'filter', 'text', 'node', 'book']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php b/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php index 98f3e74f786f2d2c958a835325d309e96aa87950..7498638455a583fbf5a63173a739cdd8d34ba6bf 100644 --- a/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php +++ b/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php @@ -17,7 +17,7 @@ class MigrateBookConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['book']; + public static $modules = ['book']; /** * Data provider for testBookSettings(). diff --git a/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookTest.php b/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookTest.php index 28168f85742829309d7fa7163cd1410f03da9aff..cab65e39c25cd9fc14a7b8695180354d1b501235 100644 --- a/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookTest.php +++ b/core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookTest.php @@ -15,7 +15,7 @@ class MigrateBookTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['book', 'menu_ui']; + public static $modules = ['book', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php b/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php index a3be4b84516daf3942398220a5825f8b8ecdabf9..a5504c9104c29eb1d45b3edfe68bb9bfb556703d 100644 --- a/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php +++ b/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php @@ -17,7 +17,7 @@ class MigrateBookConfigsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['book', 'node']; + public static $modules = ['book', 'node']; /** * {@inheritdoc} diff --git a/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookTest.php b/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookTest.php index 3e3855fb1538640ce610523fe6e96312305bc129..1d0e25365ae3dc0fd86350b9a05dbd6fd8a74652 100644 --- a/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookTest.php +++ b/core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookTest.php @@ -15,7 +15,7 @@ class MigrateBookTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'book', 'menu_ui', 'node', diff --git a/core/modules/book/tests/src/Kernel/Plugin/migrate/source/BookTest.php b/core/modules/book/tests/src/Kernel/Plugin/migrate/source/BookTest.php index f31eb0c933f6b65533bf5969a30e28444332dca4..02594742591f6aaabfcaba31a296f67f4a8eea22 100644 --- a/core/modules/book/tests/src/Kernel/Plugin/migrate/source/BookTest.php +++ b/core/modules/book/tests/src/Kernel/Plugin/migrate/source/BookTest.php @@ -15,7 +15,7 @@ class BookTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['book', 'migrate_drupal', 'node']; + public static $modules = ['book', 'migrate_drupal', 'node']; /** * {@inheritdoc} diff --git a/core/modules/breakpoint/tests/src/Kernel/BreakpointDiscoveryTest.php b/core/modules/breakpoint/tests/src/Kernel/BreakpointDiscoveryTest.php index 725d858ef5c30263aa261515a5831dd226e436d1..dc8175787b49c5fbb5bd75fb25ce93c2f3c2223c 100644 --- a/core/modules/breakpoint/tests/src/Kernel/BreakpointDiscoveryTest.php +++ b/core/modules/breakpoint/tests/src/Kernel/BreakpointDiscoveryTest.php @@ -16,7 +16,7 @@ class BreakpointDiscoveryTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'breakpoint', 'breakpoint_module_test']; + public static $modules = ['system', 'breakpoint', 'breakpoint_module_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/ckeditor/tests/src/Functional/CKEditorAdminTest.php b/core/modules/ckeditor/tests/src/Functional/CKEditorAdminTest.php index 6d290414c45e7bcd2d680ff009823c25fe08f02e..aeba60fd7545bc0cd125153ebedca0060c5e6ef9 100644 --- a/core/modules/ckeditor/tests/src/Functional/CKEditorAdminTest.php +++ b/core/modules/ckeditor/tests/src/Functional/CKEditorAdminTest.php @@ -20,7 +20,7 @@ class CKEditorAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'ckeditor']; + public static $modules = ['filter', 'editor', 'ckeditor']; /** * A user with the 'administer filters' permission. diff --git a/core/modules/ckeditor/tests/src/Functional/CKEditorLoadingTest.php b/core/modules/ckeditor/tests/src/Functional/CKEditorLoadingTest.php index 213a417e12f6411c58b33213758b9828e402a202..cad0947dcf9996f37e2508d9103f0e379e919439 100644 --- a/core/modules/ckeditor/tests/src/Functional/CKEditorLoadingTest.php +++ b/core/modules/ckeditor/tests/src/Functional/CKEditorLoadingTest.php @@ -18,7 +18,7 @@ class CKEditorLoadingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'ckeditor', 'node']; + public static $modules = ['filter', 'editor', 'ckeditor', 'node']; /** * An untrusted user with access to only the 'plain_text' format. diff --git a/core/modules/ckeditor/tests/src/Functional/CKEditorStylesComboAdminTest.php b/core/modules/ckeditor/tests/src/Functional/CKEditorStylesComboAdminTest.php index 75e62feaca5775453df9ea34322b4a7aad8afd05..9f41834de5ba0f1b221f2c267099f4f5ef7be61c 100644 --- a/core/modules/ckeditor/tests/src/Functional/CKEditorStylesComboAdminTest.php +++ b/core/modules/ckeditor/tests/src/Functional/CKEditorStylesComboAdminTest.php @@ -18,7 +18,7 @@ class CKEditorStylesComboAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'ckeditor']; + public static $modules = ['filter', 'editor', 'ckeditor']; /** * A user with the 'administer filters' permission. diff --git a/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php b/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php index 631b10edc519ae64b80999e404eed340ae0e9b15..c47b67b0b496f170a9e645cb401b9f4730f100ac 100644 --- a/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php +++ b/core/modules/ckeditor/tests/src/Functional/CKEditorToolbarButtonTest.php @@ -19,7 +19,7 @@ class CKEditorToolbarButtonTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'ckeditor', 'locale']; + public static $modules = ['filter', 'editor', 'ckeditor', 'locale']; /** * {@inheritdoc} diff --git a/core/modules/ckeditor/tests/src/FunctionalJavascript/AjaxCssTest.php b/core/modules/ckeditor/tests/src/FunctionalJavascript/AjaxCssTest.php index d42b9dbf778a8664fde8894117206505839e6316..ddb53d8303e888b58ab13703e19f74051cab70e4 100644 --- a/core/modules/ckeditor/tests/src/FunctionalJavascript/AjaxCssTest.php +++ b/core/modules/ckeditor/tests/src/FunctionalJavascript/AjaxCssTest.php @@ -16,7 +16,7 @@ class AjaxCssTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ckeditor', 'ckeditor_test']; + public static $modules = ['ckeditor', 'ckeditor_test']; /** * {@inheritdoc} diff --git a/core/modules/ckeditor/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php b/core/modules/ckeditor/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php index 25418332adf13211880b51284a2e92368ab15b28..a9ee69719b54a0f046062e81c6a9902a3d38b63e 100644 --- a/core/modules/ckeditor/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php +++ b/core/modules/ckeditor/tests/src/FunctionalJavascript/CKEditorIntegrationTest.php @@ -27,7 +27,7 @@ class CKEditorIntegrationTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'ckeditor', 'filter']; + public static $modules = ['node', 'ckeditor', 'filter']; /** * {@inheritdoc} diff --git a/core/modules/ckeditor/tests/src/Kernel/CKEditorPluginManagerTest.php b/core/modules/ckeditor/tests/src/Kernel/CKEditorPluginManagerTest.php index 16be3b0c0cb7a6174f9891b425d17ecbccda27c6..5664728ec30253c07651ae5bae6e935dc1d4aa99 100644 --- a/core/modules/ckeditor/tests/src/Kernel/CKEditorPluginManagerTest.php +++ b/core/modules/ckeditor/tests/src/Kernel/CKEditorPluginManagerTest.php @@ -18,7 +18,7 @@ class CKEditorPluginManagerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'filter', 'editor', 'ckeditor']; + public static $modules = ['system', 'user', 'filter', 'editor', 'ckeditor']; /** * The manager for "CKEditor plugin" plugins. diff --git a/core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php b/core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php index d93a4dc1fa8cbcd584f21d7a398eb2655d33965d..6ff5d20e6a60aafd1f55bfc2229101faee18ba48 100644 --- a/core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php +++ b/core/modules/ckeditor/tests/src/Kernel/CKEditorTest.php @@ -19,7 +19,7 @@ class CKEditorTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'filter', 'editor', 'ckeditor', 'filter_test']; + public static $modules = ['system', 'user', 'filter', 'editor', 'ckeditor', 'filter_test']; /** * An instance of the "CKEditor" text editor plugin. diff --git a/core/modules/ckeditor/tests/src/Kernel/Plugin/CKEditorPlugin/InternalTest.php b/core/modules/ckeditor/tests/src/Kernel/Plugin/CKEditorPlugin/InternalTest.php index afd916bb57948870cc54d939b9c51d77250df3a8..aecc22802012d5c15436d7dd8fc0b247e09f8418 100644 --- a/core/modules/ckeditor/tests/src/Kernel/Plugin/CKEditorPlugin/InternalTest.php +++ b/core/modules/ckeditor/tests/src/Kernel/Plugin/CKEditorPlugin/InternalTest.php @@ -18,7 +18,7 @@ class InternalTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'ckeditor', 'ckeditor_test', 'filter', diff --git a/core/modules/color/tests/src/Functional/ColorConfigSchemaTest.php b/core/modules/color/tests/src/Functional/ColorConfigSchemaTest.php index 8793151b498a23580e5104cbcb69c70ce99c9991..f93f3587b1fe77994868507a956b45736fef6951 100644 --- a/core/modules/color/tests/src/Functional/ColorConfigSchemaTest.php +++ b/core/modules/color/tests/src/Functional/ColorConfigSchemaTest.php @@ -16,7 +16,7 @@ class ColorConfigSchemaTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['color']; + public static $modules = ['color']; /** * A user with administrative permissions. diff --git a/core/modules/color/tests/src/Functional/ColorSafePreviewTest.php b/core/modules/color/tests/src/Functional/ColorSafePreviewTest.php index c13a403b26b6952deca70e1eaf62bdd74be860a4..9f6914c996c003c9048938d7bb85b849b08d3066 100644 --- a/core/modules/color/tests/src/Functional/ColorSafePreviewTest.php +++ b/core/modules/color/tests/src/Functional/ColorSafePreviewTest.php @@ -17,7 +17,7 @@ class ColorSafePreviewTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['color', 'color_test']; + public static $modules = ['color', 'color_test']; /** * A user with administrative permissions. diff --git a/core/modules/color/tests/src/Functional/ColorTest.php b/core/modules/color/tests/src/Functional/ColorTest.php index 80d0851ce2829c6da7220c60afbd833db5ec7a9a..de3ab691607d2cce3e37168b671f6f4522e8b415 100644 --- a/core/modules/color/tests/src/Functional/ColorTest.php +++ b/core/modules/color/tests/src/Functional/ColorTest.php @@ -17,7 +17,7 @@ class ColorTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['color', 'color_test', 'block', 'file']; + public static $modules = ['color', 'color_test', 'block', 'file']; /** * A user with administrative permissions. diff --git a/core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php b/core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php index 598fba6651a58861dc9790d8a0b004f6a182f4a3..946d1e38c50664877287e80b8f999897206a05f6 100644 --- a/core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php +++ b/core/modules/color/tests/src/Kernel/Migrate/d7/MigrateColorTest.php @@ -14,7 +14,7 @@ class MigrateColorTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['color']; + public static $modules = ['color']; /** * {@inheritdoc} diff --git a/core/modules/color/tests/src/Kernel/Plugin/migrate/source/d7/ColorTest.php b/core/modules/color/tests/src/Kernel/Plugin/migrate/source/d7/ColorTest.php index a2ed9b80ba7cd355b54f55c3d11c5d2d78fd1466..cb634a9c63fa9ea289826f960b141cbcd703426a 100644 --- a/core/modules/color/tests/src/Kernel/Plugin/migrate/source/d7/ColorTest.php +++ b/core/modules/color/tests/src/Kernel/Plugin/migrate/source/d7/ColorTest.php @@ -16,7 +16,7 @@ class ColorTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['color', 'migrate_drupal']; + public static $modules = ['color', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/src/Tests/CommentTestBase.php b/core/modules/comment/src/Tests/CommentTestBase.php index efe90e503c8ed1955870930304ae4312847fa69f..3b923ffaf4a40db5ebc451ea72c80cba2b4c903d 100644 --- a/core/modules/comment/src/Tests/CommentTestBase.php +++ b/core/modules/comment/src/Tests/CommentTestBase.php @@ -29,7 +29,7 @@ abstract class CommentTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime']; + public static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime']; /** * An administrative user with permission to configure comment settings. diff --git a/core/modules/comment/src/Tests/Views/CommentTestBase.php b/core/modules/comment/src/Tests/Views/CommentTestBase.php index e0f5178ba339ae836bb380f74ea193da0b11b3e9..c364e2631f5250e8aff8fc92db99a5c3624eca3d 100644 --- a/core/modules/comment/src/Tests/Views/CommentTestBase.php +++ b/core/modules/comment/src/Tests/Views/CommentTestBase.php @@ -26,7 +26,7 @@ abstract class CommentTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'comment_test_views']; + public static $modules = ['node', 'comment', 'comment_test_views']; /** * A normal user with permission to post comments (without approval). diff --git a/core/modules/comment/tests/src/Functional/CommentAccessTest.php b/core/modules/comment/tests/src/Functional/CommentAccessTest.php index 92ff3118653e0457ef8a86b1f918ec5843aba176..b2e4725785ae470f3ad9769bb3a36e54d08b2e54 100644 --- a/core/modules/comment/tests/src/Functional/CommentAccessTest.php +++ b/core/modules/comment/tests/src/Functional/CommentAccessTest.php @@ -19,7 +19,7 @@ class CommentAccessTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'comment', ]; diff --git a/core/modules/comment/tests/src/Functional/CommentActionsTest.php b/core/modules/comment/tests/src/Functional/CommentActionsTest.php index 76f5e25530445c0daced3564ae0d995822726d68..326749b7c03c956aa2ed90a3f33a1983b30bc38d 100644 --- a/core/modules/comment/tests/src/Functional/CommentActionsTest.php +++ b/core/modules/comment/tests/src/Functional/CommentActionsTest.php @@ -17,7 +17,7 @@ class CommentActionsTest extends CommentTestBase { * * @var array */ - protected static $modules = ['dblog', 'action']; + public static $modules = ['dblog', 'action']; /** * Tests comment publish and unpublish actions. diff --git a/core/modules/comment/tests/src/Functional/CommentBlockTest.php b/core/modules/comment/tests/src/Functional/CommentBlockTest.php index b87b548290988b96cb4d0f3c965735988e769506..0e2ee1f05ff6c647ed8e421231f6b3d6a5e9bbdf 100644 --- a/core/modules/comment/tests/src/Functional/CommentBlockTest.php +++ b/core/modules/comment/tests/src/Functional/CommentBlockTest.php @@ -17,7 +17,7 @@ class CommentBlockTest extends CommentTestBase { * * @var array */ - protected static $modules = ['block', 'views']; + public static $modules = ['block', 'views']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Functional/CommentBookTest.php b/core/modules/comment/tests/src/Functional/CommentBookTest.php index 118357b131d4bcf09b6d6d4416e1d16a516dd0b6..45693b57fbd0ff586aad446346a97c2bad36c0df 100644 --- a/core/modules/comment/tests/src/Functional/CommentBookTest.php +++ b/core/modules/comment/tests/src/Functional/CommentBookTest.php @@ -22,7 +22,7 @@ class CommentBookTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['book', 'comment']; + public static $modules = ['book', 'comment']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Functional/CommentCacheTagsTest.php b/core/modules/comment/tests/src/Functional/CommentCacheTagsTest.php index 86b7a32bb3681cb7cdc06501a21a5dbc216c3016..0b0f4863afe72a9bde70d168fa087694afd558a7 100644 --- a/core/modules/comment/tests/src/Functional/CommentCacheTagsTest.php +++ b/core/modules/comment/tests/src/Functional/CommentCacheTagsTest.php @@ -25,7 +25,7 @@ class CommentCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment']; + public static $modules = ['comment']; /** * @var \Drupal\entity_test\Entity\EntityTest diff --git a/core/modules/comment/tests/src/Functional/CommentEntityTest.php b/core/modules/comment/tests/src/Functional/CommentEntityTest.php index 39e87f30d71826b4fc9c43791229ee0d87ff70b7..62d57f0371eee2e9cebde0e818c128e5cb19975a 100644 --- a/core/modules/comment/tests/src/Functional/CommentEntityTest.php +++ b/core/modules/comment/tests/src/Functional/CommentEntityTest.php @@ -21,7 +21,7 @@ class CommentEntityTest extends CommentTestBase { * * @var array */ - protected static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime', 'taxonomy']; + public static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime', 'taxonomy']; use TaxonomyTestTrait; diff --git a/core/modules/comment/tests/src/Functional/CommentFieldsTest.php b/core/modules/comment/tests/src/Functional/CommentFieldsTest.php index b2485f88ba53d0e794f33da296dff242eecea72a..2df997334839b347c74e81ffc7eab02daf9c5d0f 100644 --- a/core/modules/comment/tests/src/Functional/CommentFieldsTest.php +++ b/core/modules/comment/tests/src/Functional/CommentFieldsTest.php @@ -19,7 +19,7 @@ class CommentFieldsTest extends CommentTestBase { * * @var array */ - protected static $modules = ['field_ui']; + public static $modules = ['field_ui']; /** * Tests that the default 'comment_body' field is correctly added. diff --git a/core/modules/comment/tests/src/Functional/CommentLanguageTest.php b/core/modules/comment/tests/src/Functional/CommentLanguageTest.php index 2eb750b8479f70d1408249128b71b33a17b3fee1..ce9a9abb043b713c5048c7bbcbb82a6e41d59a2e 100644 --- a/core/modules/comment/tests/src/Functional/CommentLanguageTest.php +++ b/core/modules/comment/tests/src/Functional/CommentLanguageTest.php @@ -26,7 +26,7 @@ class CommentLanguageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'language', 'language_test', 'comment_test']; + public static $modules = ['node', 'language', 'language_test', 'comment_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php b/core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php index 259dd48a9c06fb08e3c83d26188b34604d115dbc..e49361b651b81261507af9c7b07b463e43e6102e 100644 --- a/core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php +++ b/core/modules/comment/tests/src/Functional/CommentLinksAlterTest.php @@ -9,7 +9,7 @@ */ class CommentLinksAlterTest extends CommentTestBase { - protected static $modules = ['comment_test']; + public static $modules = ['comment_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Functional/CommentLinksTest.php b/core/modules/comment/tests/src/Functional/CommentLinksTest.php index b9f233cb879d7d638d7c1f002060c59e99f514ca..3d79d966420e36913ff0d1951d4bd0ef4dc10c13 100644 --- a/core/modules/comment/tests/src/Functional/CommentLinksTest.php +++ b/core/modules/comment/tests/src/Functional/CommentLinksTest.php @@ -36,7 +36,7 @@ class CommentLinksTest extends CommentTestBase { * * @todo Remove this dependency. */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * Tests that comment links are output and can be hidden. diff --git a/core/modules/comment/tests/src/Functional/CommentNewIndicatorTest.php b/core/modules/comment/tests/src/Functional/CommentNewIndicatorTest.php index 4e4baab384c166354abdc6a2d1ef15c015ced826..69f7bdeeed55ceaebc946e991dde4efb9de02504 100644 --- a/core/modules/comment/tests/src/Functional/CommentNewIndicatorTest.php +++ b/core/modules/comment/tests/src/Functional/CommentNewIndicatorTest.php @@ -22,7 +22,7 @@ class CommentNewIndicatorTest extends CommentTestBase { * * @todo Remove this dependency. */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * Get node "x new comments" metadata from the server for the current user. diff --git a/core/modules/comment/tests/src/Functional/CommentNodeAccessTest.php b/core/modules/comment/tests/src/Functional/CommentNodeAccessTest.php index 3decbf8868703104a7317367050420d51ad2f0cb..6842dc137fe64064811976638941a5dd5fcda70a 100644 --- a/core/modules/comment/tests/src/Functional/CommentNodeAccessTest.php +++ b/core/modules/comment/tests/src/Functional/CommentNodeAccessTest.php @@ -19,7 +19,7 @@ class CommentNodeAccessTest extends CommentTestBase { * * @var array */ - protected static $modules = ['node_access_test']; + public static $modules = ['node_access_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Functional/CommentNonNodeTest.php b/core/modules/comment/tests/src/Functional/CommentNonNodeTest.php index 7b41033f894663fc760e618dfcd3233f6de11385..d404747844b5646951ad894a2f7b6c2216c587e1 100644 --- a/core/modules/comment/tests/src/Functional/CommentNonNodeTest.php +++ b/core/modules/comment/tests/src/Functional/CommentNonNodeTest.php @@ -25,7 +25,7 @@ class CommentNonNodeTest extends BrowserTestBase { use FieldUiTestTrait; use CommentTestTrait; - protected static $modules = ['comment', 'user', 'field_ui', 'entity_test', 'block']; + public static $modules = ['comment', 'user', 'field_ui', 'entity_test', 'block']; /** * An administrative user with permission to configure comment settings. diff --git a/core/modules/comment/tests/src/Functional/CommentRssTest.php b/core/modules/comment/tests/src/Functional/CommentRssTest.php index 2a56056a2f66ea9216fcd2f532f6227fa0423a62..60708bd4a8b1112506bdfa3755f9ce9db4c2473e 100644 --- a/core/modules/comment/tests/src/Functional/CommentRssTest.php +++ b/core/modules/comment/tests/src/Functional/CommentRssTest.php @@ -21,7 +21,7 @@ class CommentRssTest extends CommentTestBase { * * @var array */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php b/core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php index 094f1e6003bad9c21618b196e9044926aaaa35d0..d2495d3791c75032378f0a16d117a25a7ee15daa 100644 --- a/core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php +++ b/core/modules/comment/tests/src/Functional/CommentStatusFieldAccessTest.php @@ -37,7 +37,7 @@ class CommentStatusFieldAccessTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'comment', 'user', diff --git a/core/modules/comment/tests/src/Functional/CommentTestBase.php b/core/modules/comment/tests/src/Functional/CommentTestBase.php index bd7721215a4f0d9927029d63bd332bab16408938..7cadcbffe98a1a247939ac14ea1fb3d5f8b3e79f 100644 --- a/core/modules/comment/tests/src/Functional/CommentTestBase.php +++ b/core/modules/comment/tests/src/Functional/CommentTestBase.php @@ -23,7 +23,7 @@ abstract class CommentTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime']; + public static $modules = ['block', 'comment', 'node', 'history', 'field_ui', 'datetime']; /** * An administrative user with permission to configure comment settings. diff --git a/core/modules/comment/tests/src/Functional/CommentTokenReplaceTest.php b/core/modules/comment/tests/src/Functional/CommentTokenReplaceTest.php index a3f6a2e18c157ba03143fb1d1f69d009506e9379..72a941f9c5a454e52a7389f97553743671f9231e 100644 --- a/core/modules/comment/tests/src/Functional/CommentTokenReplaceTest.php +++ b/core/modules/comment/tests/src/Functional/CommentTokenReplaceTest.php @@ -24,7 +24,7 @@ class CommentTokenReplaceTest extends CommentTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Creates a comment, then tests the tokens generated from it. diff --git a/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php b/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php index 3e8990fb835115cbeab8b8d5e030debf5558d5a5..f6bec9c7d3548603ed52a218e589a266cbff4cf5 100644 --- a/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php +++ b/core/modules/comment/tests/src/Functional/CommentTranslationUITest.php @@ -47,7 +47,7 @@ class CommentTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'node', 'comment']; + public static $modules = ['language', 'content_translation', 'node', 'comment']; protected function setUp() { $this->entityTypeId = 'comment'; diff --git a/core/modules/comment/tests/src/Functional/CommentUninstallTest.php b/core/modules/comment/tests/src/Functional/CommentUninstallTest.php index 03f904f8305f123475cfe3c11c52bbad6ed10528..96d7eeae8daf7f67151de9122e7d330ddbf927d9 100644 --- a/core/modules/comment/tests/src/Functional/CommentUninstallTest.php +++ b/core/modules/comment/tests/src/Functional/CommentUninstallTest.php @@ -21,7 +21,7 @@ class CommentUninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['comment', 'node']; + public static $modules = ['comment', 'node']; protected function setUp() { parent::setup(); diff --git a/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonBasicAuthTest.php index a15540d96dc8a55ada7a57cc7c4b0946e7c25c93..7d766fdfcacc28a388b5ac1784b788619150d93c 100644 --- a/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class CommentHalJsonBasicAuthTest extends CommentHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonTestBase.php b/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonTestBase.php index 49c77166f774ac871cb202db3625e99038a0966a..a9cf1c24256fd66610b6fc7224ed9fff779df0f7 100644 --- a/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonTestBase.php +++ b/core/modules/comment/tests/src/Functional/Hal/CommentHalJsonTestBase.php @@ -14,7 +14,7 @@ abstract class CommentHalJsonTestBase extends CommentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonAnonTest.php b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonAnonTest.php index 7b0ddb77e001e4080e53807d3194e5cdc6457a0e..179ae1861218ee305f935079c5eda9966c23d2a2 100644 --- a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonAnonTest.php +++ b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class CommentTypeHalJsonAnonTest extends CommentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonBasicAuthTest.php index 02f6a46a32bd3ac163d7fda2e66c28b12fc66856..3a014bd1d19f98e7a5dc3c171b8fbd41edc78cd4 100644 --- a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class CommentTypeHalJsonBasicAuthTest extends CommentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonCookieTest.php b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonCookieTest.php index 56b0451ad7c4bd12516585ff7d6feaa4f74fb32f..9d6440ead469dd225a1756c7b16290c62f8e1359 100644 --- a/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonCookieTest.php +++ b/core/modules/comment/tests/src/Functional/Hal/CommentTypeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class CommentTypeHalJsonCookieTest extends CommentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentJsonBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Rest/CommentJsonBasicAuthTest.php index 28201fcc1eacb0e9004da00e14f7dca310bf934b..a4f72551a47be55ad8ef59c67c5235e10e0d27a4 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentJsonBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class CommentJsonBasicAuthTest extends CommentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php b/core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php index bc0023a0d244d6c7589d58f82c45f796500a8df9..7d1abdbb680536aca73af637529e33edb17f66af 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php @@ -19,7 +19,7 @@ abstract class CommentResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'entity_test']; + public static $modules = ['comment', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentTypeJsonBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Rest/CommentTypeJsonBasicAuthTest.php index 6df7cc0a5272f3542fa7b6b00fa928760c0cf063..c947dbc92c615f08d0bbd8b713b91002fba4d052 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentTypeJsonBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentTypeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class CommentTypeJsonBasicAuthTest extends CommentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentTypeResourceTestBase.php b/core/modules/comment/tests/src/Functional/Rest/CommentTypeResourceTestBase.php index eb4574f9a0957271644f1df14867e3bda2b68dbc..5d9b4133620cc85431c7723fe3d57b521f2f5180 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentTypeResourceTestBase.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentTypeResourceTestBase.php @@ -13,7 +13,7 @@ abstract class CommentTypeResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment']; + public static $modules = ['node', 'comment']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentTypeXmlBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Rest/CommentTypeXmlBasicAuthTest.php index f0f7fdff975100bd789a1174f2bedcf24f303ed4..e92f2bcc65daed830ddc687d57580f975a926724 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentTypeXmlBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentTypeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class CommentTypeXmlBasicAuthTest extends CommentTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Rest/CommentXmlBasicAuthTest.php b/core/modules/comment/tests/src/Functional/Rest/CommentXmlBasicAuthTest.php index 3c2f2960936214c9908dfa60171a856e3a9bb9bc..d1f38e44a4b3fcefad436784c98cfdbbf5405ccd 100644 --- a/core/modules/comment/tests/src/Functional/Rest/CommentXmlBasicAuthTest.php +++ b/core/modules/comment/tests/src/Functional/Rest/CommentXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class CommentXmlBasicAuthTest extends CommentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Functional/Views/CommentFieldFilterTest.php b/core/modules/comment/tests/src/Functional/Views/CommentFieldFilterTest.php index ec43ab73d91788d99efd3f4aea90614254252963..dabacc3bed2545cb1fb44ec4d36564eda4a73481 100644 --- a/core/modules/comment/tests/src/Functional/Views/CommentFieldFilterTest.php +++ b/core/modules/comment/tests/src/Functional/Views/CommentFieldFilterTest.php @@ -15,7 +15,7 @@ class CommentFieldFilterTest extends CommentTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Views used by this test. diff --git a/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php b/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php index acfbe0288d3e8d5dc9888e2482e549ada2fb6271..c6e39f83169e7f601154c5348dc4b5a207a863a3 100644 --- a/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php +++ b/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php @@ -22,7 +22,7 @@ class CommentRestExportTest extends CommentTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'comment_test_views', 'rest', 'hal']; + public static $modules = ['node', 'comment', 'comment_test_views', 'rest', 'hal']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/comment/tests/src/Functional/Views/CommentTestBase.php b/core/modules/comment/tests/src/Functional/Views/CommentTestBase.php index b3995af09810f0cc13d7fd1bcd94c9731785669c..a9444a232025eebc912156eb8f6cffc13297f13f 100644 --- a/core/modules/comment/tests/src/Functional/Views/CommentTestBase.php +++ b/core/modules/comment/tests/src/Functional/Views/CommentTestBase.php @@ -19,7 +19,7 @@ abstract class CommentTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'comment_test_views']; + public static $modules = ['node', 'comment', 'comment_test_views']; /** * A normal user with permission to post comments (without approval). diff --git a/core/modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php b/core/modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php index 80b59e8a30e314a4731b1291871697d8ee378787..4085f4f47bf5e319f7d8c20215215501bd5f3dad 100644 --- a/core/modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php +++ b/core/modules/comment/tests/src/Functional/Views/DefaultViewRecentCommentsTest.php @@ -22,7 +22,7 @@ class DefaultViewRecentCommentsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'block']; + public static $modules = ['node', 'comment', 'block']; /** * Number of results for the Master display. diff --git a/core/modules/comment/tests/src/Functional/Views/NodeCommentsTest.php b/core/modules/comment/tests/src/Functional/Views/NodeCommentsTest.php index ae8981a4467c15f77f463f4fb781331c18d82b72..e2c5d15ef51f03792822fa175ec67146572836b7 100644 --- a/core/modules/comment/tests/src/Functional/Views/NodeCommentsTest.php +++ b/core/modules/comment/tests/src/Functional/Views/NodeCommentsTest.php @@ -14,7 +14,7 @@ class NodeCommentsTest extends CommentTestBase { * * @var array */ - protected static $modules = ['history']; + public static $modules = ['history']; /** * Views used by this test. diff --git a/core/modules/comment/tests/src/Functional/Views/WizardTest.php b/core/modules/comment/tests/src/Functional/Views/WizardTest.php index d21c14e90cebb94aa9d85988d983c0d7d2d54036..9c02fccdac8556c4e34486c036871083b871b376 100644 --- a/core/modules/comment/tests/src/Functional/Views/WizardTest.php +++ b/core/modules/comment/tests/src/Functional/Views/WizardTest.php @@ -21,7 +21,7 @@ class WizardTest extends WizardTestBase { * * @var array */ - protected static $modules = ['node', 'comment']; + public static $modules = ['node', 'comment']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/CommentBundlesTest.php b/core/modules/comment/tests/src/Kernel/CommentBundlesTest.php index b46e12f33100554f769eec8abc689aa8496f67af..d9072334095f1183cd306a95023d4c4cbc5c0748 100644 --- a/core/modules/comment/tests/src/Kernel/CommentBundlesTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentBundlesTest.php @@ -15,7 +15,7 @@ class CommentBundlesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'node', 'taxonomy', 'user']; + public static $modules = ['comment', 'node', 'taxonomy', 'user']; /** * Entity type ids to use for target_entity_type_id on comment bundles. diff --git a/core/modules/comment/tests/src/Kernel/CommentDefaultFormatterCacheTagsTest.php b/core/modules/comment/tests/src/Kernel/CommentDefaultFormatterCacheTagsTest.php index 6ec7323f5d58282209dc162d985134d648ca4bec..bdea71df15fa1a1692b0079cf0247ddf326bccc8 100644 --- a/core/modules/comment/tests/src/Kernel/CommentDefaultFormatterCacheTagsTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentDefaultFormatterCacheTagsTest.php @@ -26,7 +26,7 @@ class CommentDefaultFormatterCacheTagsTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'comment']; + public static $modules = ['entity_test', 'comment']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/CommentFieldAccessTest.php b/core/modules/comment/tests/src/Kernel/CommentFieldAccessTest.php index de8bfc2a9b4f4575ff8b459c17c607f85d88e397..c17f247dff0b6df2dd39fb8d3a97f1a1b582e0a3 100644 --- a/core/modules/comment/tests/src/Kernel/CommentFieldAccessTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentFieldAccessTest.php @@ -30,7 +30,7 @@ class CommentFieldAccessTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['comment', 'entity_test', 'user']; + public static $modules = ['comment', 'entity_test', 'user']; /** * Fields that only users with administer comments permissions can change. diff --git a/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php b/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php index 25f89d41c0a125b183d5b9bb06f253512b250b3d..88311994c4d5a57a887c22ede76ac67749f3153d 100644 --- a/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentIntegrationTest.php @@ -20,7 +20,7 @@ class CommentIntegrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'field', 'entity_test', 'user', 'system', 'dblog']; + public static $modules = ['comment', 'field', 'entity_test', 'user', 'system', 'dblog']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/CommentItemTest.php b/core/modules/comment/tests/src/Kernel/CommentItemTest.php index 51e7315de9c2a169604f61f066ab6a2095be48e5..85f6112561886c2767c2bf5a715a5c1a1c7d53f0 100644 --- a/core/modules/comment/tests/src/Kernel/CommentItemTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentItemTest.php @@ -23,7 +23,7 @@ class CommentItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['comment', 'entity_test', 'user']; + public static $modules = ['comment', 'entity_test', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/modules/comment/tests/src/Kernel/CommentStringIdEntitiesTest.php b/core/modules/comment/tests/src/Kernel/CommentStringIdEntitiesTest.php index 6a8a93cc2033c13a0ddc8212a91e99028a09dafb..adbe1b08d5ec070b8b19e10f9290419a926408d9 100644 --- a/core/modules/comment/tests/src/Kernel/CommentStringIdEntitiesTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentStringIdEntitiesTest.php @@ -18,7 +18,7 @@ class CommentStringIdEntitiesTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'comment', 'user', 'field', diff --git a/core/modules/comment/tests/src/Kernel/CommentValidationTest.php b/core/modules/comment/tests/src/Kernel/CommentValidationTest.php index 0510ee8abbdba9df87fe584da46628575e453681..1d81d55ececacb41070009d7cc1e4ca78779960a 100644 --- a/core/modules/comment/tests/src/Kernel/CommentValidationTest.php +++ b/core/modules/comment/tests/src/Kernel/CommentValidationTest.php @@ -19,7 +19,7 @@ class CommentValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['comment', 'node']; + public static $modules = ['comment', 'node']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/MigrateCommentStubTest.php b/core/modules/comment/tests/src/Kernel/Migrate/MigrateCommentStubTest.php index b4ee03dcdcd4c08b4d9dc47bd484d3ea6b8692a9..3b0674222cd13efb6a3adc7941f76c868ec985a7 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/MigrateCommentStubTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/MigrateCommentStubTest.php @@ -19,7 +19,7 @@ class MigrateCommentStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'node']; + public static $modules = ['comment', 'node']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityDisplayTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityDisplayTest.php index 2341aea0bd952e1a2dd0856871c885d54029af26..2c13371fb8a54186f244e0cbf3716f123925659a 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityDisplayTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityDisplayTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'menu_ui']; + public static $modules = ['comment', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplaySubjectTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplaySubjectTest.php index be7d16c3e3cf4a6d01ad71cbe2d4745013a7f9aa..74a871521acb92ed4aa2d550a493964618c9d8d1 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplaySubjectTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplaySubjectTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityFormDisplaySubjectTest extends MigrateDrupal6TestBase /** * {@inheritdoc} */ - protected static $modules = ['comment']; + public static $modules = ['comment']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplayTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplayTest.php index cc4b384d4cb94167eef9031cbb3565db0f80aea2..c9e0d6b8a6f38128b1f2d72deac955ebd3244851 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplayTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentEntityFormDisplayTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityFormDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'menu_ui']; + public static $modules = ['comment', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldInstanceTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldInstanceTest.php index f0a65928eee0a94a269f7d23fbeb2f51306aeeb1..03469c48089e9c3c0de95212bb9e59a62fc194ac 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldInstanceTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldInstanceTest.php @@ -16,7 +16,7 @@ class MigrateCommentFieldInstanceTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'menu_ui']; + public static $modules = ['comment', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php index 7974cc069bdb1daadd7c1395af48e1bd9397212f..e08e2d2e20ab6d1873c0a9d92bc0aed1f4b49990 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentFieldTest.php @@ -16,7 +16,7 @@ class MigrateCommentFieldTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'menu_ui']; + public static $modules = ['comment', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php index 21c0f75bff9a254f2a331b2e4d68280e5af77731..06ca65582e532674ad47590707f1834ed3649d3e 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTest.php @@ -20,7 +20,7 @@ class MigrateCommentTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'menu_ui']; + public static $modules = ['comment', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTypeTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTypeTest.php index 339d8f804b58b19b5109c032daef28ed35ba69ba..2fa60826de298d38500b54aff9a9cc54af5148db 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTypeTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d6/MigrateCommentTypeTest.php @@ -16,7 +16,7 @@ class MigrateCommentTypeTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment']; + public static $modules = ['comment']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php index 42cac7d899eeb3505734e7bafd5709066d126453..aeb1e923acb6f09568dc9a86350a9cdecaa269c8 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityDisplayTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityDisplayTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text', 'menu_ui']; + public static $modules = ['node', 'comment', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplaySubjectTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplaySubjectTest.php index 372dbcfd76e0a961be578b564369679fb1e30e34..2c3025a449177a008a232686291cf6fb7585f4db 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplaySubjectTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplaySubjectTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityFormDisplaySubjectTest extends MigrateDrupal7TestBase /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text', 'menu_ui']; + public static $modules = ['node', 'comment', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php index 271525127f4ddd8f098f428e1940ce5bfa077608..2f0f6f318c0ad9e9784adf9f80bbcf91d1fcb506 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentEntityFormDisplayTest.php @@ -16,7 +16,7 @@ class MigrateCommentEntityFormDisplayTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text', 'menu_ui']; + public static $modules = ['node', 'comment', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php index 4f49ac4c4708196863be4fb7278ecc3235a26c28..4b928f7a3d41f01124644b56d4adb7856ee396dc 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php @@ -16,7 +16,7 @@ class MigrateCommentFieldInstanceTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text', 'menu_ui']; + public static $modules = ['node', 'comment', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php index 5d4e19b6f70c5b0d3bb2936fa34a13b62b09e4f9..aa59f678f7f9a4a1f84695747713e4106b568d21 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldTest.php @@ -16,7 +16,7 @@ class MigrateCommentFieldTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text']; + public static $modules = ['node', 'comment', 'text']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php index 0341e150fab9d12ba60e6efe4fcaa17be5c84925..68df72f376907f5f7240ffdfcc4c79a1cbac4a82 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTest.php @@ -17,7 +17,7 @@ class MigrateCommentTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'filter', diff --git a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTypeTest.php b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTypeTest.php index 2eb5b41597f8860faab5d3feff9ba1eef51af3f3..b0c96dab837ce78a3a18efb7cba016a816d6a255 100644 --- a/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTypeTest.php +++ b/core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentTypeTest.php @@ -16,7 +16,7 @@ class MigrateCommentTypeTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'comment', 'text']; + public static $modules = ['node', 'comment', 'text']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php index 38099d1cf8a83af9926a33accfd0ceb9d34dbe12..a4d91c468611da328c6e63c19593846f6c288817 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentSourceWithHighWaterTest.php @@ -16,7 +16,7 @@ class CommentSourceWithHighWaterTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php index e32b9d3838a370d1291091f7cf99f35ab4163e4c..0372f0f9ac06088b9d8d71552d69a3fd0e96bd9c 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentTest.php @@ -15,7 +15,7 @@ class CommentTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariablePerCommentTypeTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariablePerCommentTypeTest.php index 895ed97ebd18ee6c76354ce4ea516b3665692fd0..dd1b1fd06c6dfd363a877f4800b04c813d50eb50 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariablePerCommentTypeTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariablePerCommentTypeTest.php @@ -15,7 +15,7 @@ class CommentVariablePerCommentTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariableTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariableTest.php index 74cc6b743d75e48ccbbcbf84d29c23690d61c563..a84c776b770c21000ceebd5ac42d89e89dad3b02 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariableTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d6/CommentVariableTest.php @@ -15,7 +15,7 @@ class CommentVariableTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTest.php index b40e974d7c650eca6d35d823584cd8a5e65338a9..dc9948956318cc2ded877a85b4c2126e46ee2f74 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTest.php @@ -15,7 +15,7 @@ class CommentTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTypeTest.php b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTypeTest.php index 6355c16005af4b3eaf13513b81bcb4624046a333..11f3db58421dc4911723aa66adbcf9b55be98030 100644 --- a/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTypeTest.php +++ b/core/modules/comment/tests/src/Kernel/Plugin/migrate/source/d7/CommentTypeTest.php @@ -15,7 +15,7 @@ class CommentTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'migrate_drupal']; + public static $modules = ['comment', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php index fc8d21cc6375ee69350219a9a45645f4ea41ed88..86e89499057ad28dd01697f1296cabbf4c119e79 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentAdminViewTest.php @@ -34,7 +34,7 @@ class CommentAdminViewTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'user', 'comment', 'entity_test', diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentLinksTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentLinksTest.php index 4546ab27b4773c0e4f47e7c69572c9e64edf7148..acd2cf6e72c4a61bec4d6636affaa34671bf0238 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentLinksTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentLinksTest.php @@ -22,7 +22,7 @@ class CommentLinksTest extends CommentViewsKernelTestBase { * * @var array */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Views used by this test. diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentUserNameTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentUserNameTest.php index 2e6bcb686b5245c550dc85703acf2eb549312ebc..2144ebd94aa5d61731ac5cd39ed3845dd75374ee 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentUserNameTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentUserNameTest.php @@ -27,7 +27,7 @@ class CommentUserNameTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'comment', 'entity_test']; + public static $modules = ['user', 'comment', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php index 89c93c64581284fb9b747b47a5c7ab8c984874e1..1ca5e43971f2f88cfcef0bd36f8cbf492e661bf9 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentViewsFieldAccessTest.php @@ -17,7 +17,7 @@ class CommentViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'entity_test']; + public static $modules = ['comment', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/comment/tests/src/Kernel/Views/CommentViewsKernelTestBase.php b/core/modules/comment/tests/src/Kernel/Views/CommentViewsKernelTestBase.php index e112b8a129c62a67a85b598130d7a67a8fc9737d..516750382cafeabf74fe9e0c476fc2218c89f26f 100644 --- a/core/modules/comment/tests/src/Kernel/Views/CommentViewsKernelTestBase.php +++ b/core/modules/comment/tests/src/Kernel/Views/CommentViewsKernelTestBase.php @@ -16,7 +16,7 @@ abstract class CommentViewsKernelTestBase extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['comment_test_views', 'user', 'comment']; + public static $modules = ['comment_test_views', 'user', 'comment']; /** * Admin user. diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonAnonTest.php b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonAnonTest.php index 19285aa020923874f16cb899447aa8a059f01c47..d874f45f263c3f874e4ad26b2b6310e460bb0728 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonAnonTest.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ConfigTestHalJsonAnonTest extends ConfigTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonBasicAuthTest.php b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonBasicAuthTest.php index 7fdb96b30786475ffa0b7c964dbd4c158759197f..01a69c329d8b3310dc7321196b39fdff5f724a96 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonBasicAuthTest.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ConfigTestHalJsonBasicAuthTest extends ConfigTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonCookieTest.php b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonCookieTest.php index dedbac91319217f0a88c49c66ad283d105806692..eb670d2a4ef7b351141f00b5907781cba9ab9d55 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonCookieTest.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Hal/ConfigTestHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ConfigTestHalJsonCookieTest extends ConfigTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestJsonBasicAuthTest.php b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestJsonBasicAuthTest.php index ac9fbe918d901f15dbe07a678681be0e29f52a1c..87c415840a1db6eb77eb50ab1e8e3d833d5e8e39 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestJsonBasicAuthTest.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ConfigTestJsonBasicAuthTest extends ConfigTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestResourceTestBase.php b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestResourceTestBase.php index ba4dd122df474306ab53399a8def24f7d6e80dab..9ab65d76ae9f575659046a417c6d7663f04eb9fb 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestResourceTestBase.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestResourceTestBase.php @@ -10,7 +10,7 @@ abstract class ConfigTestResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test', 'config_test_rest']; + public static $modules = ['config_test', 'config_test_rest']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestXmlBasicAuthTest.php b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestXmlBasicAuthTest.php index c7c21adea013a7c12c6c0499766665a92024fca6..c65028f212badaca7bb60567a0569471db7ef911 100644 --- a/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestXmlBasicAuthTest.php +++ b/core/modules/config/tests/config_test/tests/src/Functional/Rest/ConfigTestXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ConfigTestXmlBasicAuthTest extends ConfigTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/src/Functional/CacheabilityMetadataConfigOverrideIntegrationTest.php b/core/modules/config/tests/src/Functional/CacheabilityMetadataConfigOverrideIntegrationTest.php index f263255bd7283f525155ef0990725643e2f6c613..f2f8730a023fe9870d6051cc4ca1afd7e146685d 100644 --- a/core/modules/config/tests/src/Functional/CacheabilityMetadataConfigOverrideIntegrationTest.php +++ b/core/modules/config/tests/src/Functional/CacheabilityMetadataConfigOverrideIntegrationTest.php @@ -17,7 +17,7 @@ class CacheabilityMetadataConfigOverrideIntegrationTest extends BrowserTestBase /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block_test', 'config_override_integration_test', ]; diff --git a/core/modules/config/tests/src/Functional/ConfigDependencyWebTest.php b/core/modules/config/tests/src/Functional/ConfigDependencyWebTest.php index 052a2452d59b71eb8f3615fc00c4bfefa8e7a25f..696a36e8cb2916c80f0a159abd7f2d4dd8eea5e1 100644 --- a/core/modules/config/tests/src/Functional/ConfigDependencyWebTest.php +++ b/core/modules/config/tests/src/Functional/ConfigDependencyWebTest.php @@ -22,7 +22,7 @@ class ConfigDependencyWebTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests ConfigDependencyDeleteFormTrait. diff --git a/core/modules/config/tests/src/Functional/ConfigDraggableListBuilderTest.php b/core/modules/config/tests/src/Functional/ConfigDraggableListBuilderTest.php index 8a604491dd4c574219de4273354e5ce5cc6886a3..74829359a108620222279601ecf4af7c3c0e9521 100644 --- a/core/modules/config/tests/src/Functional/ConfigDraggableListBuilderTest.php +++ b/core/modules/config/tests/src/Functional/ConfigDraggableListBuilderTest.php @@ -15,7 +15,7 @@ class ConfigDraggableListBuilderTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Test draggable lists. diff --git a/core/modules/config/tests/src/Functional/ConfigEntityFormOverrideTest.php b/core/modules/config/tests/src/Functional/ConfigEntityFormOverrideTest.php index 6e83d16ab9e61f728e9cc0f1a2485b7360c802cb..a4dc92c78aa6f758551da89c1822fb9e5e115f4c 100644 --- a/core/modules/config/tests/src/Functional/ConfigEntityFormOverrideTest.php +++ b/core/modules/config/tests/src/Functional/ConfigEntityFormOverrideTest.php @@ -14,7 +14,7 @@ class ConfigEntityFormOverrideTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests that overrides do not affect forms or listing screens. diff --git a/core/modules/config/tests/src/Functional/ConfigEntityListMultilingualTest.php b/core/modules/config/tests/src/Functional/ConfigEntityListMultilingualTest.php index 8f16b1ec4a82968a85e8051bd36e90c5bb20133a..7c5fa1fac19fe29e4a19d9c35c4cbc51d9427d73 100644 --- a/core/modules/config/tests/src/Functional/ConfigEntityListMultilingualTest.php +++ b/core/modules/config/tests/src/Functional/ConfigEntityListMultilingualTest.php @@ -17,7 +17,7 @@ class ConfigEntityListMultilingualTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_test', 'language', 'block']; + public static $modules = ['config_test', 'language', 'block']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/src/Functional/ConfigEntityListTest.php b/core/modules/config/tests/src/Functional/ConfigEntityListTest.php index fe73372a5ab3f4084ce12ff6db8be0d256746640..b92629d1977d97a6d12f7bf092c9aaf034f20e87 100644 --- a/core/modules/config/tests/src/Functional/ConfigEntityListTest.php +++ b/core/modules/config/tests/src/Functional/ConfigEntityListTest.php @@ -21,7 +21,7 @@ class ConfigEntityListTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'config_test']; + public static $modules = ['block', 'config_test']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/src/Functional/ConfigEntityStatusUITest.php b/core/modules/config/tests/src/Functional/ConfigEntityStatusUITest.php index 4da9f8c7516ae733a67f6dd56492e3da3d6ba07d..af68f33bdc20e11522cd131c67222d83a9f16c0e 100644 --- a/core/modules/config/tests/src/Functional/ConfigEntityStatusUITest.php +++ b/core/modules/config/tests/src/Functional/ConfigEntityStatusUITest.php @@ -16,7 +16,7 @@ class ConfigEntityStatusUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests status operations. diff --git a/core/modules/config/tests/src/Functional/ConfigEntityTest.php b/core/modules/config/tests/src/Functional/ConfigEntityTest.php index 6f52b1dca4f325ef0afa186120687dc540c95347..61669d9379e450f38b07bcaf61c0d52e4e062d51 100644 --- a/core/modules/config/tests/src/Functional/ConfigEntityTest.php +++ b/core/modules/config/tests/src/Functional/ConfigEntityTest.php @@ -27,7 +27,7 @@ class ConfigEntityTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests CRUD operations. diff --git a/core/modules/config/tests/src/Functional/ConfigExportImportUITest.php b/core/modules/config/tests/src/Functional/ConfigExportImportUITest.php index 6dc3d6f52d4858bc66b33f2d2671cbe8766d107e..5ef146c8e4c810886d023b35ce19a12631cb7315 100644 --- a/core/modules/config/tests/src/Functional/ConfigExportImportUITest.php +++ b/core/modules/config/tests/src/Functional/ConfigExportImportUITest.php @@ -66,7 +66,7 @@ class ConfigExportImportUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config', 'node', 'field']; + public static $modules = ['config', 'node', 'field']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/src/Functional/ConfigExportUITest.php b/core/modules/config/tests/src/Functional/ConfigExportUITest.php index 4370dd0c4d21e622ade69f0d0a707d31c0306096..d92071e89de45b910dabc04207cb2aa6b73ac6c6 100644 --- a/core/modules/config/tests/src/Functional/ConfigExportUITest.php +++ b/core/modules/config/tests/src/Functional/ConfigExportUITest.php @@ -18,7 +18,7 @@ class ConfigExportUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config', 'config_test']; + public static $modules = ['config', 'config_test']; /** * {@inheritdoc} diff --git a/core/modules/config/tests/src/Functional/ConfigImportInstallProfileTest.php b/core/modules/config/tests/src/Functional/ConfigImportInstallProfileTest.php index 190157c46075435ade0de070a4165b432240db73..8b0787d6ee02ef6ca2b862ec0267d5592c3d23e2 100644 --- a/core/modules/config/tests/src/Functional/ConfigImportInstallProfileTest.php +++ b/core/modules/config/tests/src/Functional/ConfigImportInstallProfileTest.php @@ -23,7 +23,7 @@ class ConfigImportInstallProfileTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config']; + public static $modules = ['config']; /** * A user with the 'synchronize configuration' permission. diff --git a/core/modules/config/tests/src/Functional/ConfigImportUITest.php b/core/modules/config/tests/src/Functional/ConfigImportUITest.php index 298296903834e0c0214043cf9280f364391894fa..715976d1622e8dc60b38a09fe0fcb515954a4c68 100644 --- a/core/modules/config/tests/src/Functional/ConfigImportUITest.php +++ b/core/modules/config/tests/src/Functional/ConfigImportUITest.php @@ -19,7 +19,7 @@ class ConfigImportUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config', 'config_test', 'config_import_test', 'text', 'options']; + public static $modules = ['config', 'config_test', 'config_import_test', 'text', 'options']; /** * A user with the 'synchronize configuration' permission. diff --git a/core/modules/config/tests/src/Functional/ConfigImportUploadTest.php b/core/modules/config/tests/src/Functional/ConfigImportUploadTest.php index a1add2d636e9341ffab653bc06c1a8474f1990bd..6f6659d743ba51fce213d71a83f8531cf6bc31f1 100644 --- a/core/modules/config/tests/src/Functional/ConfigImportUploadTest.php +++ b/core/modules/config/tests/src/Functional/ConfigImportUploadTest.php @@ -26,7 +26,7 @@ class ConfigImportUploadTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config']; + public static $modules = ['config']; protected function setUp() { parent::setUp(); diff --git a/core/modules/config/tests/src/Functional/ConfigLanguageOverrideWebTest.php b/core/modules/config/tests/src/Functional/ConfigLanguageOverrideWebTest.php index 2318c22756a650de08063e27677270060f4efe26..c7e0b27d444832de8566d0d6b272ed573255258c 100644 --- a/core/modules/config/tests/src/Functional/ConfigLanguageOverrideWebTest.php +++ b/core/modules/config/tests/src/Functional/ConfigLanguageOverrideWebTest.php @@ -18,7 +18,7 @@ class ConfigLanguageOverrideWebTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'language', 'system', diff --git a/core/modules/config/tests/src/Functional/ConfigSingleImportExportTest.php b/core/modules/config/tests/src/Functional/ConfigSingleImportExportTest.php index 4b33643b7ee5ad634b796f30060c9003b08891ae..69a7ed74ea2e158c9c987af983677e2dce4c5708 100644 --- a/core/modules/config/tests/src/Functional/ConfigSingleImportExportTest.php +++ b/core/modules/config/tests/src/Functional/ConfigSingleImportExportTest.php @@ -17,7 +17,7 @@ class ConfigSingleImportExportTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config', 'config_test', diff --git a/core/modules/config/tests/src/Functional/LanguageNegotiationFormOverrideTest.php b/core/modules/config/tests/src/Functional/LanguageNegotiationFormOverrideTest.php index db5c45ce998661d1e418b161f7930fcd5d37958b..6c4e1bb3118a51e118ae9077a28c9e253dc198ca 100644 --- a/core/modules/config/tests/src/Functional/LanguageNegotiationFormOverrideTest.php +++ b/core/modules/config/tests/src/Functional/LanguageNegotiationFormOverrideTest.php @@ -12,7 +12,7 @@ */ class LanguageNegotiationFormOverrideTest extends BrowserTestBase { - protected static $modules = ['language', 'locale', 'locale_test']; + public static $modules = ['language', 'locale', 'locale_test']; /** * Tests that overrides do not affect language-negotiation form values. diff --git a/core/modules/config/tests/src/Functional/SchemaConfigListenerWebTest.php b/core/modules/config/tests/src/Functional/SchemaConfigListenerWebTest.php index 35270be09f1f8148074af6c62029a52af0640217..189d78fc6371a8514054ac8ad316a7ca66869289 100644 --- a/core/modules/config/tests/src/Functional/SchemaConfigListenerWebTest.php +++ b/core/modules/config/tests/src/Functional/SchemaConfigListenerWebTest.php @@ -15,7 +15,7 @@ class SchemaConfigListenerWebTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests \Drupal\Core\Config\Development\ConfigSchemaChecker. diff --git a/core/modules/config/tests/src/FunctionalJavascript/ConfigEntityTest.php b/core/modules/config/tests/src/FunctionalJavascript/ConfigEntityTest.php index 01b67903a4396e2d9015cacd1fbf0303b05b5019..f7e6dc8ff528caec5927a5cfe67f810809a06325 100644 --- a/core/modules/config/tests/src/FunctionalJavascript/ConfigEntityTest.php +++ b/core/modules/config/tests/src/FunctionalJavascript/ConfigEntityTest.php @@ -14,7 +14,7 @@ class ConfigEntityTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests ajax operations through the UI on 'Add' page. diff --git a/core/modules/config/tests/src/Kernel/ConfigUninstallViaCliImportTest.php b/core/modules/config/tests/src/Kernel/ConfigUninstallViaCliImportTest.php index ea307f1783798957ef0e6bc272210e574a639509..0ab0fd1764e8068c68c8fb23f1db943f6f4a52de 100644 --- a/core/modules/config/tests/src/Kernel/ConfigUninstallViaCliImportTest.php +++ b/core/modules/config/tests/src/Kernel/ConfigUninstallViaCliImportTest.php @@ -24,7 +24,7 @@ class ConfigUninstallViaCliImportTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'config']; + public static $modules = ['system', 'config']; protected function setUp() { parent::setUp(); diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationCacheTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationCacheTest.php index 40fcc701261ed51d49a04314139bc4ecebc148db..0def24a490b412773951b55c3bf88a2e78edbeb8 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationCacheTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationCacheTest.php @@ -20,7 +20,7 @@ class ConfigTranslationCacheTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config_translation', 'config_translation_test', diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php index 5a33fa9db6f60b0b834fe4bede12bd8990927afb..7cbeb57746a73a87b7d6961503bb5732416f7cd0 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationDateFormatUiTest.php @@ -12,7 +12,7 @@ */ class ConfigTranslationDateFormatUiTest extends BrowserTestBase { - protected static $modules = [ + public static $modules = [ 'language', 'config_translation', 'system', diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationFormTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationFormTest.php index aad24041ffd4cdf762959308685e7d999373832c..4698b05a8ec313aa8dc02f8e9ab5d8a2103a9976 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationFormTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationFormTest.php @@ -17,7 +17,7 @@ class ConfigTranslationFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_translation', 'config_translation_test', 'editor']; + public static $modules = ['config_translation', 'config_translation_test', 'editor']; /** * The plugin ID of the mapper to test. diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationListUiTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationListUiTest.php index 89586629fea1784af98500cf590734ec005b7f15..1d0116dc99973741160c60a13f45f9d28764d9a4 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationListUiTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationListUiTest.php @@ -25,7 +25,7 @@ class ConfigTranslationListUiTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config_translation', 'contact', diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationOverviewTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationOverviewTest.php index 19e41f481e29e860ab134fc9d3bdf9805fcabb68..9ccbb135d2f2804764d745bb3f768af4425fb5a5 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationOverviewTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationOverviewTest.php @@ -18,7 +18,7 @@ class ConfigTranslationOverviewTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config_test', 'config_translation', diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTest.php index 931f7acf192f85fb203b6670fd1dfdddd2cd79b4..64fde483e0086589b1f4e52a6dade74af6641998 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiTest.php @@ -29,7 +29,7 @@ class ConfigTranslationUiTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config_translation', 'config_translation_test', diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php index 609674283c90f084dfbe8fd6e62f672f0a2011fe..dcfb7916fe850d1724e37e531d47b477097b679c 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationUiThemeTest.php @@ -17,7 +17,7 @@ class ConfigTranslationUiThemeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_translation', 'config_translation_test']; + public static $modules = ['config_translation', 'config_translation_test']; /** * Languages to enable. diff --git a/core/modules/config_translation/tests/src/Functional/ConfigTranslationViewListUiTest.php b/core/modules/config_translation/tests/src/Functional/ConfigTranslationViewListUiTest.php index f035d46dbf2e46aa168fe29d834993f21aaab0a3..edb41f9ad44190537af4920317c92fdd14a7eba3 100644 --- a/core/modules/config_translation/tests/src/Functional/ConfigTranslationViewListUiTest.php +++ b/core/modules/config_translation/tests/src/Functional/ConfigTranslationViewListUiTest.php @@ -23,7 +23,7 @@ class ConfigTranslationViewListUiTest extends UITestBase { * * @var array */ - protected static $modules = ['config_translation', 'views_ui']; + public static $modules = ['config_translation', 'views_ui']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/config_translation/tests/src/FunctionalJavascript/ConfigTranslationUiTest.php b/core/modules/config_translation/tests/src/FunctionalJavascript/ConfigTranslationUiTest.php index 072a258b60c6a612f72b347cef93f002ff441647..585d2d1d38d046cece76ad16237a53445f0a352f 100644 --- a/core/modules/config_translation/tests/src/FunctionalJavascript/ConfigTranslationUiTest.php +++ b/core/modules/config_translation/tests/src/FunctionalJavascript/ConfigTranslationUiTest.php @@ -14,7 +14,7 @@ class ConfigTranslationUiTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'config_translation', 'contextual', 'node', diff --git a/core/modules/config_translation/tests/src/Kernel/ConfigMapperTest.php b/core/modules/config_translation/tests/src/Kernel/ConfigMapperTest.php index aec2a2650d7f1bc2dfd4bced498474bc6385e74f..773246cba97454f4fd0670965d3782ba057b1ca1 100644 --- a/core/modules/config_translation/tests/src/Kernel/ConfigMapperTest.php +++ b/core/modules/config_translation/tests/src/Kernel/ConfigMapperTest.php @@ -16,7 +16,7 @@ class ConfigMapperTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'config_translation', 'config_translation_test', 'language', diff --git a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemMaintenanceTranslationTest.php b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemMaintenanceTranslationTest.php index 9a9fbc25ca34d21d5495240439465f310d3fdfee..26d68eed99f55d2a531ab16d0cc0f3aa8c2fbb24 100644 --- a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemMaintenanceTranslationTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemMaintenanceTranslationTest.php @@ -12,7 +12,7 @@ */ class MigrateSystemMaintenanceTranslationTest extends MigrateDrupal6TestBase { - protected static $modules = [ + public static $modules = [ 'language', 'config_translation', // Required for translation migrations. diff --git a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php index a75c4ee91f60e55a725174131b612ea223c91d57..e4209432645220a2a91b1bbcf91e0c53060472ca 100644 --- a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateSystemSiteTranslationTest.php @@ -12,7 +12,7 @@ */ class MigrateSystemSiteTranslationTest extends MigrateDrupal6TestBase { - protected static $modules = [ + public static $modules = [ 'language', 'config_translation', // Required for translation migrations. diff --git a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTranslationTest.php b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTranslationTest.php index 6f6d1672bdba00d8f5ce13796cfc90730b3cc2a1..5ff8402deb51fdf2f977f8e4ea73d6059275baba 100644 --- a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTranslationTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTranslationTest.php @@ -15,7 +15,7 @@ class MigrateUserConfigsTranslationTest extends MigrateDrupal6TestBase { use SchemaCheckTestTrait; - protected static $modules = [ + public static $modules = [ 'language', 'locale', 'config_translation', diff --git a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserProfileFieldInstanceTranslationTest.php b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserProfileFieldInstanceTranslationTest.php index af68ed678c9891db14ec255dc37df52771dac69a..033f22b9e8e4bc44c3e22bf8e14f11f7e2ca5ba9 100644 --- a/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserProfileFieldInstanceTranslationTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Migrate/d6/MigrateUserProfileFieldInstanceTranslationTest.php @@ -15,7 +15,7 @@ class MigrateUserProfileFieldInstanceTranslationTest extends MigrateDrupal6TestB /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'config_translation', 'locale', 'language', diff --git a/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/I18nProfileFieldTest.php b/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/I18nProfileFieldTest.php index e3ec401ef4be6760363b30a09b900169d76c16bd..c13a1b73f235ccba9287388f9ac4fe282aba6898 100644 --- a/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/I18nProfileFieldTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/I18nProfileFieldTest.php @@ -16,7 +16,7 @@ class I18nProfileFieldTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_translation', 'migrate_drupal', 'user']; + public static $modules = ['config_translation', 'migrate_drupal', 'user']; /** * {@inheritdoc} diff --git a/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldTranslationTest.php b/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldTranslationTest.php index 97d906ef204dad4f7d0aa8d5e985b4d66462cabd..3eb5880ed7c8ecd3426c20752a8a9ad64af34c24 100644 --- a/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldTranslationTest.php +++ b/core/modules/config_translation/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldTranslationTest.php @@ -15,7 +15,7 @@ class ProfileFieldTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_translation', 'migrate_drupal', 'user']; + public static $modules = ['config_translation', 'migrate_drupal', 'user']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/ContactLanguageTest.php b/core/modules/contact/tests/src/Functional/ContactLanguageTest.php index 79e1f791a39c28fa71534c439c018ae7147be6d8..0c34884503c166b32a295d680eab64cbacdf9549 100644 --- a/core/modules/contact/tests/src/Functional/ContactLanguageTest.php +++ b/core/modules/contact/tests/src/Functional/ContactLanguageTest.php @@ -20,7 +20,7 @@ class ContactLanguageTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'contact', 'language', 'contact_test', diff --git a/core/modules/contact/tests/src/Functional/ContactPersonalTest.php b/core/modules/contact/tests/src/Functional/ContactPersonalTest.php index 2c0b68f835ddcb6ec28637089d21f9d09bd1cfe5..2a406eb8de31d104d7d3527f6a63bc571cf26b30 100644 --- a/core/modules/contact/tests/src/Functional/ContactPersonalTest.php +++ b/core/modules/contact/tests/src/Functional/ContactPersonalTest.php @@ -25,7 +25,7 @@ class ContactPersonalTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['contact', 'dblog']; + public static $modules = ['contact', 'dblog']; /** * A user with some administrative permissions. diff --git a/core/modules/contact/tests/src/Functional/ContactSitewideTest.php b/core/modules/contact/tests/src/Functional/ContactSitewideTest.php index 375c7e1b91d172aef486b70ee1cd7bc15c5b484f..2c881b01806c6d1171b5e18644d08ae28b141156 100644 --- a/core/modules/contact/tests/src/Functional/ContactSitewideTest.php +++ b/core/modules/contact/tests/src/Functional/ContactSitewideTest.php @@ -27,7 +27,7 @@ class ContactSitewideTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['text', 'contact', 'field_ui', 'contact_test', 'block', 'error_service_test', 'dblog']; + public static $modules = ['text', 'contact', 'field_ui', 'contact_test', 'block', 'error_service_test', 'dblog']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/ContactStorageTest.php b/core/modules/contact/tests/src/Functional/ContactStorageTest.php index 7d8139ecdea192758ae50598bb6acaeb616a75b7..fbd938bb8a55d1e347bc3af6862174163a17aaa9 100644 --- a/core/modules/contact/tests/src/Functional/ContactStorageTest.php +++ b/core/modules/contact/tests/src/Functional/ContactStorageTest.php @@ -22,7 +22,7 @@ class ContactStorageTest extends ContactSitewideTest { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'text', 'contact', diff --git a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonAnonTest.php b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonAnonTest.php index 9535509f7211a3ae5e1ac66d54efaf141758c3e1..e863c978dd1f2f35b5b7a7acfc020d9c6ad10659 100644 --- a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonAnonTest.php +++ b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ContactFormHalJsonAnonTest extends ContactFormResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonBasicAuthTest.php index a67f05a7008cf9c97a205c7c7d9353b9192a8bbc..7280cfdc7e905f4270cd7711af3c403716ae5fd9 100644 --- a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ContactFormHalJsonBasicAuthTest extends ContactFormResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonCookieTest.php b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonCookieTest.php index f7e96d61412df9057da85c5525b689f38c9bcd0c..2592ae761445c0592a6369f948f0dfe7902b79c5 100644 --- a/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonCookieTest.php +++ b/core/modules/contact/tests/src/Functional/Hal/ContactFormHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ContactFormHalJsonCookieTest extends ContactFormResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonAnonTest.php b/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonAnonTest.php index 737dcbbd8c514256be276c323de1af1e6ffdad70..088a872798bd51e019f06f82ab97bfa391ed4f28 100644 --- a/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonAnonTest.php +++ b/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonAnonTest.php @@ -17,7 +17,7 @@ class MessageHalJsonAnonTest extends MessageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonBasicAuthTest.php index 80d569bafbbbef592652d1e9cc106306110a2f36..363dbd7c87a8b9448995bf69b30049bf206394dd 100644 --- a/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Hal/MessageHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MessageHalJsonBasicAuthTest extends MessageHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/ContactFormJsonBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Rest/ContactFormJsonBasicAuthTest.php index e573b6d46ec742290aed86e267cf951d3f57dc1f..8e92a91009b189b7307a5c952790e22449238e9b 100644 --- a/core/modules/contact/tests/src/Functional/Rest/ContactFormJsonBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Rest/ContactFormJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ContactFormJsonBasicAuthTest extends ContactFormResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/ContactFormResourceTestBase.php b/core/modules/contact/tests/src/Functional/Rest/ContactFormResourceTestBase.php index f68f34e54b40599f56182061ce48674362b2148d..98edc5ae91f1373339b717e587e33f4456fc04de 100644 --- a/core/modules/contact/tests/src/Functional/Rest/ContactFormResourceTestBase.php +++ b/core/modules/contact/tests/src/Functional/Rest/ContactFormResourceTestBase.php @@ -13,7 +13,7 @@ abstract class ContactFormResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/ContactFormXmlBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Rest/ContactFormXmlBasicAuthTest.php index cf520fc7b7c504e82826c8f3643cadf2882930d4..dfc4b6498a18f97365d2e63f00633a9ef71fae32 100644 --- a/core/modules/contact/tests/src/Functional/Rest/ContactFormXmlBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Rest/ContactFormXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ContactFormXmlBasicAuthTest extends ContactFormResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/MessageJsonBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Rest/MessageJsonBasicAuthTest.php index f0dbc31f807cec5afba8a1d1bc570923f852c826..f7f759ab9029d342eeebf5dc76954dccf8ec72a7 100644 --- a/core/modules/contact/tests/src/Functional/Rest/MessageJsonBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Rest/MessageJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MessageJsonBasicAuthTest extends MessageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php b/core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php index e8c7dbeb54c583408ac3c23db81b9211cb898ee6..f0ff8f85f9059ef55fbf6832d565de7f7815146f 100644 --- a/core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php +++ b/core/modules/contact/tests/src/Functional/Rest/MessageResourceTestBase.php @@ -13,7 +13,7 @@ abstract class MessageResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Rest/MessageXmlBasicAuthTest.php b/core/modules/contact/tests/src/Functional/Rest/MessageXmlBasicAuthTest.php index addcade4bee07d63c9fb522249d32253e4e8134a..152a94a86f2867bd53373b8eac41e83053e97915 100644 --- a/core/modules/contact/tests/src/Functional/Rest/MessageXmlBasicAuthTest.php +++ b/core/modules/contact/tests/src/Functional/Rest/MessageXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class MessageXmlBasicAuthTest extends MessageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Functional/Views/ContactFieldsTest.php b/core/modules/contact/tests/src/Functional/Views/ContactFieldsTest.php index dca088561c78128eec51f35cba6c300af93a87fa..fd9b1ce8db81012378ed0904c5aa1a3af5eeab3d 100644 --- a/core/modules/contact/tests/src/Functional/Views/ContactFieldsTest.php +++ b/core/modules/contact/tests/src/Functional/Views/ContactFieldsTest.php @@ -19,7 +19,7 @@ class ContactFieldsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['field', 'text', 'contact']; + public static $modules = ['field', 'text', 'contact']; /** * Contains the field storage definition for contact used for this test. diff --git a/core/modules/contact/tests/src/Functional/Views/ContactLinkTest.php b/core/modules/contact/tests/src/Functional/Views/ContactLinkTest.php index 7057d92ff7135bd23d526e17013f40d537f9f5aa..c3b68f067a6baa9c02d091c93a5580a0a32abf58 100644 --- a/core/modules/contact/tests/src/Functional/Views/ContactLinkTest.php +++ b/core/modules/contact/tests/src/Functional/Views/ContactLinkTest.php @@ -27,7 +27,7 @@ class ContactLinkTest extends ViewTestBase { * * @var array */ - protected static $modules = ['contact_test_views']; + public static $modules = ['contact_test_views']; /** * Views used by this test. diff --git a/core/modules/contact/tests/src/Kernel/MessageEntityTest.php b/core/modules/contact/tests/src/Kernel/MessageEntityTest.php index de556c0dc0e51020e9de5123e5d4cfc9a5cff0d2..e7343b9166c64252afa186ccf870043515e70def 100644 --- a/core/modules/contact/tests/src/Kernel/MessageEntityTest.php +++ b/core/modules/contact/tests/src/Kernel/MessageEntityTest.php @@ -17,7 +17,7 @@ class MessageEntityTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'contact', 'field', diff --git a/core/modules/contact/tests/src/Kernel/Migrate/MigrateContactCategoryTest.php b/core/modules/contact/tests/src/Kernel/Migrate/MigrateContactCategoryTest.php index 6eabda280f5dbb9e68591693b6d7050b171d25d5..ffadad409c998ece74e3c9d9f4ef177765c4f5d6 100644 --- a/core/modules/contact/tests/src/Kernel/Migrate/MigrateContactCategoryTest.php +++ b/core/modules/contact/tests/src/Kernel/Migrate/MigrateContactCategoryTest.php @@ -18,7 +18,7 @@ class MigrateContactCategoryTest extends MigrateDrupal6TestBase { * * @var array */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php b/core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php index afadb04fc579675aed7e626120a18bb466be1544..073a67028372cc4305245c9dedee448bd62fa0d0 100644 --- a/core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php +++ b/core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php @@ -17,7 +17,7 @@ class MigrateContactSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Kernel/Migrate/d7/MigrateContactSettingsTest.php b/core/modules/contact/tests/src/Kernel/Migrate/d7/MigrateContactSettingsTest.php index b94cdf04469c5a21839458402f6c624b3f21c53b..22385f0e56dd286e0437b50c524004b51e4bbc16 100644 --- a/core/modules/contact/tests/src/Kernel/Migrate/d7/MigrateContactSettingsTest.php +++ b/core/modules/contact/tests/src/Kernel/Migrate/d7/MigrateContactSettingsTest.php @@ -14,7 +14,7 @@ class MigrateContactSettingsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/ContactCategoryTest.php b/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/ContactCategoryTest.php index 1ea9b337f23987215e20bd34b68fa92b7ec49eb7..619e0cd10bb5f9be3f9e964a10ccb51c21340d46 100644 --- a/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/ContactCategoryTest.php +++ b/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/ContactCategoryTest.php @@ -15,7 +15,7 @@ class ContactCategoryTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact', 'migrate_drupal', 'user']; + public static $modules = ['contact', 'migrate_drupal', 'user']; /** * {@inheritdoc} diff --git a/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/d6/ContactSettingsTest.php b/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/d6/ContactSettingsTest.php index 1d294709849a7f31b7338b14984d15fc863db8a7..6d6afa36d3e4185e3c0da8c535f42a249f7320b3 100644 --- a/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/d6/ContactSettingsTest.php +++ b/core/modules/contact/tests/src/Kernel/Plugin/migrate/source/d6/ContactSettingsTest.php @@ -15,7 +15,7 @@ class ContactSettingsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact', 'migrate_drupal', 'user']; + public static $modules = ['contact', 'migrate_drupal', 'user']; /** * {@inheritdoc} diff --git a/core/modules/content_moderation/tests/src/Functional/ContentModerationWorkflowTypeTest.php b/core/modules/content_moderation/tests/src/Functional/ContentModerationWorkflowTypeTest.php index 7d08e4425ec5fb5f308646ff569d21598581232d..cbe5807a5fbed274d7892e26630f5fdfecb86cff 100644 --- a/core/modules/content_moderation/tests/src/Functional/ContentModerationWorkflowTypeTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ContentModerationWorkflowTypeTest.php @@ -16,7 +16,7 @@ class ContentModerationWorkflowTypeTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'node', 'entity_test', diff --git a/core/modules/content_moderation/tests/src/Functional/ModeratedContentViewTest.php b/core/modules/content_moderation/tests/src/Functional/ModeratedContentViewTest.php index a1018a522a6eb0da547c18c72f5b29f04d6999ce..986fe125db740335c205098573ddef2063c46a32 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModeratedContentViewTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModeratedContentViewTest.php @@ -24,7 +24,7 @@ class ModeratedContentViewTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['content_moderation', 'node', 'views']; + public static $modules = ['content_moderation', 'node', 'views']; /** * {@inheritdoc} diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationActionsTest.php b/core/modules/content_moderation/tests/src/Functional/ModerationActionsTest.php index d3ead2949e4c537a29a4deb2ec0f8568d0e28605..fbe0b3a38b485e5588b2695526a11b0d57254d2c 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationActionsTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationActionsTest.php @@ -22,7 +22,7 @@ class ModerationActionsTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'node', 'views', diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationFormTest.php b/core/modules/content_moderation/tests/src/Functional/ModerationFormTest.php index d17b3d025b9d880e361762d2a075a3b29abd10f1..9f3c401e632bbd74d23eac4939a67d9042f45924 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationFormTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationFormTest.php @@ -17,7 +17,7 @@ class ModerationFormTest extends ModerationStateTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'locale', diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationLocaleTest.php b/core/modules/content_moderation/tests/src/Functional/ModerationLocaleTest.php index 5b8350484551497cbae38c1f9d30ce094a62c5f2..28de50c535490c93bfdb4b65681f484a82c548b3 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationLocaleTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationLocaleTest.php @@ -16,7 +16,7 @@ class ModerationLocaleTest extends ModerationStateTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'locale', diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationRevisionRevertTest.php b/core/modules/content_moderation/tests/src/Functional/ModerationRevisionRevertTest.php index 8c73f71283bca7abaa12f62f24c38bcb34c9dc09..b1ad72045a0c057c1b6144eb4c032448262350f3 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationRevisionRevertTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationRevisionRevertTest.php @@ -21,7 +21,7 @@ class ModerationRevisionRevertTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'node', ]; diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationStateAccessTest.php b/core/modules/content_moderation/tests/src/Functional/ModerationStateAccessTest.php index 54fcc4610fc2942e74912540b5d54e8167af2c77..86269193e3f67dcfd99b289512ed72c8efd9fe1e 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationStateAccessTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationStateAccessTest.php @@ -19,7 +19,7 @@ class ModerationStateAccessTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation_test_views', 'content_moderation', ]; diff --git a/core/modules/content_moderation/tests/src/Functional/ModerationStateTestBase.php b/core/modules/content_moderation/tests/src/Functional/ModerationStateTestBase.php index 137ac8531786ef3bc64ec749319f8ccd5c96002e..9d12c174496d5198f9b075295dbb86ef9977ad5a 100644 --- a/core/modules/content_moderation/tests/src/Functional/ModerationStateTestBase.php +++ b/core/modules/content_moderation/tests/src/Functional/ModerationStateTestBase.php @@ -61,7 +61,7 @@ abstract class ModerationStateTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'block', 'block_content', diff --git a/core/modules/content_moderation/tests/src/Functional/NodeAccessTest.php b/core/modules/content_moderation/tests/src/Functional/NodeAccessTest.php index 4c31760e4fd27a6376a4439b390e56102eaca936..76e9d97608c48c44f52c945bc8aff40448f6ab03 100644 --- a/core/modules/content_moderation/tests/src/Functional/NodeAccessTest.php +++ b/core/modules/content_moderation/tests/src/Functional/NodeAccessTest.php @@ -16,7 +16,7 @@ class NodeAccessTest extends ModerationStateTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'block', 'block_content', diff --git a/core/modules/content_moderation/tests/src/Functional/ViewsModerationStateFilterTest.php b/core/modules/content_moderation/tests/src/Functional/ViewsModerationStateFilterTest.php index d0165c3cd966488ae1c77993733b3f676dcbe142..12f391aea6ded8e375d0b53e5287e8ce5edc3c6d 100644 --- a/core/modules/content_moderation/tests/src/Functional/ViewsModerationStateFilterTest.php +++ b/core/modules/content_moderation/tests/src/Functional/ViewsModerationStateFilterTest.php @@ -23,7 +23,7 @@ class ViewsModerationStateFilterTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation_test_views', 'node', 'content_moderation', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationPermissionsTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationPermissionsTest.php index 506d870037098b3134c0937e7d010ea49dd1c904..b2abed2b01d0a87aec98c3fa5d3478b42f6ebb03 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationPermissionsTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationPermissionsTest.php @@ -18,7 +18,7 @@ class ContentModerationPermissionsTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'workflows', 'content_moderation', 'workflow_type_test', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateAccessControlHandlerTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateAccessControlHandlerTest.php index f308f1f9b35cb869d7c9f66c234a92b493139213..4d10672adaa8c6ac3ca38ca0fde3e95439826e3e 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateAccessControlHandlerTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateAccessControlHandlerTest.php @@ -16,7 +16,7 @@ class ContentModerationStateAccessControlHandlerTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'workflows', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateResourceTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateResourceTest.php index c7538c12664273aba7e4823b42ce7dcdb83db467..2ea1d8f901ff39c908b52e5d5b56cd09d87adf64 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateResourceTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateResourceTest.php @@ -15,7 +15,7 @@ class ContentModerationStateResourceTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['serialization', 'rest', 'content_moderation']; + public static $modules = ['serialization', 'rest', 'content_moderation']; /** * @see \Drupal\content_moderation\Entity\ContentModerationState diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateStorageSchemaTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateStorageSchemaTest.php index 63578c075414dbcf2635849b9d3a48f71509e2fe..c784b38b2c6dad22c45b128ac15cffae5df8af81 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateStorageSchemaTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateStorageSchemaTest.php @@ -21,7 +21,7 @@ class ContentModerationStateStorageSchemaTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php index c08b276bdd3b643459f61674c68f53e329c38bdd..8574ad6a171b4c60ce082132835b0b084090e862 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationStateTest.php @@ -27,7 +27,7 @@ class ContentModerationStateTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'node', 'block', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowConfigTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowConfigTest.php index 1754f73088014aa02ae085bd0e0a032bae818640..a90c3fba963505cc3b263f2b1e5f42b6f64e8e3c 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowConfigTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowConfigTest.php @@ -20,7 +20,7 @@ class ContentModerationWorkflowConfigTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php b/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php index 0e03c7f86a238ee5461382f2c524b58e7e7b5bd7..7c0e2fca953333f833babdaeb4084c3f9b1dd11f 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ContentModerationWorkflowTypeApiTest.php @@ -26,7 +26,7 @@ class ContentModerationWorkflowTypeApiTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'workflows', 'content_moderation', ]; diff --git a/core/modules/content_moderation/tests/src/Kernel/DefaultRevisionStateTest.php b/core/modules/content_moderation/tests/src/Kernel/DefaultRevisionStateTest.php index 46c4d7d6983e2a48901c4fdcf7f3efc496543daa..d24f7b5c802dd1933850735ae64a5f4ffd1ad9f1 100644 --- a/core/modules/content_moderation/tests/src/Kernel/DefaultRevisionStateTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/DefaultRevisionStateTest.php @@ -20,7 +20,7 @@ class DefaultRevisionStateTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'node', 'block_content', diff --git a/core/modules/content_moderation/tests/src/Kernel/EntityOperationsTest.php b/core/modules/content_moderation/tests/src/Kernel/EntityOperationsTest.php index e4042d7c2b3fa5a734fed007095dcf416b0da7eb..0a93924ab42fdc807ee53379e1ca7d5d87531bf5 100644 --- a/core/modules/content_moderation/tests/src/Kernel/EntityOperationsTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/EntityOperationsTest.php @@ -19,7 +19,7 @@ class EntityOperationsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'node', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php b/core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php index 2f8709f72a61bacc6dfbd57f1fdeee9ebd8f4b1f..69eee60d1a30065911dea88935d49ae59ef1e89f 100644 --- a/core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/EntityRevisionConverterTest.php @@ -16,7 +16,7 @@ class EntityRevisionConverterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'user', 'system', 'content_moderation', diff --git a/core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php b/core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php index 46a04f582e0ba26232e8c3b0d4efaa5b9d0a1b90..dc1e7f6917f92b69fc350c7196258f9b59af355b 100644 --- a/core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/EntityStateChangeValidationTest.php @@ -19,7 +19,7 @@ class EntityStateChangeValidationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/EntityTypeInfoTest.php b/core/modules/content_moderation/tests/src/Kernel/EntityTypeInfoTest.php index aacd26ceb06ceadfb650e31ee8a141d8bd34fca2..09990fe796a8687bfebc530573f47ade429945ca 100644 --- a/core/modules/content_moderation/tests/src/Kernel/EntityTypeInfoTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/EntityTypeInfoTest.php @@ -18,7 +18,7 @@ class EntityTypeInfoTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'workflows', 'entity_test', diff --git a/core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php b/core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php index 55b95768e2529a7fa62188b8e101702e840ac544..1190aa0436bc24025678cb17a55ec4b36ba36996 100644 --- a/core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/InitialStateTest.php @@ -20,7 +20,7 @@ class InitialStateTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'node', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php b/core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php index 15ffdbace9d26ceeb737d89856550f8570bcc6c9..bff2a972a5165683266c8eeb59c00813f20cf208 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ModerationInformationTest.php @@ -19,7 +19,7 @@ class ModerationInformationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'entity_test', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php b/core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php index 7a632d38c0e36ea6fd2fae189f4b22db631a63db..af0bb4fd7d6de24f053d62005141ab6b633dacc2 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ModerationStateFieldItemListTest.php @@ -19,7 +19,7 @@ class ModerationStateFieldItemListTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'content_moderation', 'user', diff --git a/core/modules/content_moderation/tests/src/Kernel/ModerationStateWidgetTest.php b/core/modules/content_moderation/tests/src/Kernel/ModerationStateWidgetTest.php index b73001065c7128868bdead25cc3293f285ba24ea..f0949643887d09b1fee4ca9397483f000ab27ac3 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ModerationStateWidgetTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ModerationStateWidgetTest.php @@ -23,7 +23,7 @@ class ModerationStateWidgetTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'user', 'workflows', diff --git a/core/modules/content_moderation/tests/src/Kernel/NodeAccessTest.php b/core/modules/content_moderation/tests/src/Kernel/NodeAccessTest.php index 680e66ec9227804ba59b45bbef9780e8c86b751a..3a2e0a9ed3f6eb84ab038a62ba12989722b248a5 100644 --- a/core/modules/content_moderation/tests/src/Kernel/NodeAccessTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/NodeAccessTest.php @@ -29,7 +29,7 @@ class NodeAccessTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation', 'filter', 'node', diff --git a/core/modules/content_moderation/tests/src/Kernel/StateFormatterTest.php b/core/modules/content_moderation/tests/src/Kernel/StateFormatterTest.php index e36f57b04f7bf05413bf046222dd558b46c8f8c8..6d2b8b6b5774366faa3ff93ee6bb58aa6304f375 100644 --- a/core/modules/content_moderation/tests/src/Kernel/StateFormatterTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/StateFormatterTest.php @@ -21,7 +21,7 @@ class StateFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'workflows', 'content_moderation', 'entity_test', diff --git a/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php b/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php index 2408dccdfa0a7cb5772c0d8f2b6f0ed181ad6c3f..0f89125bb6a0236a1dd4feedf7703ed3c89db992 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ViewsDataIntegrationTest.php @@ -20,7 +20,7 @@ class ViewsDataIntegrationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation_test_views', 'node', 'content_moderation', diff --git a/core/modules/content_moderation/tests/src/Kernel/ViewsModerationStateFilterTest.php b/core/modules/content_moderation/tests/src/Kernel/ViewsModerationStateFilterTest.php index 22ed6fb4a203329a971ad9fca73ca6e31ea08bd5..32323cc13e0dd60ca2585ab3b2daa51af40a0f66 100644 --- a/core/modules/content_moderation/tests/src/Kernel/ViewsModerationStateFilterTest.php +++ b/core/modules/content_moderation/tests/src/Kernel/ViewsModerationStateFilterTest.php @@ -25,7 +25,7 @@ class ViewsModerationStateFilterTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_moderation_test_views', 'node', 'content_moderation', diff --git a/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php b/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php index 8f4dead22897e524df9f52762b18b433c436fb25..a84bb73b8ef183785f5ec2dc3436ce97187c5cb4 100644 --- a/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php +++ b/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php @@ -21,7 +21,7 @@ abstract class ContentTranslationTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['text']; + public static $modules = ['text']; /** * The entity type being tested. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php b/core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php index 93f2eb1acab2aeffac29101b0b59258733daac60..0b1de0b204f4ff108b12d0b80e11130c58f21a31 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTestTranslationUITest.php @@ -19,7 +19,7 @@ class ContentTestTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'entity_test']; + public static $modules = ['language', 'content_translation', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationContextualLinksTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationContextualLinksTest.php index 83c856264cbec2e1587e199f7003d2b0c96e47d5..b85c3aad5d1efbd585bdab2a0d7df430baacf52d 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationContextualLinksTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationContextualLinksTest.php @@ -47,7 +47,7 @@ class ContentTranslationContextualLinksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['content_translation', 'contextual', 'node']; + public static $modules = ['content_translation', 'contextual', 'node']; /** * The profile to install as a basis for testing. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationDisableSettingTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationDisableSettingTest.php index d78b76f042cd7f9862ba83c1c4ef96507975b261..6dffed7444b691a60b078314e81b4637fc8b05bc 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationDisableSettingTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationDisableSettingTest.php @@ -14,7 +14,7 @@ class ContentTranslationDisableSettingTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'menu_link_content', 'language', diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationEnableTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationEnableTest.php index 797bcfbf97f3558ea119b154f397a78063a17df3..a3cc4e99466c59333193e355f87f32ff8ad37fd8 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationEnableTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationEnableTest.php @@ -14,7 +14,7 @@ class ContentTranslationEnableTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'menu_link_content', 'node']; + public static $modules = ['entity_test', 'menu_link_content', 'node']; /** * Tests that entity schemas are up-to-date after enabling translation. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php index 422ccb729967bc26bc0753584e5f715515ac4532..163b5e8ff31e15e120abce81c95c9946bbc42b1f 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationEntityBundleUITest.php @@ -11,7 +11,7 @@ */ class ContentTranslationEntityBundleUITest extends BrowserTestBase { - protected static $modules = ['language', 'content_translation', 'node', 'comment', 'field_ui']; + public static $modules = ['language', 'content_translation', 'node', 'comment', 'field_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php index 8fce666e8e4103c83776634134c142147633bf79..1bf836aaca8769fac179c05ee79da586901f0bc3 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationLanguageChangeTest.php @@ -22,7 +22,7 @@ class ContentTranslationLanguageChangeTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'content_translation_test', 'node', 'block', 'field_ui', 'image']; + public static $modules = ['language', 'content_translation', 'content_translation_test', 'node', 'block', 'field_ui', 'image']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php index 0c8170d470dedd1741a0d29cf86b87623494e206..8ea652e954d30309be25d888c1a3f2569f716377 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php @@ -17,7 +17,7 @@ class ContentTranslationLinkTagTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'content_translation', 'content_translation_test', 'language']; + public static $modules = ['entity_test', 'content_translation', 'content_translation_test', 'language']; /** * The added languages. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationMetadataFieldsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationMetadataFieldsTest.php index a3350f3ed73680cd5f4eed48131b2f5a1323ca3a..bbad25ca9c24887cde0e742429c4afd1798a4c11 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationMetadataFieldsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationMetadataFieldsTest.php @@ -28,7 +28,7 @@ class ContentTranslationMetadataFieldsTest extends ContentTranslationTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'node']; + public static $modules = ['language', 'content_translation', 'node']; /** * The profile to install as a basis for testing. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationOperationsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationOperationsTest.php index 37ac1fb42877f93e3a06414b409146a3381a556a..6eb3deb1c8e2f79641507e116c3450be681d36cf 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationOperationsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationOperationsTest.php @@ -32,7 +32,7 @@ class ContentTranslationOperationsTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'node', 'views', 'block']; + public static $modules = ['language', 'content_translation', 'node', 'views', 'block']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationPendingRevisionTestBase.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationPendingRevisionTestBase.php index e989753666bfa44cb4dd1651b3e68541a14f4d79..0984850f37c0eeaaef166083117d8e1ce4f0e21c 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationPendingRevisionTestBase.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationPendingRevisionTestBase.php @@ -17,7 +17,7 @@ abstract class ContentTranslationPendingRevisionTestBase extends ContentTranslat /** * {@inheritdoc} */ - protected static $modules = ['language', 'content_translation', 'content_moderation', 'node']; + public static $modules = ['language', 'content_translation', 'content_moderation', 'node']; /** * The entity storage. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationSettingsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationSettingsTest.php index e77d25d1b3deb38d7d80aa25e3e4e7fef3222313..52a92300078a57924e46618398ae3307ee629361 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationSettingsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationSettingsTest.php @@ -24,7 +24,7 @@ class ContentTranslationSettingsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'node', 'comment', 'field_ui', 'entity_test']; + public static $modules = ['language', 'content_translation', 'node', 'comment', 'field_ui', 'entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php index 19e02eda65832baf52f4cce2d824809863e81c6f..c6a72a325eac584bf76e72a8f9ab27ff4447908c 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationStandardFieldsTest.php @@ -16,7 +16,7 @@ class ContentTranslationStandardFieldsTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'node', diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php index 4910ef4a77b68fca78f31e9558adff8e566edb06..5f7c9fd9b8ecebf885a4a5e8b4f82379103c83db 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationSyncImageTest.php @@ -38,7 +38,7 @@ class ContentTranslationSyncImageTest extends ContentTranslationTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'entity_test', 'image', 'field_ui']; + public static $modules = ['language', 'content_translation', 'entity_test', 'image', 'field_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php index 06911bb5c0cb664af03df5868270016bd72de7d6..82715c28c293c003856607bdece19764dc9d478e 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php @@ -19,7 +19,7 @@ abstract class ContentTranslationTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['text']; + public static $modules = ['text']; /** * The entity type being tested. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationUISkipTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationUISkipTest.php index 1d4645943c8e23dad7229f8e5a2c921d47391852..97d0b00f5da6a01a6b5dccb5ed7d21282432a5fd 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationUISkipTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationUISkipTest.php @@ -16,7 +16,7 @@ class ContentTranslationUISkipTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['content_translation_test', 'user', 'node']; + public static $modules = ['content_translation_test', 'user', 'node']; /** * Tests the content_translation_ui_skip key functionality. diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php index 6cc33974a835028dca572aac760c0eafe9331749..300c17c7ca3d9d5c95cf405c90c8d7ce12b427ab 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationUntranslatableFieldsTest.php @@ -17,7 +17,7 @@ class ContentTranslationUntranslatableFieldsTest extends ContentTranslationPendi /** * {@inheritdoc} */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php b/core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php index d2510c18bb086a2d878edd1ebeedf0e42047b12e..c778404f64190bdb67c10aad259500e7405fb443 100644 --- a/core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php +++ b/core/modules/content_translation/tests/src/Functional/ContentTranslationWorkflowsTest.php @@ -29,7 +29,7 @@ class ContentTranslationWorkflowsTest extends ContentTranslationTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'entity_test']; + public static $modules = ['language', 'content_translation', 'entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php b/core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php index d713c60687c81f95638bbeeddfd5d15b394c2cf2..4b4d53a484d8780c225fc5c0ca64a7b5f0049d46 100644 --- a/core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php +++ b/core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php @@ -23,7 +23,7 @@ class ContentTranslationViewsUITest extends UITestBase { * * @var array */ - protected static $modules = ['content_translation']; + public static $modules = ['content_translation']; /** * Tests the views UI. diff --git a/core/modules/content_translation/tests/src/Functional/Views/TranslationLinkTest.php b/core/modules/content_translation/tests/src/Functional/Views/TranslationLinkTest.php index d75201ea5f5093b4825070634895d89d5436e788..d2e9e0d0cbeda0f4a8df093a6aedd1d08d1014c6 100644 --- a/core/modules/content_translation/tests/src/Functional/Views/TranslationLinkTest.php +++ b/core/modules/content_translation/tests/src/Functional/Views/TranslationLinkTest.php @@ -27,7 +27,7 @@ class TranslationLinkTest extends ContentTranslationTestBase { * * @var array */ - protected static $modules = ['content_translation_test_views']; + public static $modules = ['content_translation_test_views']; protected function setUp() { // @todo Use entity_type once it is has multilingual Views integration. diff --git a/core/modules/content_translation/tests/src/FunctionalJavascript/ContentTranslationContextualLinksTest.php b/core/modules/content_translation/tests/src/FunctionalJavascript/ContentTranslationContextualLinksTest.php index 3c6073244ae0847a4346cdd1db846ef7117bc15a..156b10d97ff91c5a37b8f66703aa576ffcae8bcf 100644 --- a/core/modules/content_translation/tests/src/FunctionalJavascript/ContentTranslationContextualLinksTest.php +++ b/core/modules/content_translation/tests/src/FunctionalJavascript/ContentTranslationContextualLinksTest.php @@ -22,7 +22,7 @@ class ContentTranslationContextualLinksTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['content_translation', 'contextual', 'node']; + public static $modules = ['content_translation', 'contextual', 'node']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php index c14b2930556290d68d5d309d6dff9ec15eab11bf..0fe6b9f6e0b33985dbf7e24fd63ab00d9b922731 100644 --- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php +++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationConfigImportTest.php @@ -25,7 +25,7 @@ class ContentTranslationConfigImportTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'entity_test', 'language', 'content_translation']; + public static $modules = ['system', 'user', 'entity_test', 'language', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationEntityBundleInfoTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationEntityBundleInfoTest.php index 571a5c8de0c4b3902b61a596777fb06812c8ed1e..dcd596ecf39b72e83668880568f4718d19d44ca3 100644 --- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationEntityBundleInfoTest.php +++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationEntityBundleInfoTest.php @@ -16,7 +16,7 @@ class ContentTranslationEntityBundleInfoTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'language', 'content_translation_test', 'content_translation', 'entity_test']; + public static $modules = ['user', 'language', 'content_translation_test', 'content_translation', 'entity_test']; /** * The content translation manager. diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php index 6c67c4240069010ea95630f9d4c1c00f3595e9c0..8185182516c7bd4b7942f7f7bf529690d68a879e 100644 --- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php +++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationFieldSyncRevisionTest.php @@ -26,7 +26,7 @@ class ContentTranslationFieldSyncRevisionTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'image', 'language', 'content_translation', 'simpletest', 'content_translation_test']; + public static $modules = ['file', 'image', 'language', 'content_translation', 'simpletest', 'content_translation_test']; /** * The synchronized field name. diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationSettingsApiTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationSettingsApiTest.php index 40a7220a6711e8285b3386962b476354a2ee4748..3626045fbf3a61d0bd5145f26c1224fb3e618dd8 100644 --- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationSettingsApiTest.php +++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationSettingsApiTest.php @@ -16,7 +16,7 @@ class ContentTranslationSettingsApiTest extends KernelTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'user', 'entity_test']; + public static $modules = ['language', 'content_translation', 'user', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php b/core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php index d09b80abed0f5a9b0b8fd793bc4e9c66d3eb4421..5c4784aa62e601d3df9c171063b36144d1f8e9e1 100644 --- a/core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php +++ b/core/modules/content_translation/tests/src/Kernel/ContentTranslationSyncUnitTest.php @@ -54,7 +54,7 @@ class ContentTranslationSyncUnitTest extends KernelTestBase { */ protected $unchangedFieldValues; - protected static $modules = ['language', 'content_translation']; + public static $modules = ['language', 'content_translation']; protected function setUp() { parent::setUp(); diff --git a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php index 02833902f7791e02a3e5a24a45cec95adea7e7f1..3e32406d28db764bb783c90f2236ffe3ee039e88 100644 --- a/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTranslationTest.php @@ -16,7 +16,7 @@ class MigrateTaxonomyTermTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/content_translation/tests/src/Kernel/Migrate/d7/MigrateEntityTranslationSettingsTest.php b/core/modules/content_translation/tests/src/Kernel/Migrate/d7/MigrateEntityTranslationSettingsTest.php index 41e6fa40328735ef21867d8ecbe4652997dd3444..136e5331ecac633dece7830ef568b0253942d3bf 100644 --- a/core/modules/content_translation/tests/src/Kernel/Migrate/d7/MigrateEntityTranslationSettingsTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Migrate/d7/MigrateEntityTranslationSettingsTest.php @@ -15,7 +15,7 @@ class MigrateEntityTranslationSettingsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'content_translation', 'language', diff --git a/core/modules/content_translation/tests/src/Kernel/Plugin/migrate/source/d7/EntityTranslationSettingsTest.php b/core/modules/content_translation/tests/src/Kernel/Plugin/migrate/source/d7/EntityTranslationSettingsTest.php index 7a25bf599da28e245c7c794619fef7af9fcc4ac4..db0d33292769047ccac994773534ae01dab6964c 100644 --- a/core/modules/content_translation/tests/src/Kernel/Plugin/migrate/source/d7/EntityTranslationSettingsTest.php +++ b/core/modules/content_translation/tests/src/Kernel/Plugin/migrate/source/d7/EntityTranslationSettingsTest.php @@ -16,7 +16,7 @@ class EntityTranslationSettingsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'migrate_drupal', diff --git a/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php b/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php index 933dd0841cd6adba41a7a1aca7f9c1407622c152..340b60821fb0da11c9398f0460d33229106a8d91 100644 --- a/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php +++ b/core/modules/contextual/tests/src/Functional/ContextualDynamicContextTest.php @@ -42,7 +42,7 @@ class ContextualDynamicContextTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['contextual', 'node', 'views', 'views_ui', 'language', 'menu_test']; + public static $modules = ['contextual', 'node', 'views', 'views_ui', 'language', 'menu_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/contextual/tests/src/FunctionalJavascript/ContextualLinksTest.php b/core/modules/contextual/tests/src/FunctionalJavascript/ContextualLinksTest.php index 9b3a1940b1f5a79ec5c88ad6453d6d7600bc0d18..7435dada23f3810456a3bb1e8988f6f9457ac873 100644 --- a/core/modules/contextual/tests/src/FunctionalJavascript/ContextualLinksTest.php +++ b/core/modules/contextual/tests/src/FunctionalJavascript/ContextualLinksTest.php @@ -17,7 +17,7 @@ class ContextualLinksTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'contextual']; + public static $modules = ['block', 'contextual']; /** * {@inheritdoc} diff --git a/core/modules/contextual/tests/src/FunctionalJavascript/EditModeTest.php b/core/modules/contextual/tests/src/FunctionalJavascript/EditModeTest.php index 8c9c9b4be8d828bdd690a20c2f23df294cd13c7e..4a00a7efc491c931eb4a4702d42384dc76666a71 100644 --- a/core/modules/contextual/tests/src/FunctionalJavascript/EditModeTest.php +++ b/core/modules/contextual/tests/src/FunctionalJavascript/EditModeTest.php @@ -19,7 +19,7 @@ class EditModeTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'block', 'user', diff --git a/core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php b/core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php index 84f5ba8c266c04eb06b8cec05b4162d9327bd45e..0e5f721375fc04495e6cc8985c7ee81997245a4b 100644 --- a/core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php +++ b/core/modules/contextual/tests/src/Kernel/ContextualUnitTest.php @@ -17,7 +17,7 @@ class ContextualUnitTest extends KernelTestBase { * * @var array */ - protected static $modules = ['contextual']; + public static $modules = ['contextual']; /** * Provides testcases for testContextualLinksToId() and diff --git a/core/modules/datetime/src/Tests/DateTestBase.php b/core/modules/datetime/src/Tests/DateTestBase.php index 7b03f71f3a4352ef4e14d98964a364d7a669f9fa..6a8900390081e1fc3384b4d60c80e544331ed94a 100644 --- a/core/modules/datetime/src/Tests/DateTestBase.php +++ b/core/modules/datetime/src/Tests/DateTestBase.php @@ -25,7 +25,7 @@ abstract class DateTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'entity_test', 'datetime', 'field_ui']; + public static $modules = ['node', 'entity_test', 'datetime', 'field_ui']; /** * An array of display options to pass to entity_get_display() diff --git a/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php b/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php index e521ae6b22e2beb9fd225b9ab8b68b5720c698fb..a89687ad151ce955d7802911f30e9da43f80887c 100644 --- a/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php +++ b/core/modules/datetime/src/Tests/Views/DateTimeHandlerTestBase.php @@ -22,7 +22,7 @@ abstract class DateTimeHandlerTestBase extends HandlerTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime_test', 'node', 'datetime']; + public static $modules = ['datetime_test', 'node', 'datetime']; /** * Name of the field. diff --git a/core/modules/datetime/tests/src/Functional/DateTestBase.php b/core/modules/datetime/tests/src/Functional/DateTestBase.php index 67f212caab639055105bde07d8d3266942fc038c..46e23ce150327dbc81687fcd2e76d4b12d49267f 100644 --- a/core/modules/datetime/tests/src/Functional/DateTestBase.php +++ b/core/modules/datetime/tests/src/Functional/DateTestBase.php @@ -21,7 +21,7 @@ abstract class DateTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'entity_test', 'datetime', 'field_ui']; + public static $modules = ['node', 'entity_test', 'datetime', 'field_ui']; /** * An array of display options to pass to entity_get_display() diff --git a/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php b/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php index a4b30dcdf344304467a034051b57e721e714f5ba..0fb404d2b970987946107b11f85bb7fa4e7dc95b 100644 --- a/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php +++ b/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php @@ -37,7 +37,7 @@ class EntityTestDateonlyTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime', 'entity_test']; + public static $modules = ['datetime', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDatetimeTest.php b/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDatetimeTest.php index a33a040a28983002b9ac063ea19350b252e74730..cdd4d605d0d7f9631adc2ef2c5bbed8132132816 100644 --- a/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDatetimeTest.php +++ b/core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDatetimeTest.php @@ -37,7 +37,7 @@ class EntityTestDatetimeTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime', 'entity_test']; + public static $modules = ['datetime', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/datetime/tests/src/Kernel/DateTimeFormInjectionTest.php b/core/modules/datetime/tests/src/Kernel/DateTimeFormInjectionTest.php index 77c0d04c68b4ad4ad34eda2395828d8af5563f42..a65d43928e0f60666257f34cfcb24b10c8014926 100644 --- a/core/modules/datetime/tests/src/Kernel/DateTimeFormInjectionTest.php +++ b/core/modules/datetime/tests/src/Kernel/DateTimeFormInjectionTest.php @@ -30,7 +30,7 @@ class DateTimeFormInjectionTest extends KernelTestBase implements FormInterface * * @var array */ - protected static $modules = ['system', 'datetime']; + public static $modules = ['system', 'datetime']; /** * {@inheritdoc} diff --git a/core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php b/core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php index 90768ffc1ff22bd8640e6909f396f65a0389c724..75f892a25442dd609f1c2e4b76efa6a0c7c54ceb 100644 --- a/core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php +++ b/core/modules/datetime/tests/src/Kernel/DateTimeItemTest.php @@ -37,7 +37,7 @@ class DateTimeItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['datetime']; + public static $modules = ['datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php b/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php index fe228f240fbf4307057fffdd773716d56ac07b56..590355164178c9bfb2523450c455e0b585f887b4 100644 --- a/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php +++ b/core/modules/datetime/tests/src/Kernel/Views/DateTimeHandlerTestBase.php @@ -19,7 +19,7 @@ abstract class DateTimeHandlerTestBase extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime_test', 'node', 'datetime', 'field']; + public static $modules = ['datetime_test', 'node', 'datetime', 'field']; /** * Name of the field. diff --git a/core/modules/datetime_range/tests/src/Functional/DateRangeFieldTest.php b/core/modules/datetime_range/tests/src/Functional/DateRangeFieldTest.php index 17c0e81ddd4f82770eb79ba1f697ec12a90c441a..9cecd605f0bc015de332732fb7dc65a6155ff147 100644 --- a/core/modules/datetime_range/tests/src/Functional/DateRangeFieldTest.php +++ b/core/modules/datetime_range/tests/src/Functional/DateRangeFieldTest.php @@ -25,7 +25,7 @@ class DateRangeFieldTest extends DateTestBase { * * @var array */ - protected static $modules = ['datetime_range']; + public static $modules = ['datetime_range']; /** * The default display settings to use for the formatters. diff --git a/core/modules/datetime_range/tests/src/Kernel/DateRangeItemTest.php b/core/modules/datetime_range/tests/src/Kernel/DateRangeItemTest.php index 69a709a7cf4bc3cdcbe64f0eac8172f52962d2cd..658159a8aa3a59c208d59986fcb05f17bb7af56c 100644 --- a/core/modules/datetime_range/tests/src/Kernel/DateRangeItemTest.php +++ b/core/modules/datetime_range/tests/src/Kernel/DateRangeItemTest.php @@ -33,7 +33,7 @@ class DateRangeItemTest extends FieldKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'datetime', 'datetime_range', ]; diff --git a/core/modules/datetime_range/tests/src/Kernel/SeparatorTranslationTest.php b/core/modules/datetime_range/tests/src/Kernel/SeparatorTranslationTest.php index 09c1eeaf81fd74312837533ebd3edc5129098811..d92a313f39bac962952fd1fbff1b52cbddafcf36 100644 --- a/core/modules/datetime_range/tests/src/Kernel/SeparatorTranslationTest.php +++ b/core/modules/datetime_range/tests/src/Kernel/SeparatorTranslationTest.php @@ -35,7 +35,7 @@ class SeparatorTranslationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'datetime', 'datetime_range', 'entity_test', diff --git a/core/modules/datetime_range/tests/src/Kernel/Views/FilterDateTest.php b/core/modules/datetime_range/tests/src/Kernel/Views/FilterDateTest.php index 085cbb8bb987101d9afb2b3ad3cfcbb6eac73cd6..76e3dbf447b435742484cd81d974ae1596a1a2d6 100644 --- a/core/modules/datetime_range/tests/src/Kernel/Views/FilterDateTest.php +++ b/core/modules/datetime_range/tests/src/Kernel/Views/FilterDateTest.php @@ -18,7 +18,7 @@ class FilterDateTest extends DateTimeHandlerTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime_test', 'node', 'datetime_range', 'field']; + public static $modules = ['datetime_test', 'node', 'datetime_range', 'field']; /** * Type of the field. diff --git a/core/modules/dblog/tests/src/Functional/ConnectionFailureTest.php b/core/modules/dblog/tests/src/Functional/ConnectionFailureTest.php index 0b951b6a56b0683c4c24f10edbcc1820e03cf5f4..37c855ae2cc8769d2e8bd951d8be32255d76f01a 100644 --- a/core/modules/dblog/tests/src/Functional/ConnectionFailureTest.php +++ b/core/modules/dblog/tests/src/Functional/ConnectionFailureTest.php @@ -12,7 +12,7 @@ */ class ConnectionFailureTest extends BrowserTestBase { - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * Tests logging of connection failures. diff --git a/core/modules/dblog/tests/src/Functional/DbLogResourceTest.php b/core/modules/dblog/tests/src/Functional/DbLogResourceTest.php index 624a567e9584d80f8618ead3bc81fadaf1b9adcc..0d4630318efebc458ef02da7322e91dd87d110d5 100644 --- a/core/modules/dblog/tests/src/Functional/DbLogResourceTest.php +++ b/core/modules/dblog/tests/src/Functional/DbLogResourceTest.php @@ -39,7 +39,7 @@ class DbLogResourceTest extends ResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'dblog']; + public static $modules = ['hal', 'dblog']; /** * {@inheritdoc} diff --git a/core/modules/dblog/tests/src/Functional/DbLogTest.php b/core/modules/dblog/tests/src/Functional/DbLogTest.php index d08812fea4312b25dd71569c9398ee7f8de261ea..1f04052913a515155eb4204df55d0089a7e78b40 100644 --- a/core/modules/dblog/tests/src/Functional/DbLogTest.php +++ b/core/modules/dblog/tests/src/Functional/DbLogTest.php @@ -24,7 +24,7 @@ class DbLogTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['dblog', 'node', 'forum', 'help', 'block']; + public static $modules = ['dblog', 'node', 'forum', 'help', 'block']; /** * A user with some relevant administrative permissions. diff --git a/core/modules/dblog/tests/src/Functional/DbLogViewsTest.php b/core/modules/dblog/tests/src/Functional/DbLogViewsTest.php index f85e58c83fb5b1b1d603a747c2b67026abaeb6e5..6e525cdf6f9dfe748dc91c5c02694637384eef6d 100644 --- a/core/modules/dblog/tests/src/Functional/DbLogViewsTest.php +++ b/core/modules/dblog/tests/src/Functional/DbLogViewsTest.php @@ -19,7 +19,7 @@ class DbLogViewsTest extends DbLogTest { * * @var array */ - protected static $modules = ['dblog', 'node', 'forum', 'help', 'block', 'views']; + public static $modules = ['dblog', 'node', 'forum', 'help', 'block', 'views']; /** * {@inheritdoc} diff --git a/core/modules/dblog/tests/src/Kernel/DbLogControllerTest.php b/core/modules/dblog/tests/src/Kernel/DbLogControllerTest.php index 26267c4b014ac5aedf42efbaa39c13a5a415da1d..ce7490f32e98cef282250865350b13b0b555fc3b 100644 --- a/core/modules/dblog/tests/src/Kernel/DbLogControllerTest.php +++ b/core/modules/dblog/tests/src/Kernel/DbLogControllerTest.php @@ -15,7 +15,7 @@ class DbLogControllerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['dblog', 'user']; + public static $modules = ['dblog', 'user']; public function setUp() { parent::setUp(); diff --git a/core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php b/core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php index 31e1db253aeafa620edc81c49903d24a65120000..48ed39616e96441dcf2dbbb04b8cd1a8dfb00c97 100644 --- a/core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php +++ b/core/modules/dblog/tests/src/Kernel/DbLogFormInjectionTest.php @@ -30,7 +30,7 @@ class DbLogFormInjectionTest extends KernelTestBase implements FormInterface { * * @var array */ - protected static $modules = ['system', 'dblog', 'user']; + public static $modules = ['system', 'dblog', 'user']; /** * {@inheritdoc} diff --git a/core/modules/dblog/tests/src/Kernel/Migrate/d6/MigrateDblogConfigsTest.php b/core/modules/dblog/tests/src/Kernel/Migrate/d6/MigrateDblogConfigsTest.php index 1e0cfd3b5a01e80edbcad6ee1d9b3feda8c19244..73a6d83d2221d8a6bba257269c9a62760df1622a 100644 --- a/core/modules/dblog/tests/src/Kernel/Migrate/d6/MigrateDblogConfigsTest.php +++ b/core/modules/dblog/tests/src/Kernel/Migrate/d6/MigrateDblogConfigsTest.php @@ -17,7 +17,7 @@ class MigrateDblogConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * {@inheritdoc} diff --git a/core/modules/dblog/tests/src/Kernel/Migrate/d7/MigrateDblogConfigsTest.php b/core/modules/dblog/tests/src/Kernel/Migrate/d7/MigrateDblogConfigsTest.php index ba94f66027e63ff21afefd1c2131a740d5c51289..d9708309b2797b42583bd0078b46d400e9418606 100644 --- a/core/modules/dblog/tests/src/Kernel/Migrate/d7/MigrateDblogConfigsTest.php +++ b/core/modules/dblog/tests/src/Kernel/Migrate/d7/MigrateDblogConfigsTest.php @@ -14,7 +14,7 @@ class MigrateDblogConfigsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * {@inheritdoc} diff --git a/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php b/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php index 653f3291ed840db71c5c907ec9fa0286d71b8f72..daca0f64a5bcd3dd562dafc8e34ecdf4151c42fe 100644 --- a/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php +++ b/core/modules/dblog/tests/src/Kernel/Views/ViewsIntegrationTest.php @@ -25,7 +25,7 @@ class ViewsIntegrationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['dblog', 'dblog_test_views', 'user']; + public static $modules = ['dblog', 'dblog_test_views', 'user']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/EditorAdminTest.php b/core/modules/editor/tests/src/Functional/EditorAdminTest.php index 8fc0385e72d49f93e2bcf28735392d69c3774624..3c0ab450824dd096b81fcd68da8b8f9ea4b53b45 100644 --- a/core/modules/editor/tests/src/Functional/EditorAdminTest.php +++ b/core/modules/editor/tests/src/Functional/EditorAdminTest.php @@ -20,7 +20,7 @@ class EditorAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor']; + public static $modules = ['filter', 'editor']; /** * A user with the 'administer filters' permission. diff --git a/core/modules/editor/tests/src/Functional/EditorDialogAccessTest.php b/core/modules/editor/tests/src/Functional/EditorDialogAccessTest.php index 06c3b9c860fbfacae72a282def8b2e2ad1057be0..3a97b351b34d83043755d5a9dd1619f507465135 100644 --- a/core/modules/editor/tests/src/Functional/EditorDialogAccessTest.php +++ b/core/modules/editor/tests/src/Functional/EditorDialogAccessTest.php @@ -18,7 +18,7 @@ class EditorDialogAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['editor', 'filter', 'ckeditor']; + public static $modules = ['editor', 'filter', 'ckeditor']; /** * Test access to the editor image dialog. diff --git a/core/modules/editor/tests/src/Functional/EditorLoadingTest.php b/core/modules/editor/tests/src/Functional/EditorLoadingTest.php index 8beb9e36212201b5bc4d86a4998921a10626c9eb..d0242140a3f658d5ab21ed2e2ff77710a1ca610e 100644 --- a/core/modules/editor/tests/src/Functional/EditorLoadingTest.php +++ b/core/modules/editor/tests/src/Functional/EditorLoadingTest.php @@ -20,7 +20,7 @@ class EditorLoadingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'editor_test', 'node']; + public static $modules = ['filter', 'editor', 'editor_test', 'node']; /** * An untrusted user, with access to the 'plain_text' format. diff --git a/core/modules/editor/tests/src/Functional/EditorPrivateFileReferenceFilterTest.php b/core/modules/editor/tests/src/Functional/EditorPrivateFileReferenceFilterTest.php index 1a2939b7ff44b3c307553badd1e6e5d8c14ff974..4880c85fc8e13c6a222777c2430a34ae556e87f7 100644 --- a/core/modules/editor/tests/src/Functional/EditorPrivateFileReferenceFilterTest.php +++ b/core/modules/editor/tests/src/Functional/EditorPrivateFileReferenceFilterTest.php @@ -19,7 +19,7 @@ class EditorPrivateFileReferenceFilterTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ // Needed for the config: this is the only module in core that utilizes the // functionality in editor.module to be tested, and depends on that. 'ckeditor', diff --git a/core/modules/editor/tests/src/Functional/EditorSecurityTest.php b/core/modules/editor/tests/src/Functional/EditorSecurityTest.php index 6fefe590d52b05f7f8f913075d0456bf24d2b986..55095c98c60241bc49522e1ae69b3f57cc99f721 100644 --- a/core/modules/editor/tests/src/Functional/EditorSecurityTest.php +++ b/core/modules/editor/tests/src/Functional/EditorSecurityTest.php @@ -40,7 +40,7 @@ class EditorSecurityTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'editor', 'editor_test', 'node']; + public static $modules = ['filter', 'editor', 'editor_test', 'node']; /** * User with access to Restricted HTML text format without text editor. diff --git a/core/modules/editor/tests/src/Functional/EditorUploadImageScaleTest.php b/core/modules/editor/tests/src/Functional/EditorUploadImageScaleTest.php index fa58e4a7da7c6ab480a83f76983758b14abaf088..46f9a6e4589d6315275f4d374d3b6a6bd1201143 100644 --- a/core/modules/editor/tests/src/Functional/EditorUploadImageScaleTest.php +++ b/core/modules/editor/tests/src/Functional/EditorUploadImageScaleTest.php @@ -22,7 +22,7 @@ class EditorUploadImageScaleTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['editor', 'editor_test']; + public static $modules = ['editor', 'editor_test']; /** * A user with permission as administer for testing. diff --git a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonAnonTest.php b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonAnonTest.php index d08f466bc55700d0da6b444e0df0d0327c39d65c..97d917d6dcaadd54b22daa07c341a17e7665c21d 100644 --- a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonAnonTest.php +++ b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonAnonTest.php @@ -15,7 +15,7 @@ class EditorHalJsonAnonTest extends EditorResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonBasicAuthTest.php b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonBasicAuthTest.php index e9db80878e8d5d19b1cae50daf5e86f0ce8ca57b..05f496bb6fa1c381caf415ce17ca17e6948d7470 100644 --- a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonBasicAuthTest.php +++ b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class EditorHalJsonBasicAuthTest extends EditorResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonCookieTest.php b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonCookieTest.php index 7b2afd77581b483f9cf824d7303a3572da51b78f..4fe7ec988598ba915125246bf4ba682d7c16200f 100644 --- a/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonCookieTest.php +++ b/core/modules/editor/tests/src/Functional/Hal/EditorHalJsonCookieTest.php @@ -15,7 +15,7 @@ class EditorHalJsonCookieTest extends EditorResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/QuickEditIntegrationLoadingTest.php b/core/modules/editor/tests/src/Functional/QuickEditIntegrationLoadingTest.php index 89d0b1d91f40fba377893fe6b54317d4d44bc8d9..6f96971bb73fabdbb03b6e0036f5569f51e9f8d1 100644 --- a/core/modules/editor/tests/src/Functional/QuickEditIntegrationLoadingTest.php +++ b/core/modules/editor/tests/src/Functional/QuickEditIntegrationLoadingTest.php @@ -19,7 +19,7 @@ class QuickEditIntegrationLoadingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['quickedit', 'filter', 'node', 'editor']; + public static $modules = ['quickedit', 'filter', 'node', 'editor']; /** * The basic permissions necessary to view content and use in-place editing. diff --git a/core/modules/editor/tests/src/Functional/Rest/EditorJsonBasicAuthTest.php b/core/modules/editor/tests/src/Functional/Rest/EditorJsonBasicAuthTest.php index 5bfa98b95848b2426a0db4f387eab4e35a7344b5..f0c301030a4fa57cc6177c19a78e66417164bfea 100644 --- a/core/modules/editor/tests/src/Functional/Rest/EditorJsonBasicAuthTest.php +++ b/core/modules/editor/tests/src/Functional/Rest/EditorJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EditorJsonBasicAuthTest extends EditorResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/Rest/EditorResourceTestBase.php b/core/modules/editor/tests/src/Functional/Rest/EditorResourceTestBase.php index 9c17974d3060d06ecdd7ce8e56b599ede4800d51..2dc43dc6a3c3813216d89f70a6b1ca0640cd5a6c 100644 --- a/core/modules/editor/tests/src/Functional/Rest/EditorResourceTestBase.php +++ b/core/modules/editor/tests/src/Functional/Rest/EditorResourceTestBase.php @@ -14,7 +14,7 @@ abstract class EditorResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ckeditor', 'editor']; + public static $modules = ['ckeditor', 'editor']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Functional/Rest/EditorXmlBasicAuthTest.php b/core/modules/editor/tests/src/Functional/Rest/EditorXmlBasicAuthTest.php index ae9f9d571d6ce3943fa6c62d151e54ae8ecd0aff..acab40b9a4706c48cf177c02ed175653e3483547 100644 --- a/core/modules/editor/tests/src/Functional/Rest/EditorXmlBasicAuthTest.php +++ b/core/modules/editor/tests/src/Functional/Rest/EditorXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EditorXmlBasicAuthTest extends EditorResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/editor/tests/src/Kernel/EditorFileReferenceFilterTest.php b/core/modules/editor/tests/src/Kernel/EditorFileReferenceFilterTest.php index adc3e0b061570eb4653da872ec979d081a86ab30..a70a232aa8f50d864468e682de1674132b28ddaf 100644 --- a/core/modules/editor/tests/src/Kernel/EditorFileReferenceFilterTest.php +++ b/core/modules/editor/tests/src/Kernel/EditorFileReferenceFilterTest.php @@ -19,7 +19,7 @@ class EditorFileReferenceFilterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'filter', 'editor', 'field', 'file', 'user']; + public static $modules = ['system', 'filter', 'editor', 'field', 'file', 'user']; /** * @var \Drupal\filter\Plugin\FilterInterface[] diff --git a/core/modules/editor/tests/src/Kernel/EditorFileUsageTest.php b/core/modules/editor/tests/src/Kernel/EditorFileUsageTest.php index 89ea85f4ac8c5f63db04784a2875ea553d50f6e1..aac665d61b5c66e4de7e76f1ec1e8c1d43d448fd 100644 --- a/core/modules/editor/tests/src/Kernel/EditorFileUsageTest.php +++ b/core/modules/editor/tests/src/Kernel/EditorFileUsageTest.php @@ -23,7 +23,7 @@ class EditorFileUsageTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['editor', 'editor_test', 'node', 'file']; + public static $modules = ['editor', 'editor_test', 'node', 'file']; protected function setUp() { parent::setUp(); diff --git a/core/modules/editor/tests/src/Kernel/EditorFilterIntegrationTest.php b/core/modules/editor/tests/src/Kernel/EditorFilterIntegrationTest.php index 66c238e73ea1abe1f2d98a61cc4f5b45d555ea0f..c7a9b9ad5ba2b29bdf5b14b475baf05f1bd95d01 100644 --- a/core/modules/editor/tests/src/Kernel/EditorFilterIntegrationTest.php +++ b/core/modules/editor/tests/src/Kernel/EditorFilterIntegrationTest.php @@ -16,7 +16,7 @@ class EditorFilterIntegrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter', 'editor', 'editor_test']; + public static $modules = ['filter', 'editor', 'editor_test']; /** * Tests text format removal or disabling. diff --git a/core/modules/editor/tests/src/Kernel/EditorImageDialogTest.php b/core/modules/editor/tests/src/Kernel/EditorImageDialogTest.php index 9b59d400fbc8fc2ecca898b7ccd0ac47c54cb2a0..6500d1adefd0c388b61ad3179b11626f98078c4a 100644 --- a/core/modules/editor/tests/src/Kernel/EditorImageDialogTest.php +++ b/core/modules/editor/tests/src/Kernel/EditorImageDialogTest.php @@ -28,7 +28,7 @@ class EditorImageDialogTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node', 'file', 'editor', 'editor_test', 'user', 'system']; + public static $modules = ['node', 'file', 'editor', 'editor_test', 'user', 'system']; /** * Sets up the test. diff --git a/core/modules/editor/tests/src/Kernel/EditorManagerTest.php b/core/modules/editor/tests/src/Kernel/EditorManagerTest.php index f40f6490721834c0b3791dea17a8e0acc1705f95..d1d6eafa186452753a61728bfe4f1f5ff576f368 100644 --- a/core/modules/editor/tests/src/Kernel/EditorManagerTest.php +++ b/core/modules/editor/tests/src/Kernel/EditorManagerTest.php @@ -18,7 +18,7 @@ class EditorManagerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'filter', 'editor']; + public static $modules = ['system', 'user', 'filter', 'editor']; /** * The manager for text editor plugins. diff --git a/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php b/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php index 7d1bcde0442758b5365434f8c6044622461337f0..1801cc84822f22599a9c65b1220a11487c016940 100644 --- a/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php +++ b/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php @@ -26,7 +26,7 @@ class QuickEditIntegrationTest extends QuickEditTestBase { /** * {@inheritdoc} */ - protected static $modules = ['editor', 'editor_test']; + public static $modules = ['editor', 'editor_test']; /** * The manager for editor plug-ins. diff --git a/core/modules/field/src/Tests/EntityReference/EntityReferenceAdminTest.php b/core/modules/field/src/Tests/EntityReference/EntityReferenceAdminTest.php index 61ccb346a052a9817e26109aac23e51e30321446..7a5e3ea4cc7e8e827ef0be09d9e8d0760c54c021 100644 --- a/core/modules/field/src/Tests/EntityReference/EntityReferenceAdminTest.php +++ b/core/modules/field/src/Tests/EntityReference/EntityReferenceAdminTest.php @@ -27,7 +27,7 @@ class EntityReferenceAdminTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'path', 'taxonomy', 'block', 'views_ui']; + public static $modules = ['node', 'field_ui', 'path', 'taxonomy', 'block', 'views_ui']; /** * The name of the content type created for testing purposes. diff --git a/core/modules/field/src/Tests/Views/FieldTestBase.php b/core/modules/field/src/Tests/Views/FieldTestBase.php index bbfa52124ea5accefeaed69b7cf7ff8d993632d7..01a884b8a7b247c57d8d53888021e04128a0809e 100644 --- a/core/modules/field/src/Tests/Views/FieldTestBase.php +++ b/core/modules/field/src/Tests/Views/FieldTestBase.php @@ -32,7 +32,7 @@ abstract class FieldTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'field_test_views']; + public static $modules = ['node', 'field_test_views']; /** * Stores the field definitions used by the test. diff --git a/core/modules/field/tests/src/Functional/Boolean/BooleanFieldTest.php b/core/modules/field/tests/src/Functional/Boolean/BooleanFieldTest.php index ca93dbde62d72efb48adc860d6ce56497c0aea95..b1d7ab529854f704de651b6f43be444aaa025bd8 100644 --- a/core/modules/field/tests/src/Functional/Boolean/BooleanFieldTest.php +++ b/core/modules/field/tests/src/Functional/Boolean/BooleanFieldTest.php @@ -19,7 +19,7 @@ class BooleanFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'field_ui', 'options', diff --git a/core/modules/field/tests/src/Functional/Boolean/BooleanFormatterSettingsTest.php b/core/modules/field/tests/src/Functional/Boolean/BooleanFormatterSettingsTest.php index 10c133bb79523aaebe080bf351182c86903df726..0dadce90469fd8ab7b27f7da474f55b4cd983599 100644 --- a/core/modules/field/tests/src/Functional/Boolean/BooleanFormatterSettingsTest.php +++ b/core/modules/field/tests/src/Functional/Boolean/BooleanFormatterSettingsTest.php @@ -18,7 +18,7 @@ class BooleanFormatterSettingsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['field', 'field_ui', 'text', 'node', 'user']; + public static $modules = ['field', 'field_ui', 'text', 'node', 'user']; /** * The name of the entity bundle that is created in the test. diff --git a/core/modules/field/tests/src/Functional/Email/EmailFieldTest.php b/core/modules/field/tests/src/Functional/Email/EmailFieldTest.php index d0948ef708f1ad61646f547a3e4affb57ad94905..76a167d117bec075f5ce5bc4a2453d06b3016ac8 100644 --- a/core/modules/field/tests/src/Functional/Email/EmailFieldTest.php +++ b/core/modules/field/tests/src/Functional/Email/EmailFieldTest.php @@ -19,7 +19,7 @@ class EmailFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'entity_test', 'field_ui']; + public static $modules = ['node', 'entity_test', 'field_ui']; /** * A field storage to use in this test class. diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAutoCreateTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAutoCreateTest.php index 9f0564dd08c490fedc90d4aa4e44cd1a2419d234..84f2b58a07a1e457a2d9afae7a8ab0f131ad2b8a 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAutoCreateTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAutoCreateTest.php @@ -19,7 +19,7 @@ class EntityReferenceAutoCreateTest extends BrowserTestBase { use EntityReferenceTestTrait; - protected static $modules = ['node', 'taxonomy']; + public static $modules = ['node', 'taxonomy']; /** * The name of a content type that will reference $referencedType. diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldDefaultValueTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldDefaultValueTest.php index b40593030d503943198422b8c23f1d28842ff86d..f5d37c2d318c26c5ced3bc4a1165e29ba618d08e 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldDefaultValueTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldDefaultValueTest.php @@ -22,7 +22,7 @@ class EntityReferenceFieldDefaultValueTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['field_ui', 'node']; + public static $modules = ['field_ui', 'node']; /** * A user with permission to administer content types, node fields, etc. diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php index 8857f35f4b5db98be84485aaaddc8a3173786619..cf53a7402a3e7282d7b2162415730a5d77c1b99f 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php @@ -118,7 +118,7 @@ class EntityReferenceFieldTranslatedReferenceViewTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'node', diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFileUploadTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFileUploadTest.php index d42d29d3b57cc79de419320e42190169c73d32ee..792f43576d0cea69a9ec625fc2ef359448c14091 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFileUploadTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFileUploadTest.php @@ -17,7 +17,7 @@ class EntityReferenceFileUploadTest extends BrowserTestBase { use TestFileCreationTrait; - protected static $modules = ['entity_reference', 'node', 'file']; + public static $modules = ['entity_reference', 'node', 'file']; /** * The name of a content type that will reference $referencedType. diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php index d9b377a79d363f50dbd25a151424613474f20193..11e5b2813be61cb522eace9643a166aaf0f308d3 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceIntegrationTest.php @@ -45,7 +45,7 @@ class EntityReferenceIntegrationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['config_test', 'entity_test', 'field_ui']; + public static $modules = ['config_test', 'entity_test', 'field_ui']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/EntityReference/Views/SelectionTest.php b/core/modules/field/tests/src/Functional/EntityReference/Views/SelectionTest.php index 5890ffb899f0596575d3b851a7ee07fdf5d6b812..6e12a8e519d251ac3efc9131429e9774b470f97a 100644 --- a/core/modules/field/tests/src/Functional/EntityReference/Views/SelectionTest.php +++ b/core/modules/field/tests/src/Functional/EntityReference/Views/SelectionTest.php @@ -14,7 +14,7 @@ */ class SelectionTest extends BrowserTestBase { - protected static $modules = ['node', 'views', 'entity_reference_test', 'entity_test']; + public static $modules = ['node', 'views', 'entity_reference_test', 'entity_test']; /** * Nodes for testing. diff --git a/core/modules/field/tests/src/Functional/FieldAccessTest.php b/core/modules/field/tests/src/Functional/FieldAccessTest.php index a7e4f7c36de8832ec0dcd32282b24e5110981994..c7f234fd49997f0187b211ad08f2947e6c3f10e3 100644 --- a/core/modules/field/tests/src/Functional/FieldAccessTest.php +++ b/core/modules/field/tests/src/Functional/FieldAccessTest.php @@ -17,7 +17,7 @@ class FieldAccessTest extends FieldTestBase { * * @var array */ - protected static $modules = ['node', 'field_test']; + public static $modules = ['node', 'field_test']; /** * Node entity to use in this test. diff --git a/core/modules/field/tests/src/Functional/FieldDefaultValueCallbackTest.php b/core/modules/field/tests/src/Functional/FieldDefaultValueCallbackTest.php index 06e3cc5961abdece4830e637c94ed9088475ba92..4a70e7171c7b422b69be2f61b47e37b5fe3e09c5 100644 --- a/core/modules/field/tests/src/Functional/FieldDefaultValueCallbackTest.php +++ b/core/modules/field/tests/src/Functional/FieldDefaultValueCallbackTest.php @@ -18,7 +18,7 @@ class FieldDefaultValueCallbackTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'field_test', 'field_ui']; + public static $modules = ['node', 'field_test', 'field_ui']; /** * The field name. diff --git a/core/modules/field/tests/src/Functional/FieldHelpTest.php b/core/modules/field/tests/src/Functional/FieldHelpTest.php index bad4b68852488c6740d021abd35e748daa66f455..712edec99acf192cd505e23693b3b44465a1aaf1 100644 --- a/core/modules/field/tests/src/Functional/FieldHelpTest.php +++ b/core/modules/field/tests/src/Functional/FieldHelpTest.php @@ -16,7 +16,7 @@ class FieldHelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['field', 'help']; + public static $modules = ['field', 'help']; // Tests field help implementation without optional core modules enabled. protected $profile = 'minimal'; diff --git a/core/modules/field/tests/src/Functional/FieldImportDeleteUninstallUiTest.php b/core/modules/field/tests/src/Functional/FieldImportDeleteUninstallUiTest.php index 3a908ac991ca015389ebaf21157891781e34e6c9..6586446d5aef824cd696ce8de7ac58278d9886ea 100644 --- a/core/modules/field/tests/src/Functional/FieldImportDeleteUninstallUiTest.php +++ b/core/modules/field/tests/src/Functional/FieldImportDeleteUninstallUiTest.php @@ -22,7 +22,7 @@ class FieldImportDeleteUninstallUiTest extends FieldTestBase { * * @var array */ - protected static $modules = ['entity_test', 'telephone', 'config', 'filter', 'datetime']; + public static $modules = ['entity_test', 'telephone', 'config', 'filter', 'datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Functional/FormTest.php b/core/modules/field/tests/src/Functional/FormTest.php index 668ce71f8e45ab127232fe2014c04c531578c125..c1b135f0433948457ba1e5aeaf00bf187106d69c 100644 --- a/core/modules/field/tests/src/Functional/FormTest.php +++ b/core/modules/field/tests/src/Functional/FormTest.php @@ -25,7 +25,7 @@ class FormTest extends FieldTestBase { * * @var array */ - protected static $modules = ['node', 'field_test', 'options', 'entity_test', 'locale']; + public static $modules = ['node', 'field_test', 'options', 'entity_test', 'locale']; /** * An array of values defining a field single. diff --git a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonAnonTest.php b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonAnonTest.php index a94d6430c95fb53d99f2eba32bfdb447e46e1208..2137336c18d5df96bcb8f5b1f584f30c3f07d9fb 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonAnonTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonAnonTest.php @@ -15,7 +15,7 @@ class FieldConfigHalJsonAnonTest extends FieldConfigResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonBasicAuthTest.php b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonBasicAuthTest.php index ca4e9b0bf5f0100e627cf2b4c35d7adc4f54a3c1..8a299a4c4932f71a7691f94b09bbeb7ef17c640e 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class FieldConfigHalJsonBasicAuthTest extends FieldConfigResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonCookieTest.php b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonCookieTest.php index 770c0462e035fe7d3f2e02264c762cb99c14b746..c9f5ce0dd97f5eb7913b84e3ba8e20f9b457bbb1 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonCookieTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldConfigHalJsonCookieTest.php @@ -15,7 +15,7 @@ class FieldConfigHalJsonCookieTest extends FieldConfigResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonAnonTest.php b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonAnonTest.php index 3a1636c5d14a37560161927e42c14394347a84b9..7e74390b3859ea0e8806ed82858594f9b356f0d9 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonAnonTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonAnonTest.php @@ -15,7 +15,7 @@ class FieldStorageConfigHalJsonAnonTest extends FieldStorageConfigResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonBasicAuthTest.php b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonBasicAuthTest.php index 65a77d646403606bc2d0b22df59332d83353ab7f..e3c2a3fb9c9a4f924371c94c9b9b0538d7d4628e 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class FieldStorageConfigHalJsonBasicAuthTest extends FieldStorageConfigResourceT /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonCookieTest.php b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonCookieTest.php index 3359a86e9384398cc0bc0e73bd3402317882bce8..51df45617dfd49885b1b6cd0b3858ff64e45f68b 100644 --- a/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonCookieTest.php +++ b/core/modules/field/tests/src/Functional/Hal/FieldStorageConfigHalJsonCookieTest.php @@ -15,7 +15,7 @@ class FieldStorageConfigHalJsonCookieTest extends FieldStorageConfigResourceTest /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/NestedFormTest.php b/core/modules/field/tests/src/Functional/NestedFormTest.php index f5f4fc068bbc24b8f81553f5d3dde681c5d2a681..bea6c512694abd881017199b7c193015fefee430 100644 --- a/core/modules/field/tests/src/Functional/NestedFormTest.php +++ b/core/modules/field/tests/src/Functional/NestedFormTest.php @@ -18,7 +18,7 @@ class NestedFormTest extends FieldTestBase { * * @var array */ - protected static $modules = ['field_test', 'entity_test']; + public static $modules = ['field_test', 'entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Functional/Number/NumberFieldTest.php b/core/modules/field/tests/src/Functional/Number/NumberFieldTest.php index 40ea4cc62cc04d37d724cb81e3c4e764a4e399cf..c5f2bbe9f7ad7239bfe7ca0b4df65ca5032040c7 100644 --- a/core/modules/field/tests/src/Functional/Number/NumberFieldTest.php +++ b/core/modules/field/tests/src/Functional/Number/NumberFieldTest.php @@ -18,7 +18,7 @@ class NumberFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'entity_test', 'field_ui']; + public static $modules = ['node', 'entity_test', 'field_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Functional/Rest/FieldConfigJsonBasicAuthTest.php b/core/modules/field/tests/src/Functional/Rest/FieldConfigJsonBasicAuthTest.php index 931325d02fbc0005b97662a11fcecac127916afd..d27354eac2b38858ab366074a3fb27c0b9ff7563 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldConfigJsonBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldConfigJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FieldConfigJsonBasicAuthTest extends FieldConfigResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Rest/FieldConfigResourceTestBase.php b/core/modules/field/tests/src/Functional/Rest/FieldConfigResourceTestBase.php index e1ec9d3365b0caaabedf6dfb6ed9a74990d99494..40ce43f5788bd5a872504d0dd269094a3b4d2d01 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldConfigResourceTestBase.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldConfigResourceTestBase.php @@ -12,7 +12,7 @@ abstract class FieldConfigResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'node']; + public static $modules = ['field', 'node']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Rest/FieldConfigXmlBasicAuthTest.php b/core/modules/field/tests/src/Functional/Rest/FieldConfigXmlBasicAuthTest.php index c2e0d0d47bded79f0b6f9a89a3250daf01427668..109f2dc94ac752aebd239050374f44b647ee7606 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldConfigXmlBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldConfigXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class FieldConfigXmlBasicAuthTest extends FieldConfigResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigJsonBasicAuthTest.php b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigJsonBasicAuthTest.php index 3dda429dd4b416b5997c21a5a570291633047c0e..9aa875ab899e16a06f193a31568ec5ed006ac2ca 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigJsonBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FieldStorageConfigJsonBasicAuthTest extends FieldStorageConfigResourceTest /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigResourceTestBase.php b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigResourceTestBase.php index b9bd019975803d482e0794e9e82cd4777bc8450d..0d0fb6dd343ac3ed040cd94a6fd9280b688ae31a 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigResourceTestBase.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigResourceTestBase.php @@ -10,7 +10,7 @@ abstract class FieldStorageConfigResourceTestBase extends EntityResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigXmlBasicAuthTest.php b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigXmlBasicAuthTest.php index 16bd5e725ce48980edacba8801f71923aabd80fa..d6fe68f8e719fa2c9680471287cbcae869447b9e 100644 --- a/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigXmlBasicAuthTest.php +++ b/core/modules/field/tests/src/Functional/Rest/FieldStorageConfigXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class FieldStorageConfigXmlBasicAuthTest extends FieldStorageConfigResourceTestB /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Functional/String/StringFieldTest.php b/core/modules/field/tests/src/Functional/String/StringFieldTest.php index 14aa782c822ba948c8b76a5f9b695ec266a6e180..e9894f8103ccf09b0c41e96d4fdade7c5906f709 100644 --- a/core/modules/field/tests/src/Functional/String/StringFieldTest.php +++ b/core/modules/field/tests/src/Functional/String/StringFieldTest.php @@ -19,7 +19,7 @@ class StringFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test', 'file']; + public static $modules = ['entity_test', 'file']; /** * A user without any special permissions. diff --git a/core/modules/field/tests/src/Functional/TranslationWebTest.php b/core/modules/field/tests/src/Functional/TranslationWebTest.php index bf729bbb55c3cca5a10f2ec5dc41034eef360d18..465add964dff616b232fff17794c48fd51b1d461 100644 --- a/core/modules/field/tests/src/Functional/TranslationWebTest.php +++ b/core/modules/field/tests/src/Functional/TranslationWebTest.php @@ -18,7 +18,7 @@ class TranslationWebTest extends FieldTestBase { * * @var array */ - protected static $modules = ['language', 'field_test', 'entity_test']; + public static $modules = ['language', 'field_test', 'entity_test']; /** * The name of the field to use in this test. diff --git a/core/modules/field/tests/src/Functional/Views/FieldTestBase.php b/core/modules/field/tests/src/Functional/Views/FieldTestBase.php index 5978824fddfb74ad572fa8e0111beb4aea2c2d7b..4b70fe2471630bb07125b77739c6996f37833bf8 100644 --- a/core/modules/field/tests/src/Functional/Views/FieldTestBase.php +++ b/core/modules/field/tests/src/Functional/Views/FieldTestBase.php @@ -25,7 +25,7 @@ abstract class FieldTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'field_test_views']; + public static $modules = ['node', 'field_test_views']; /** * Stores the field definitions used by the test. diff --git a/core/modules/field/tests/src/Functional/Views/FieldUITest.php b/core/modules/field/tests/src/Functional/Views/FieldUITest.php index 9e5ee1d004ca383fc10f814c8facf0b777fd43fc..f43b30d66294cf57b3417f53d963705ed4674592 100644 --- a/core/modules/field/tests/src/Functional/Views/FieldUITest.php +++ b/core/modules/field/tests/src/Functional/Views/FieldUITest.php @@ -26,7 +26,7 @@ class FieldUITest extends FieldTestBase { * * @var array */ - protected static $modules = ['views_ui']; + public static $modules = ['views_ui']; /** * A user with the 'administer views' permission. diff --git a/core/modules/field/tests/src/Functional/Views/HandlerFieldFieldTest.php b/core/modules/field/tests/src/Functional/Views/HandlerFieldFieldTest.php index 7adb16e80bc503fec1b9b1628fa67d875b08aa3d..7a14fb05716786481339ebf8e04cdd607be0b686 100644 --- a/core/modules/field/tests/src/Functional/Views/HandlerFieldFieldTest.php +++ b/core/modules/field/tests/src/Functional/Views/HandlerFieldFieldTest.php @@ -22,7 +22,7 @@ class HandlerFieldFieldTest extends FieldTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'field_test']; + public static $modules = ['node', 'field_test']; /** * Views used by this test. diff --git a/core/modules/field/tests/src/Functional/reEnableModuleFieldTest.php b/core/modules/field/tests/src/Functional/reEnableModuleFieldTest.php index 9ef3356031ffd9bd27850baaf1785f85e2e15a7e..59aaf229053814587b17acee943d1b4d97452795 100644 --- a/core/modules/field/tests/src/Functional/reEnableModuleFieldTest.php +++ b/core/modules/field/tests/src/Functional/reEnableModuleFieldTest.php @@ -21,7 +21,7 @@ class reEnableModuleFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'field', 'node', // We use telephone module instead of test_field because test_field is diff --git a/core/modules/field/tests/src/FunctionalJavascript/Boolean/BooleanFormatterSettingsTest.php b/core/modules/field/tests/src/FunctionalJavascript/Boolean/BooleanFormatterSettingsTest.php index ffdb4654acb4db252bcaf5b52bce5ede581e2caf..7837536e27b43b5fde3e8dbcf06267a52f0ed774 100644 --- a/core/modules/field/tests/src/FunctionalJavascript/Boolean/BooleanFormatterSettingsTest.php +++ b/core/modules/field/tests/src/FunctionalJavascript/Boolean/BooleanFormatterSettingsTest.php @@ -18,7 +18,7 @@ class BooleanFormatterSettingsTest extends WebDriverTestBase { * * @var array */ - protected static $modules = ['field', 'field_ui', 'text', 'node', 'user']; + public static $modules = ['field', 'field_ui', 'text', 'node', 'user']; /** * The name of the entity bundle that is created in the test. diff --git a/core/modules/field/tests/src/FunctionalJavascript/FormJSAddMoreTest.php b/core/modules/field/tests/src/FunctionalJavascript/FormJSAddMoreTest.php index 152483fe428a38e1aa5b7c984f38bd6caaef35b1..0561d73711999d99c5ead776ea40bdad0dbd0667 100644 --- a/core/modules/field/tests/src/FunctionalJavascript/FormJSAddMoreTest.php +++ b/core/modules/field/tests/src/FunctionalJavascript/FormJSAddMoreTest.php @@ -18,7 +18,7 @@ class FormJSAddMoreTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_test', 'entity_test']; + public static $modules = ['field_test', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php b/core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php index 9ed4c6a3d96f2b4fc6ea7b0351d979d8adaba2a3..b2fb19384c86c30f9a393f84030b791647199317 100644 --- a/core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php +++ b/core/modules/field/tests/src/Kernel/Boolean/BooleanFormatterTest.php @@ -21,7 +21,7 @@ class BooleanFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'text', 'entity_test', 'user', 'system']; + public static $modules = ['field', 'text', 'entity_test', 'user', 'system']; /** * @var string diff --git a/core/modules/field/tests/src/Kernel/DisplayApiTest.php b/core/modules/field/tests/src/Kernel/DisplayApiTest.php index 556c7890c031f2c39b39395c89dc9045c7652f16..3cbf63eb19beea0bd4c88a52a1c3f8fbe6aece8b 100644 --- a/core/modules/field/tests/src/Kernel/DisplayApiTest.php +++ b/core/modules/field/tests/src/Kernel/DisplayApiTest.php @@ -59,7 +59,7 @@ class DisplayApiTest extends FieldKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php b/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php index 3ad6a9a57f6ac8256729072ad87ce9e44afdb40b..05db0dc5ccf693c4576e388b13e374c42b139875 100644 --- a/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php +++ b/core/modules/field/tests/src/Kernel/Entity/Update/SqlContentEntityStorageSchemaColumnTest.php @@ -18,7 +18,7 @@ class SqlContentEntityStorageSchemaColumnTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'field', 'text', 'user']; + public static $modules = ['entity_test', 'field', 'text', 'user']; /** * The created entity. diff --git a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceItemTest.php b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceItemTest.php index 2d54ebf5423acd4c2fb14ca4b57367f4d7f16de9..627fdba5dce8f821b0288341db9fde131b1e6fae 100644 --- a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceItemTest.php +++ b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceItemTest.php @@ -39,7 +39,7 @@ class EntityReferenceItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'file', 'taxonomy', 'text', 'filter', 'views', 'field']; + public static $modules = ['node', 'comment', 'file', 'taxonomy', 'text', 'filter', 'views', 'field']; /** * The taxonomy vocabulary to test with. diff --git a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceSettingsTest.php b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceSettingsTest.php index 0b364be491adfab0aec77819107a3e3328411771..93c39257b3624caf1bc9191242980976518c069e 100644 --- a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceSettingsTest.php +++ b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceSettingsTest.php @@ -23,7 +23,7 @@ class EntityReferenceSettingsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'taxonomy', 'field', 'user', 'text', 'entity_reference', 'entity_test', 'system']; + public static $modules = ['node', 'taxonomy', 'field', 'user', 'text', 'entity_reference', 'entity_test', 'system']; /** * Testing node type. diff --git a/core/modules/field/tests/src/Kernel/EntityReference/Views/EntityReferenceRelationshipTest.php b/core/modules/field/tests/src/Kernel/EntityReference/Views/EntityReferenceRelationshipTest.php index 11799bfb4a73fbbe5f2348b4ff0c935eecf05e22..095e4bd8d8a2a2357ec9eca121822b39977ccf66 100644 --- a/core/modules/field/tests/src/Kernel/EntityReference/Views/EntityReferenceRelationshipTest.php +++ b/core/modules/field/tests/src/Kernel/EntityReference/Views/EntityReferenceRelationshipTest.php @@ -41,7 +41,7 @@ class EntityReferenceRelationshipTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user', 'field', 'entity_test', 'views', 'entity_reference_test_views']; + public static $modules = ['user', 'field', 'entity_test', 'views', 'entity_reference_test_views']; /** * The entity_test entities used by the test. diff --git a/core/modules/field/tests/src/Kernel/FieldDefinitionIntegrityTest.php b/core/modules/field/tests/src/Kernel/FieldDefinitionIntegrityTest.php index 018aed211402e659ce8b298efdef6267f55ea836..afd468a5dab0509c41c10502fffc0f2667e01d70 100644 --- a/core/modules/field/tests/src/Kernel/FieldDefinitionIntegrityTest.php +++ b/core/modules/field/tests/src/Kernel/FieldDefinitionIntegrityTest.php @@ -21,7 +21,7 @@ class FieldDefinitionIntegrityTest extends KernelTestBase { /** * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests the integrity of field plugin definitions. diff --git a/core/modules/field/tests/src/Kernel/FieldDisplayTest.php b/core/modules/field/tests/src/Kernel/FieldDisplayTest.php index d6e3fe5a341d4419fd6a87462997b73f32f9089f..beaa6e6b47403e98e6ec41bea8a8ad9cc397991e 100644 --- a/core/modules/field/tests/src/Kernel/FieldDisplayTest.php +++ b/core/modules/field/tests/src/Kernel/FieldDisplayTest.php @@ -20,7 +20,7 @@ class FieldDisplayTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'field', 'system', diff --git a/core/modules/field/tests/src/Kernel/FieldImportChangeTest.php b/core/modules/field/tests/src/Kernel/FieldImportChangeTest.php index a8aac0d87a0fafdf3408dbc143698c5c99a98262..9b8391961e8ce6537ac9bf86864d07843f1fea3b 100644 --- a/core/modules/field/tests/src/Kernel/FieldImportChangeTest.php +++ b/core/modules/field/tests/src/Kernel/FieldImportChangeTest.php @@ -20,7 +20,7 @@ class FieldImportChangeTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test_config']; + public static $modules = ['field_test_config']; /** * Tests importing an updated field. diff --git a/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php b/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php index dff74601bc168d6f992d681abe864660414e6fd1..b4180a0170cae42187e0921520bfd2d64d64c8ae 100644 --- a/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php +++ b/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php @@ -23,7 +23,7 @@ class FieldImportDeleteTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test_config']; + public static $modules = ['field_test_config']; /** * Tests deleting field storages and fields as part of config import. diff --git a/core/modules/field/tests/src/Kernel/FieldImportDeleteUninstallTest.php b/core/modules/field/tests/src/Kernel/FieldImportDeleteUninstallTest.php index 9ef64616c1690381b1391f6c4c59d294499dc120..c3a4d3c1d547684d6cec28acc532d9184ff7650b 100644 --- a/core/modules/field/tests/src/Kernel/FieldImportDeleteUninstallTest.php +++ b/core/modules/field/tests/src/Kernel/FieldImportDeleteUninstallTest.php @@ -21,7 +21,7 @@ class FieldImportDeleteUninstallTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['telephone']; + public static $modules = ['telephone']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php index ba9f9c6f5ad287a4943c1d3209658c87fa1f4374..98d7419f5f6a7336f6bdc0416ada8891e85bb68e 100644 --- a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php +++ b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php @@ -18,7 +18,7 @@ abstract class FieldKernelTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system', 'field', 'text', 'entity_test', 'field_test']; + public static $modules = ['user', 'system', 'field', 'text', 'entity_test', 'field_test']; /** * Bag of created field storages and fields. diff --git a/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php b/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php index 7584f138d788c6c15920993fdcd0f1caba078b93..93c15a8347b1437f1f24d9e1c72f9048c1f41c17 100644 --- a/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php +++ b/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php @@ -21,7 +21,7 @@ class FieldStorageCrudTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = []; + public static $modules = []; // TODO : test creation with // - a full fledged $field structure, check that all the values are there diff --git a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php index e64728acdaf1f65161563490d9261877fea0c665..7347c0470db171f9b3c07c64fe2cade0fa2a0c80 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldFormatterSettingsTest.php @@ -15,7 +15,7 @@ class MigrateFieldFormatterSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceTest.php b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceTest.php index 67d56d7c3de9b079f73cc8e711253f323576123f..6c4e29c4beea3d1def5eda41caf55a5dc6b63fe2 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldInstanceTest.php @@ -17,7 +17,7 @@ class MigrateFieldInstanceTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * Tests migration of file variables to file.settings.yml. diff --git a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldWidgetSettingsTest.php b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldWidgetSettingsTest.php index 01c3efacdf6cce83166d13415c46fbb174ef39e3..c6f47fb1bd586ff0eec67880bb14de0169ef1977 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldWidgetSettingsTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d6/MigrateFieldWidgetSettingsTest.php @@ -15,7 +15,7 @@ class MigrateFieldWidgetSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php index 71fa22b70a3da1297657d391f4357dc0420cac76..6773ca8d28c4e0f0ecefbed70dc746d6ebfb39e1 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldFormatterSettingsTest.php @@ -17,7 +17,7 @@ */ class MigrateFieldFormatterSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'file', diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php index f64355c1059b30f7a092c508b583c361a975cee0..35a5ff729a5d1363dfdc6482022f33ce6286bb20 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceTest.php @@ -20,7 +20,7 @@ class MigrateFieldInstanceTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'file', diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceWidgetSettingsTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceWidgetSettingsTest.php index d2dab17be9d5c2e0c798d723cf1eed14d8d5f459..86e4f72510676a1e9aa5e8a4e2c5b0d39f00722f 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceWidgetSettingsTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldInstanceWidgetSettingsTest.php @@ -18,7 +18,7 @@ class MigrateFieldInstanceWidgetSettingsTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'field', diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldTest.php index 0e3d720de509e629f82342138cb8ac0347a4e96a..14c6c31767790bafab7893c1011b6d4230156876 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateFieldTest.php @@ -18,7 +18,7 @@ class MigrateFieldTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'file', diff --git a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php index 27deaeccbc14c941f27e552ab632eed4a0de5751..0a7e9dcc0dd33556051e31fb8a51d5796be6ab09 100644 --- a/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php +++ b/core/modules/field/tests/src/Kernel/Migrate/d7/MigrateViewModesTest.php @@ -13,7 +13,7 @@ */ class MigrateViewModesTest extends MigrateDrupal7TestBase { - protected static $modules = ['comment', 'node', 'taxonomy']; + public static $modules = ['comment', 'node', 'taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Number/NumberItemTest.php b/core/modules/field/tests/src/Kernel/Number/NumberItemTest.php index d885a038a5eebc8d5b968f05fa7ab4162dea565b..ba47d91307ce0b6be3a67cc2455e814fcbcfb844 100644 --- a/core/modules/field/tests/src/Kernel/Number/NumberItemTest.php +++ b/core/modules/field/tests/src/Kernel/Number/NumberItemTest.php @@ -21,7 +21,7 @@ class NumberItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = []; + public static $modules = []; protected function setUp() { parent::setUp(); diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php index 39619abc9124cb1efbe80fceb282fc9b161aa27a..dfbcc9f866f89722ac0ad40ee65d3735dada348f 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerFormDisplayTest.php @@ -15,7 +15,7 @@ class FieldInstancePerFormDisplayTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerViewModeTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerViewModeTest.php index e46d00b15c100875c872d803e39ed0064b3094c1..baea562ee74704ef36d2e6cb50bce11e86afed73 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerViewModeTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstancePerViewModeTest.php @@ -15,7 +15,7 @@ class FieldInstancePerViewModeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal', 'node', 'user']; + public static $modules = ['field', 'migrate_drupal', 'node', 'user']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstanceTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstanceTest.php index 2fd757f771a508cf3ab685694beb02ba01e6a4cf..bfbddcaef53151c4f6ac05b46f75e1a40f73871b 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstanceTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldInstanceTest.php @@ -15,7 +15,7 @@ class FieldInstanceTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php index e83d05e7c43c7ea92241aa9520ec65dd96f6cb5b..06026414a0e58abc32e3ba64b9bea401aca6907a 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d6/FieldTest.php @@ -15,7 +15,7 @@ class FieldTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerFormDisplayTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerFormDisplayTest.php index 0482ce8afdbcd86e307279f682249604c9b9bad1..f0f1f0890da86846ac18997017f2ee54b401db5f 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerFormDisplayTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerFormDisplayTest.php @@ -15,7 +15,7 @@ class FieldInstancePerFormDisplayTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerViewModeTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerViewModeTest.php index 64c7d50ad9fa21582c7f022a12c3688b859e9978..129026435336de3e289a22b86934f46f505631ac 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerViewModeTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstancePerViewModeTest.php @@ -15,7 +15,7 @@ class FieldInstancePerViewModeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstanceTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstanceTest.php index 8cd0316603114ab53b82aefc9d66587ca2ca5532..942391ebd64d4f1f9898e7d8aa3aec8fbff0ff74 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstanceTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldInstanceTest.php @@ -15,7 +15,7 @@ class FieldInstanceTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php index 6be4de53d2507728dfe3ab183ea8f54cf91fb4af..f904429d8906270cdafdd1bb7eb3ee3cff90c1c1 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/FieldTest.php @@ -15,7 +15,7 @@ class FieldTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/ViewModeTest.php b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/ViewModeTest.php index 15f6a4c5219a6d77cf00d4e55a387b30553b16c1..deab0668c905ea2d5a3f1eb04dfac36aa67f9a31 100644 --- a/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/ViewModeTest.php +++ b/core/modules/field/tests/src/Kernel/Plugin/migrate/source/d7/ViewModeTest.php @@ -15,7 +15,7 @@ class ViewModeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'migrate_drupal']; + public static $modules = ['field', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/ShapeItemTest.php b/core/modules/field/tests/src/Kernel/ShapeItemTest.php index 181e479c921544ecc0be7131dcc2bd216e22e685..80ab04f3a9bc1a7f537d1dae585cbb66f0f7219b 100644 --- a/core/modules/field/tests/src/Kernel/ShapeItemTest.php +++ b/core/modules/field/tests/src/Kernel/ShapeItemTest.php @@ -20,7 +20,7 @@ class ShapeItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * The name of the field to use in this test. diff --git a/core/modules/field/tests/src/Kernel/String/RawStringFormatterTest.php b/core/modules/field/tests/src/Kernel/String/RawStringFormatterTest.php index 7e40f995b0cdf14e83a299a6c7a78c6f760b173e..fba3bda6b547a301b6341c28da4df77e02133d29 100644 --- a/core/modules/field/tests/src/Kernel/String/RawStringFormatterTest.php +++ b/core/modules/field/tests/src/Kernel/String/RawStringFormatterTest.php @@ -22,7 +22,7 @@ class RawStringFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'text', 'entity_test', 'system', 'filter', 'user']; + public static $modules = ['field', 'text', 'entity_test', 'system', 'filter', 'user']; /** * @var string diff --git a/core/modules/field/tests/src/Kernel/String/StringFormatterTest.php b/core/modules/field/tests/src/Kernel/String/StringFormatterTest.php index 7c9c8adb6cd7f2275ac40d83ab464b633824e7a0..ae3a371c81d94bc8e3c1b102d25ce156641efecb 100644 --- a/core/modules/field/tests/src/Kernel/String/StringFormatterTest.php +++ b/core/modules/field/tests/src/Kernel/String/StringFormatterTest.php @@ -22,7 +22,7 @@ class StringFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'text', 'entity_test', 'system', 'filter', 'user']; + public static $modules = ['field', 'text', 'entity_test', 'system', 'filter', 'user']; /** * @var string diff --git a/core/modules/field/tests/src/Kernel/String/UuidFormatterTest.php b/core/modules/field/tests/src/Kernel/String/UuidFormatterTest.php index 4059cc6eb2fa770392aaa495a3bb861e51c0be2e..0eeb7780764bd1b0f43d1245ae0c9402d8238712 100644 --- a/core/modules/field/tests/src/Kernel/String/UuidFormatterTest.php +++ b/core/modules/field/tests/src/Kernel/String/UuidFormatterTest.php @@ -18,7 +18,7 @@ class UuidFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'entity_test', 'system', 'user']; + public static $modules = ['field', 'entity_test', 'system', 'user']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/TestItemTest.php b/core/modules/field/tests/src/Kernel/TestItemTest.php index a17401e3d9e4dddd3689084ffc252f0407f330a6..73a99486b6cb013aee02c8985bd57867a6a2412a 100644 --- a/core/modules/field/tests/src/Kernel/TestItemTest.php +++ b/core/modules/field/tests/src/Kernel/TestItemTest.php @@ -21,7 +21,7 @@ class TestItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * The name of the field to use in this test. diff --git a/core/modules/field/tests/src/Kernel/TestItemWithDependenciesTest.php b/core/modules/field/tests/src/Kernel/TestItemWithDependenciesTest.php index 60607c731e5c77d461279b6d1740b49ff752dff9..4e52b75965459d10cc1a22bcc7db2ec2a3d363bb 100644 --- a/core/modules/field/tests/src/Kernel/TestItemWithDependenciesTest.php +++ b/core/modules/field/tests/src/Kernel/TestItemWithDependenciesTest.php @@ -17,7 +17,7 @@ class TestItemWithDependenciesTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * The name of the field to use in this test. diff --git a/core/modules/field/tests/src/Kernel/TestObjectItemTest.php b/core/modules/field/tests/src/Kernel/TestObjectItemTest.php index 0d5824030c07db088009f699006fcb18375c7129..1ac87fc3b7fcb09a41a859fad0151f1ee7b277c7 100644 --- a/core/modules/field/tests/src/Kernel/TestObjectItemTest.php +++ b/core/modules/field/tests/src/Kernel/TestObjectItemTest.php @@ -18,7 +18,7 @@ class TestObjectItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * {@inheritdoc} diff --git a/core/modules/field/tests/src/Kernel/Timestamp/TimestampFormatterTest.php b/core/modules/field/tests/src/Kernel/Timestamp/TimestampFormatterTest.php index d1c83b5182b795b2a36dd6a32ada4ca8cb47b5f6..9bb1f73acc3ee06f38b3651c9fe89143fb8f151c 100644 --- a/core/modules/field/tests/src/Kernel/Timestamp/TimestampFormatterTest.php +++ b/core/modules/field/tests/src/Kernel/Timestamp/TimestampFormatterTest.php @@ -20,7 +20,7 @@ class TimestampFormatterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'field', 'text', 'entity_test', 'user']; + public static $modules = ['system', 'field', 'text', 'entity_test', 'user']; /** * @var string diff --git a/core/modules/field/tests/src/Kernel/TranslationTest.php b/core/modules/field/tests/src/Kernel/TranslationTest.php index 31062db3a1564ec0a60cbca823f58bbd8d3787e1..5d03f6917144af0c74093396ef5611161988332f 100644 --- a/core/modules/field/tests/src/Kernel/TranslationTest.php +++ b/core/modules/field/tests/src/Kernel/TranslationTest.php @@ -22,7 +22,7 @@ class TranslationTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['language', 'node']; + public static $modules = ['language', 'node']; /** * The name of the field to use in this test. diff --git a/core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php b/core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php index 01bc31346a4815d56cafa5f383dc6af979f3347f..9bab0b54312c7edc4730f93f6d24f00efcd22f99 100644 --- a/core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php +++ b/core/modules/field_layout/tests/src/Functional/FieldLayoutTest.php @@ -14,7 +14,7 @@ class FieldLayoutTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_layout', 'field_ui', 'node', 'field_layout_test']; + public static $modules = ['field_layout', 'field_ui', 'node', 'field_layout_test']; /** * {@inheritdoc} diff --git a/core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php b/core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php index 8e28835fe19714db0aab77a184d92b20e1b2c1c0..9e65b270be7d745b8c81ae708ea1103f95a53a36 100644 --- a/core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php +++ b/core/modules/field_layout/tests/src/FunctionalJavascript/FieldLayoutTest.php @@ -15,7 +15,7 @@ class FieldLayoutTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_layout', 'field_ui', 'field_layout_test', 'layout_test']; + public static $modules = ['field_layout', 'field_ui', 'field_layout_test', 'layout_test']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/src/Tests/FieldUIDeleteTest.php b/core/modules/field_ui/src/Tests/FieldUIDeleteTest.php index 73c588a94489e39588690c09761a5eeb8bef37fc..631d3368d070cd7ada2edc23c6dfc3bac59304bb 100644 --- a/core/modules/field_ui/src/Tests/FieldUIDeleteTest.php +++ b/core/modules/field_ui/src/Tests/FieldUIDeleteTest.php @@ -22,7 +22,7 @@ class FieldUIDeleteTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'field_test', 'block', 'field_test_views']; + public static $modules = ['node', 'field_ui', 'field_test', 'block', 'field_test_views']; /** * Test views to enable diff --git a/core/modules/field_ui/src/Tests/ManageDisplayTest.php b/core/modules/field_ui/src/Tests/ManageDisplayTest.php index 24b0fbf052547d713f5b65db997c2bbccb8c29cd..783e7fec21c1aa7fc2e05c44a98dcbd858d9cda6 100644 --- a/core/modules/field_ui/src/Tests/ManageDisplayTest.php +++ b/core/modules/field_ui/src/Tests/ManageDisplayTest.php @@ -24,7 +24,7 @@ class ManageDisplayTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'taxonomy', 'search', 'field_test', 'field_third_party_test', 'block']; + public static $modules = ['node', 'field_ui', 'taxonomy', 'search', 'field_test', 'field_third_party_test', 'block']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/src/Tests/ManageFieldsTest.php b/core/modules/field_ui/src/Tests/ManageFieldsTest.php index 2707dbdf0004edb008f064ded09be7cbfca537c7..bc7a2c54b9da707d5d236bc52e26a1fb2480d0ea 100644 --- a/core/modules/field_ui/src/Tests/ManageFieldsTest.php +++ b/core/modules/field_ui/src/Tests/ManageFieldsTest.php @@ -26,7 +26,7 @@ class ManageFieldsTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'field_test', 'taxonomy', 'image', 'block']; + public static $modules = ['node', 'field_ui', 'field_test', 'taxonomy', 'image', 'block']; /** * The ID of the custom content type created for testing. diff --git a/core/modules/field_ui/tests/src/Functional/EntityDisplayModeTest.php b/core/modules/field_ui/tests/src/Functional/EntityDisplayModeTest.php index fc60848617f88d5a67821bf55343f9a745143f5e..953684193d3cbb4315f1717817ac1e8e2ce98086 100644 --- a/core/modules/field_ui/tests/src/Functional/EntityDisplayModeTest.php +++ b/core/modules/field_ui/tests/src/Functional/EntityDisplayModeTest.php @@ -19,7 +19,7 @@ class EntityDisplayModeTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['block', 'entity_test', 'field_ui', 'node']; + public static $modules = ['block', 'entity_test', 'field_ui', 'node']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php b/core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php index b9f75404490a49c1ff0e27c73d5a1d228bb95029..c9cfc052ab506c617ddf1e2d4944725a8b84ca12 100644 --- a/core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php +++ b/core/modules/field_ui/tests/src/Functional/EntityDisplayTest.php @@ -14,7 +14,7 @@ class EntityDisplayTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_ui', 'entity_test']; + public static $modules = ['field_ui', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/tests/src/Functional/FieldUIIndentationTest.php b/core/modules/field_ui/tests/src/Functional/FieldUIIndentationTest.php index b5d43c8464347e6c275ff8df695ad495cccf8b93..1f66c9a77276398b39773d13c6026529ba49164f 100644 --- a/core/modules/field_ui/tests/src/Functional/FieldUIIndentationTest.php +++ b/core/modules/field_ui/tests/src/Functional/FieldUIIndentationTest.php @@ -16,7 +16,7 @@ class FieldUIIndentationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'field_ui_test']; + public static $modules = ['node', 'field_ui', 'field_ui_test']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/tests/src/Functional/FieldUIRouteTest.php b/core/modules/field_ui/tests/src/Functional/FieldUIRouteTest.php index 0eb75e918e59fb58d5fabb8a49677851ba8e348c..fe7a27011cac469396ec919144451e19932759d9 100644 --- a/core/modules/field_ui/tests/src/Functional/FieldUIRouteTest.php +++ b/core/modules/field_ui/tests/src/Functional/FieldUIRouteTest.php @@ -18,7 +18,7 @@ class FieldUIRouteTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['block', 'entity_test', 'field_ui']; + public static $modules = ['block', 'entity_test', 'field_ui']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php b/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php index a4566abe1bed271098433024d28f7f87b915ba08..1c21b069b4bc9c8aa11d1a632924e54d20e88d93 100644 --- a/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php +++ b/core/modules/field_ui/tests/src/Functional/ManageFieldsTest.php @@ -14,7 +14,7 @@ class ManageFieldsTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'field_ui', 'field_ui_test', 'node', diff --git a/core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php b/core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php index 1105c559c1c3e1a557c62a6cfff1086a35837eb2..7909f0f0061c61d32fd07976822d7efe657d355d 100644 --- a/core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php +++ b/core/modules/field_ui/tests/src/FunctionalJavascript/EntityDisplayTest.php @@ -15,7 +15,7 @@ class EntityDisplayTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_ui', 'entity_test']; + public static $modules = ['field_ui', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php b/core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php index 46ef27161cbc81790e3aaa6fb953c7bbb1de5fce..5ee2d406d28ecff0a3ef822cfd93d16c880ce833 100644 --- a/core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php +++ b/core/modules/field_ui/tests/src/Kernel/EntityDisplayTest.php @@ -28,7 +28,7 @@ class EntityDisplayTest extends KernelTestBase { * * @var string[] */ - protected static $modules = ['field_ui', 'field', 'entity_test', 'user', 'text', 'field_test', 'node', 'system']; + public static $modules = ['field_ui', 'field', 'entity_test', 'user', 'text', 'field_test', 'node', 'system']; protected function setUp() { parent::setUp(); diff --git a/core/modules/field_ui/tests/src/Kernel/EntityFormDisplayTest.php b/core/modules/field_ui/tests/src/Kernel/EntityFormDisplayTest.php index 3470a382c01710422eefa99e4f0d7bcb8a3ddbd3..c1d22b7423491a786fac07ad77a129682072b58f 100644 --- a/core/modules/field_ui/tests/src/Kernel/EntityFormDisplayTest.php +++ b/core/modules/field_ui/tests/src/Kernel/EntityFormDisplayTest.php @@ -20,7 +20,7 @@ class EntityFormDisplayTest extends KernelTestBase { * * @var string[] */ - protected static $modules = ['field_ui', 'field', 'entity_test', 'field_test', 'user', 'text']; + public static $modules = ['field_ui', 'field', 'entity_test', 'field_test', 'user', 'text']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/src/Tests/FileFieldTestBase.php b/core/modules/file/src/Tests/FileFieldTestBase.php index d2683615b7777b073448e51de9f94af473f9f120..0f82af3eac67322d8c935f8801bb7dfbd650187d 100644 --- a/core/modules/file/src/Tests/FileFieldTestBase.php +++ b/core/modules/file/src/Tests/FileFieldTestBase.php @@ -23,7 +23,7 @@ abstract class FileFieldTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'file', 'file_module_test', 'field_ui']; + public static $modules = ['node', 'file', 'file_module_test', 'field_ui']; /** * An user with administration permissions. diff --git a/core/modules/file/src/Tests/FileFieldWidgetTest.php b/core/modules/file/src/Tests/FileFieldWidgetTest.php index c62f9970c9b00f53850267f3cb7af5ca33db0c47..3102bd744d79252cbc07f42ad97d89ca1a4e2247 100644 --- a/core/modules/file/src/Tests/FileFieldWidgetTest.php +++ b/core/modules/file/src/Tests/FileFieldWidgetTest.php @@ -37,7 +37,7 @@ protected function setUp() { * * @var array */ - protected static $modules = ['comment', 'block']; + public static $modules = ['comment', 'block']; /** * Creates a temporary file, for a specific user. diff --git a/core/modules/file/src/Tests/FileManagedTestBase.php b/core/modules/file/src/Tests/FileManagedTestBase.php index c4fb78e007bda1f85b87c4161f0c17cc5106a091..1c52b35312353208c203d2a1124ee00ff1b064f0 100644 --- a/core/modules/file/src/Tests/FileManagedTestBase.php +++ b/core/modules/file/src/Tests/FileManagedTestBase.php @@ -22,7 +22,7 @@ abstract class FileManagedTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['file_test', 'file']; + public static $modules = ['file_test', 'file']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/tests/src/Functional/FileFieldFormatterAccessTest.php b/core/modules/file/tests/src/Functional/FileFieldFormatterAccessTest.php index 9bd0df7dd1ab3600e22f46fe5915ef86921a4cc6..5fbbdf14ff9fb8e727a9540a22aa3fb830f1e8af 100644 --- a/core/modules/file/tests/src/Functional/FileFieldFormatterAccessTest.php +++ b/core/modules/file/tests/src/Functional/FileFieldFormatterAccessTest.php @@ -13,7 +13,7 @@ class FileFieldFormatterAccessTest extends FileFieldTestBase { * * @var array */ - protected static $modules = ['node', 'file', 'field_ui', 'file_test']; + public static $modules = ['node', 'file', 'field_ui', 'file_test']; /** * Tests the custom access handler is invoked. diff --git a/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php b/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php index d2af48784aee2d9bc0c7277b677e33fa7e143892..26d14dbfb4983278f41f250359289dfef3906e62 100644 --- a/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php +++ b/core/modules/file/tests/src/Functional/FileFieldRSSContentTest.php @@ -16,7 +16,7 @@ class FileFieldRSSContentTest extends FileFieldTestBase { * * @var array */ - protected static $modules = ['node', 'views']; + public static $modules = ['node', 'views']; /** * Tests RSS enclosure formatter display for RSS feeds. diff --git a/core/modules/file/tests/src/Functional/FileFieldTestBase.php b/core/modules/file/tests/src/Functional/FileFieldTestBase.php index 5ae869cdca72281c1ef2ea9ab5844c03de7f0fbe..dc2e8becc139c126b2e5d4884b461d166cb792b4 100644 --- a/core/modules/file/tests/src/Functional/FileFieldTestBase.php +++ b/core/modules/file/tests/src/Functional/FileFieldTestBase.php @@ -24,7 +24,7 @@ abstract class FileFieldTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'file', 'file_module_test', 'field_ui']; + public static $modules = ['node', 'file', 'file_module_test', 'field_ui']; /** * An user with administration permissions. diff --git a/core/modules/file/tests/src/Functional/FileListingTest.php b/core/modules/file/tests/src/Functional/FileListingTest.php index fe748c4db07b5598d1fe95ce238467bb82244a3a..b1d39b3ad8c0364993da4ad26622e37eb7e673d9 100644 --- a/core/modules/file/tests/src/Functional/FileListingTest.php +++ b/core/modules/file/tests/src/Functional/FileListingTest.php @@ -18,7 +18,7 @@ class FileListingTest extends FileFieldTestBase { * * @var array */ - protected static $modules = ['views', 'file', 'image', 'entity_test']; + public static $modules = ['views', 'file', 'image', 'entity_test']; /** * An authenticated user. diff --git a/core/modules/file/tests/src/Functional/FileManagedTestBase.php b/core/modules/file/tests/src/Functional/FileManagedTestBase.php index a15e6663265dd8a515d3682366db7290d1327faa..e0da7d1a0051357a9a226b21e1f28f93428629dc 100644 --- a/core/modules/file/tests/src/Functional/FileManagedTestBase.php +++ b/core/modules/file/tests/src/Functional/FileManagedTestBase.php @@ -17,7 +17,7 @@ abstract class FileManagedTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['file_test', 'file']; + public static $modules = ['file_test', 'file']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/tests/src/Functional/FileOnTranslatedEntityTest.php b/core/modules/file/tests/src/Functional/FileOnTranslatedEntityTest.php index cc4ae1d03596238a9789770b64af8bb50faef79f..2e22a69c35381cf2800f5e6a0521e834a7ef09bf 100644 --- a/core/modules/file/tests/src/Functional/FileOnTranslatedEntityTest.php +++ b/core/modules/file/tests/src/Functional/FileOnTranslatedEntityTest.php @@ -14,7 +14,7 @@ class FileOnTranslatedEntityTest extends FileFieldTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'content_translation']; + public static $modules = ['language', 'content_translation']; /** * The name of the file field used in the test. diff --git a/core/modules/file/tests/src/Functional/FilePrivateTest.php b/core/modules/file/tests/src/Functional/FilePrivateTest.php index db18ecc2081f11a3e3dc0821b72d5ca61cc4011e..2e5b0a1dac50c6c1e94ecf1a6bbe887b6815fa2c 100644 --- a/core/modules/file/tests/src/Functional/FilePrivateTest.php +++ b/core/modules/file/tests/src/Functional/FilePrivateTest.php @@ -20,7 +20,7 @@ class FilePrivateTest extends FileFieldTestBase { * * @var array */ - protected static $modules = ['node_access_test', 'field_test']; + public static $modules = ['node_access_test', 'field_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/tests/src/Functional/FileUploadJsonBasicAuthTest.php b/core/modules/file/tests/src/Functional/FileUploadJsonBasicAuthTest.php index 03ce0d2a335cd57a0fe58e3a6a38ef593afa6326..cef59f83cf2efcee4eaa74db13ab2e492a7ff224 100644 --- a/core/modules/file/tests/src/Functional/FileUploadJsonBasicAuthTest.php +++ b/core/modules/file/tests/src/Functional/FileUploadJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class FileUploadJsonBasicAuthTest extends FileUploadResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Hal/FileHalJsonAnonTest.php b/core/modules/file/tests/src/Functional/Hal/FileHalJsonAnonTest.php index 8a50ccdb321dbf07719588a745c0ebbd236a6f21..6a1310078caa0abee2eda5ff797908be90ef48d6 100644 --- a/core/modules/file/tests/src/Functional/Hal/FileHalJsonAnonTest.php +++ b/core/modules/file/tests/src/Functional/Hal/FileHalJsonAnonTest.php @@ -18,7 +18,7 @@ class FileHalJsonAnonTest extends FileResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Hal/FileHalJsonBasicAuthTest.php b/core/modules/file/tests/src/Functional/Hal/FileHalJsonBasicAuthTest.php index 691870c8618fa6221e80c155f59e3c41986370e9..910107172821f5c3b4f872f62cba694474ccd206 100644 --- a/core/modules/file/tests/src/Functional/Hal/FileHalJsonBasicAuthTest.php +++ b/core/modules/file/tests/src/Functional/Hal/FileHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FileHalJsonBasicAuthTest extends FileHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonBasicAuthTest.php b/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonBasicAuthTest.php index 0c325fe8d0584821655133adbb33a0b44652f4c0..647b85b9d65faceb3734c06ba133a8ff09564b8b 100644 --- a/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonBasicAuthTest.php +++ b/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FileUploadHalJsonBasicAuthTest extends FileUploadHalJsonTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonTestBase.php b/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonTestBase.php index c0e07720306532468064a7efeec5dca38f0d667b..0b98c33f17bd2dccb1f004793a8174097fb9927c 100644 --- a/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonTestBase.php +++ b/core/modules/file/tests/src/Functional/Hal/FileUploadHalJsonTestBase.php @@ -15,7 +15,7 @@ abstract class FileUploadHalJsonTestBase extends FileUploadResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/PrivateFileOnTranslatedEntityTest.php b/core/modules/file/tests/src/Functional/PrivateFileOnTranslatedEntityTest.php index 334c45a04dee22d966a1331261513ddb484c678a..7228e97a9151cae11d53f51f6113fb48851275ce 100644 --- a/core/modules/file/tests/src/Functional/PrivateFileOnTranslatedEntityTest.php +++ b/core/modules/file/tests/src/Functional/PrivateFileOnTranslatedEntityTest.php @@ -15,7 +15,7 @@ class PrivateFileOnTranslatedEntityTest extends FileFieldTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'content_translation']; + public static $modules = ['language', 'content_translation']; /** * The name of the file field used in the test. diff --git a/core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php b/core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php index f2e93b4cc552d7bee1cd63e94af9ab3fe5ca0746..e0e4be4b3cc26a21a1c773c4db6c54a4f456eb88 100644 --- a/core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php +++ b/core/modules/file/tests/src/Functional/RemoteFileSaveUploadTest.php @@ -14,7 +14,7 @@ class RemoteFileSaveUploadTest extends SaveUploadTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/tests/src/Functional/Rest/FileJsonBasicAuthTest.php b/core/modules/file/tests/src/Functional/Rest/FileJsonBasicAuthTest.php index 51caa2f08bc9c4174e9dd03622de1db20d8d2adf..87a65ac359d79dbd0e7abcb90c9a7da454a7a4b1 100644 --- a/core/modules/file/tests/src/Functional/Rest/FileJsonBasicAuthTest.php +++ b/core/modules/file/tests/src/Functional/Rest/FileJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FileJsonBasicAuthTest extends FileResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Rest/FileResourceTestBase.php b/core/modules/file/tests/src/Functional/Rest/FileResourceTestBase.php index 7fb7b3e305e8bc86bfcc0ddece59b15c3d6279ff..04b7c87ea37a4d0c2c14752675f48fefe46065a9 100644 --- a/core/modules/file/tests/src/Functional/Rest/FileResourceTestBase.php +++ b/core/modules/file/tests/src/Functional/Rest/FileResourceTestBase.php @@ -14,7 +14,7 @@ abstract class FileResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'user']; + public static $modules = ['file', 'user']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/Rest/FileXmlBasicAuthTest.php b/core/modules/file/tests/src/Functional/Rest/FileXmlBasicAuthTest.php index f1c403db21b8c1dde9af84c44bc17599e0470b53..66e9986dbc0fb0627100f203daa6bf5e007dff75 100644 --- a/core/modules/file/tests/src/Functional/Rest/FileXmlBasicAuthTest.php +++ b/core/modules/file/tests/src/Functional/Rest/FileXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class FileXmlBasicAuthTest extends FileResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Functional/SaveUploadFormTest.php b/core/modules/file/tests/src/Functional/SaveUploadFormTest.php index 9cf7c2bc75c924b85ded99615b82031415ef4656..e8b14e6ba1200b9446df6c8d0ba568574eb4363a 100644 --- a/core/modules/file/tests/src/Functional/SaveUploadFormTest.php +++ b/core/modules/file/tests/src/Functional/SaveUploadFormTest.php @@ -23,7 +23,7 @@ class SaveUploadFormTest extends FileManagedTestBase { * * @var array */ - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * An image file path for uploading. diff --git a/core/modules/file/tests/src/Functional/SaveUploadTest.php b/core/modules/file/tests/src/Functional/SaveUploadTest.php index da2bb569a6da3c765803f83a8b504b994a9d821f..bebf47e076e2821869a5ac31199dc648fd7d0069 100644 --- a/core/modules/file/tests/src/Functional/SaveUploadTest.php +++ b/core/modules/file/tests/src/Functional/SaveUploadTest.php @@ -21,7 +21,7 @@ class SaveUploadTest extends FileManagedTestBase { * * @var array */ - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * An image file path for uploading. diff --git a/core/modules/file/tests/src/Functional/Views/RelationshipUserFileDataTest.php b/core/modules/file/tests/src/Functional/Views/RelationshipUserFileDataTest.php index 2e384398a2ca880649886c474149b48e7af942ed..0169e0a6d845977460fd0c8b0737e5ab85d86e0f 100644 --- a/core/modules/file/tests/src/Functional/Views/RelationshipUserFileDataTest.php +++ b/core/modules/file/tests/src/Functional/Views/RelationshipUserFileDataTest.php @@ -21,7 +21,7 @@ class RelationshipUserFileDataTest extends ViewTestBase { * * @var array */ - protected static $modules = ['file', 'file_test_views', 'user']; + public static $modules = ['file', 'file_test_views', 'user']; /** * Views used by this test. diff --git a/core/modules/file/tests/src/FunctionalJavascript/FileFieldValidateTest.php b/core/modules/file/tests/src/FunctionalJavascript/FileFieldValidateTest.php index 2257e2e65e54a054d0fcd0c6fb7dde83aea795b0..99acc3712a01d7301a519e70ed7f57c49716823b 100644 --- a/core/modules/file/tests/src/FunctionalJavascript/FileFieldValidateTest.php +++ b/core/modules/file/tests/src/FunctionalJavascript/FileFieldValidateTest.php @@ -20,7 +20,7 @@ class FileFieldValidateTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'file']; + public static $modules = ['node', 'file']; /** * Test the validation message is displayed only once for ajax uploads. diff --git a/core/modules/file/tests/src/FunctionalJavascript/MaximumFileSizeExceededUploadTest.php b/core/modules/file/tests/src/FunctionalJavascript/MaximumFileSizeExceededUploadTest.php index 4c13e387a0e0a6a20070ddf2cc44dee0255957d2..45c8bf5eec0871051498de5c4186c6a17e4e9dd8 100644 --- a/core/modules/file/tests/src/FunctionalJavascript/MaximumFileSizeExceededUploadTest.php +++ b/core/modules/file/tests/src/FunctionalJavascript/MaximumFileSizeExceededUploadTest.php @@ -20,7 +20,7 @@ class MaximumFileSizeExceededUploadTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'file']; + public static $modules = ['node', 'file']; /** * The file system service. diff --git a/core/modules/file/tests/src/Kernel/AccessTest.php b/core/modules/file/tests/src/Kernel/AccessTest.php index 8c0f4401c55cdda17ce9e89c481e1c448cc895da..d875c1f6640bd466715fdb7f4657cedab29ce11f 100644 --- a/core/modules/file/tests/src/Kernel/AccessTest.php +++ b/core/modules/file/tests/src/Kernel/AccessTest.php @@ -18,7 +18,7 @@ class AccessTest extends KernelTestBase { * * @var array */ - protected static $modules = ['file', 'system', 'user']; + public static $modules = ['file', 'system', 'user']; /** * An authenticated user. diff --git a/core/modules/file/tests/src/Kernel/FileItemTest.php b/core/modules/file/tests/src/Kernel/FileItemTest.php index 2df20ef7e2265cda2bdc86c7606dc6a273b25e76..ac6cd8899fe5125368e3464eb3716c95240f7e70 100644 --- a/core/modules/file/tests/src/Kernel/FileItemTest.php +++ b/core/modules/file/tests/src/Kernel/FileItemTest.php @@ -24,7 +24,7 @@ class FileItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * Created file entity. diff --git a/core/modules/file/tests/src/Kernel/FileItemValidationTest.php b/core/modules/file/tests/src/Kernel/FileItemValidationTest.php index 627e3f51ef511d5217ded8440d252444144d6360..ba763b665411e7217fa49415821f1ef0379c7027 100644 --- a/core/modules/file/tests/src/Kernel/FileItemValidationTest.php +++ b/core/modules/file/tests/src/Kernel/FileItemValidationTest.php @@ -20,7 +20,7 @@ class FileItemValidationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'image', 'entity_test', 'field', 'user', 'system']; + public static $modules = ['file', 'image', 'entity_test', 'field', 'user', 'system']; /** * A user. diff --git a/core/modules/file/tests/src/Kernel/FileManagedUnitTestBase.php b/core/modules/file/tests/src/Kernel/FileManagedUnitTestBase.php index d2952b44c94348c77e2517d81de85ec378ec73de..7c43e9bfd07521351dab8d38d027808c08236c5e 100644 --- a/core/modules/file/tests/src/Kernel/FileManagedUnitTestBase.php +++ b/core/modules/file/tests/src/Kernel/FileManagedUnitTestBase.php @@ -18,7 +18,7 @@ abstract class FileManagedUnitTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['file_test', 'file', 'system', 'field', 'user']; + public static $modules = ['file_test', 'file', 'system', 'field', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/modules/file/tests/src/Kernel/Formatter/FileEntityFormatterTest.php b/core/modules/file/tests/src/Kernel/Formatter/FileEntityFormatterTest.php index a9234cb5eb2e26cc80499e020a2e60689468eb0c..743da8026ea1274c41eb13a228ecaf0854ce96ea 100644 --- a/core/modules/file/tests/src/Kernel/Formatter/FileEntityFormatterTest.php +++ b/core/modules/file/tests/src/Kernel/Formatter/FileEntityFormatterTest.php @@ -17,7 +17,7 @@ class FileEntityFormatterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'user']; + public static $modules = ['file', 'user']; /** * The files. diff --git a/core/modules/file/tests/src/Kernel/Migrate/MigrateFileStubTest.php b/core/modules/file/tests/src/Kernel/Migrate/MigrateFileStubTest.php index 9864ef9dc4ec6997de9f8968ce3cb9c1efba0869..296508637b7fa49d269e2506f42cf1a48d77a480 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/MigrateFileStubTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/MigrateFileStubTest.php @@ -17,7 +17,7 @@ class MigrateFileStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityDisplayTest.php b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityDisplayTest.php index da5c963af44ed1c055cf8acb958ef371570318cd..164168312dc71b1e67026e8092b9a803aceb07d7 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityDisplayTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityDisplayTest.php @@ -15,7 +15,7 @@ class MigrateUploadEntityDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityFormDisplayTest.php b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityFormDisplayTest.php index daf69e877f75037100416c908c4e051d9db28857..43a0ea6e474052c6e26e44373d259681dadceedf 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityFormDisplayTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadEntityFormDisplayTest.php @@ -15,7 +15,7 @@ class MigrateUploadEntityFormDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadFieldTest.php b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadFieldTest.php index 0aadd3a4b70bd1becccd7e591def964b1ec96116..50322338732556dbb3e5d04347f34f30783f0e09 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadFieldTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadFieldTest.php @@ -15,7 +15,7 @@ class MigrateUploadFieldTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php index f1e1178b3ad3df6c8e9c89f97cc64c86fc50f2ea..bf5807e68e5809eec62116f54efd5555f69972ce 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadInstanceTest.php @@ -15,7 +15,7 @@ class MigrateUploadInstanceTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php index 6e87ad9cbd84f577f76547f4d7aac641f32badcc..b8075030bd9d78e3cc711b9b086d485ce49376ee 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d6/MigrateUploadTest.php @@ -16,7 +16,7 @@ class MigrateUploadTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'menu_ui']; + public static $modules = ['language', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileTest.php b/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileTest.php index dc42b2bbe88a5d340a6dd4b8f66d80aab35a14d3..ea32df5e3483eeeb1ad5e074be17252bc53cfc75 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d7/MigrateFileTest.php @@ -17,7 +17,7 @@ class MigrateFileTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php b/core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php index 1249df9273448a68dbbd29571adc0d7c8420304b..63e284ff9849236c3efec9c5d94bc63c7b603d6e 100644 --- a/core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php +++ b/core/modules/file/tests/src/Kernel/Migrate/d7/MigratePrivateFileTest.php @@ -17,7 +17,7 @@ class MigratePrivateFileTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/FileTest.php b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/FileTest.php index f316f9035e1c96bf515000525876df3a934f65f9..33c430e2fdf276d11a5fde7883030b53c5d77eee 100644 --- a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/FileTest.php +++ b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/FileTest.php @@ -16,7 +16,7 @@ class FileTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'migrate_drupal']; + public static $modules = ['file', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadInstanceTest.php b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadInstanceTest.php index e2d34b4f0814be103082caba036b52b17466ddf9..711b36fec32d104e2c749022017f2387398a5543 100644 --- a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadInstanceTest.php +++ b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadInstanceTest.php @@ -16,7 +16,7 @@ class UploadInstanceTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'migrate_drupal']; + public static $modules = ['file', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadTest.php b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadTest.php index 7d5a6cfa2c4dfd5b7fc9fb74fb2aa613483ae66b..1f950b40cd19bd66b0dfdae45f120dddf93de159 100644 --- a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadTest.php +++ b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d6/UploadTest.php @@ -16,7 +16,7 @@ class UploadTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'migrate_drupal']; + public static $modules = ['file', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d7/FileTest.php b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d7/FileTest.php index d5f76549f1d71e2709c8678467dd0f3beeea2e24..b588ad789ce5ad19fc99c6be45f4b8dd7b8a57d1 100644 --- a/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d7/FileTest.php +++ b/core/modules/file/tests/src/Kernel/Plugin/migrate/source/d7/FileTest.php @@ -15,7 +15,7 @@ class FileTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'migrate_drupal']; + public static $modules = ['file', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/file/tests/src/Kernel/Views/ExtensionViewsFieldTest.php b/core/modules/file/tests/src/Kernel/Views/ExtensionViewsFieldTest.php index ffed1eda969a7e4efde03444f69a7b47d9178525..867ab7aaa10b610db718298ed44e9506bec3e181 100644 --- a/core/modules/file/tests/src/Kernel/Views/ExtensionViewsFieldTest.php +++ b/core/modules/file/tests/src/Kernel/Views/ExtensionViewsFieldTest.php @@ -18,7 +18,7 @@ class ExtensionViewsFieldTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'file_test_views', 'user']; + public static $modules = ['file', 'file_test_views', 'user']; /** * Views used by this test. diff --git a/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php b/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php index 419d22472b5e78d33d95e64a5303f4aaea054106..539cb5d41f460b3762820421609856ff04e2618d 100644 --- a/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php +++ b/core/modules/file/tests/src/Kernel/Views/FileViewsFieldAccessTest.php @@ -17,7 +17,7 @@ class FileViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'entity_test', 'language', 'user']; + public static $modules = ['file', 'entity_test', 'language', 'user']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/FilterAdminTest.php b/core/modules/filter/tests/src/Functional/FilterAdminTest.php index d4d6870195d8035147e0d91f9025de9bd18d6b7e..d6327688ef031e461d052ca2daf1137386645292 100644 --- a/core/modules/filter/tests/src/Functional/FilterAdminTest.php +++ b/core/modules/filter/tests/src/Functional/FilterAdminTest.php @@ -20,7 +20,7 @@ class FilterAdminTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'filter', 'node', 'filter_test_plugin', 'dblog']; + public static $modules = ['block', 'filter', 'node', 'filter_test_plugin', 'dblog']; /** * An user with administration permissions. diff --git a/core/modules/filter/tests/src/Functional/FilterCaptionTwigDebugTest.php b/core/modules/filter/tests/src/Functional/FilterCaptionTwigDebugTest.php index 1f05c7fcb40876b84d817ff2bd4e1fad82daac5c..f5423e7dd7140373f30c36b66b0bb66bd7372f20 100644 --- a/core/modules/filter/tests/src/Functional/FilterCaptionTwigDebugTest.php +++ b/core/modules/filter/tests/src/Functional/FilterCaptionTwigDebugTest.php @@ -18,7 +18,7 @@ class FilterCaptionTwigDebugTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system', 'filter']; + public static $modules = ['system', 'filter']; /** * @var \Drupal\filter\Plugin\FilterInterface[] diff --git a/core/modules/filter/tests/src/Functional/FilterDefaultFormatTest.php b/core/modules/filter/tests/src/Functional/FilterDefaultFormatTest.php index 0ebc6dd71d27b583aba52f5b414ce86677f4f1a0..e5a57482a53026870f746098b6a2b747aca53653 100644 --- a/core/modules/filter/tests/src/Functional/FilterDefaultFormatTest.php +++ b/core/modules/filter/tests/src/Functional/FilterDefaultFormatTest.php @@ -17,7 +17,7 @@ class FilterDefaultFormatTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * Tests if the default text format is accessible to users. diff --git a/core/modules/filter/tests/src/Functional/FilterFormatAccessTest.php b/core/modules/filter/tests/src/Functional/FilterFormatAccessTest.php index 0be97d8593a476f8b4a7c9e55688ac309b3bb307..f82d258ddfc48f93dcbe7d6a2711e4bbab772513 100644 --- a/core/modules/filter/tests/src/Functional/FilterFormatAccessTest.php +++ b/core/modules/filter/tests/src/Functional/FilterFormatAccessTest.php @@ -19,7 +19,7 @@ class FilterFormatAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'filter', 'node']; + public static $modules = ['block', 'filter', 'node']; /** * A user with administrative permissions. diff --git a/core/modules/filter/tests/src/Functional/FilterHooksTest.php b/core/modules/filter/tests/src/Functional/FilterHooksTest.php index 1f54d6b82470492daf701653bfece69a52da70c7..420a7b3855601b84cdaa110ecd7c16ae8b81ef95 100644 --- a/core/modules/filter/tests/src/Functional/FilterHooksTest.php +++ b/core/modules/filter/tests/src/Functional/FilterHooksTest.php @@ -17,7 +17,7 @@ class FilterHooksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'filter_test']; + public static $modules = ['node', 'filter_test']; /** * Tests hooks on format management. diff --git a/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php b/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php index 36c79eef16bfb74c093895a59e4c9e3357557303..065d4a6f792d7fe212c7ad70916780f3e0301384 100644 --- a/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php +++ b/core/modules/filter/tests/src/Functional/FilterHtmlImageSecureTest.php @@ -23,7 +23,7 @@ class FilterHtmlImageSecureTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'node', 'comment']; + public static $modules = ['filter', 'node', 'comment']; /** * An authenticated user. diff --git a/core/modules/filter/tests/src/Functional/FilterNoFormatTest.php b/core/modules/filter/tests/src/Functional/FilterNoFormatTest.php index f81ff22070dc226b5bfa652f19bbf9e1a8aac751..19c57ac00f6a6e60ce99f3c5adfb36e5d8ccc008 100644 --- a/core/modules/filter/tests/src/Functional/FilterNoFormatTest.php +++ b/core/modules/filter/tests/src/Functional/FilterNoFormatTest.php @@ -16,7 +16,7 @@ class FilterNoFormatTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * Tests text without format. diff --git a/core/modules/filter/tests/src/Functional/FilterSecurityTest.php b/core/modules/filter/tests/src/Functional/FilterSecurityTest.php index 8ffbced6f33ae0a7aae12c689047cf123e034f5c..4a5b7c49d28e85986f680f53b9d86ee04ce5ef3d 100644 --- a/core/modules/filter/tests/src/Functional/FilterSecurityTest.php +++ b/core/modules/filter/tests/src/Functional/FilterSecurityTest.php @@ -21,7 +21,7 @@ class FilterSecurityTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'filter_test']; + public static $modules = ['node', 'filter_test']; /** * A user with administrative permissions. diff --git a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonAnonTest.php b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonAnonTest.php index e3d5e67d894ae38fc80a46008cdbb007f3970f8f..3a7c6335f563fe50c0af3eed48f8cb2b80b8c2b0 100644 --- a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonAnonTest.php +++ b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonAnonTest.php @@ -15,7 +15,7 @@ class FilterFormatHalJsonAnonTest extends FilterFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonBasicAuthTest.php b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonBasicAuthTest.php index 3820dd6ed81170836cf75eee74d0d606c8046ad9..c76293d9cc33026b557aa7078445442424a8f5e4 100644 --- a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonBasicAuthTest.php +++ b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class FilterFormatHalJsonBasicAuthTest extends FilterFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonCookieTest.php b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonCookieTest.php index 052f604989184cbd38049685d1914324d6261bd9..d2a8654c593d978c0b88e2abfc27511145be94b2 100644 --- a/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonCookieTest.php +++ b/core/modules/filter/tests/src/Functional/Hal/FilterFormatHalJsonCookieTest.php @@ -15,7 +15,7 @@ class FilterFormatHalJsonCookieTest extends FilterFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/Rest/FilterFormatJsonBasicAuthTest.php b/core/modules/filter/tests/src/Functional/Rest/FilterFormatJsonBasicAuthTest.php index 0a63f8fcbb0473241539178bdb9bf8d0a8d7bcb3..53ba6ce895a7fc045e23af7876c3daa0f6a287c3 100644 --- a/core/modules/filter/tests/src/Functional/Rest/FilterFormatJsonBasicAuthTest.php +++ b/core/modules/filter/tests/src/Functional/Rest/FilterFormatJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class FilterFormatJsonBasicAuthTest extends FilterFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php b/core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php index 05a0c9fe190c36e0869b47927356507580c5d9a9..5a0174a65a56691323b95613cb47dec4c55deae4 100644 --- a/core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php +++ b/core/modules/filter/tests/src/Functional/Rest/FilterFormatResourceTestBase.php @@ -10,7 +10,7 @@ abstract class FilterFormatResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = []; + public static $modules = []; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Functional/Rest/FilterFormatXmlBasicAuthTest.php b/core/modules/filter/tests/src/Functional/Rest/FilterFormatXmlBasicAuthTest.php index 10a0bcd4f29e073695b76ecde6034c24cbe8729d..6c0c62d52b7832e0a5e7df4b21dcbd9aa05a4cc7 100644 --- a/core/modules/filter/tests/src/Functional/Rest/FilterFormatXmlBasicAuthTest.php +++ b/core/modules/filter/tests/src/Functional/Rest/FilterFormatXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class FilterFormatXmlBasicAuthTest extends FilterFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Kernel/FilterAPITest.php b/core/modules/filter/tests/src/Kernel/FilterAPITest.php index df0c778dd388d1937e987e37fa2a52c81e3dd341..a26005db192b26ce23028b8dee6147f582da102f 100644 --- a/core/modules/filter/tests/src/Kernel/FilterAPITest.php +++ b/core/modules/filter/tests/src/Kernel/FilterAPITest.php @@ -19,7 +19,7 @@ */ class FilterAPITest extends EntityKernelTestBase { - protected static $modules = ['system', 'filter', 'filter_test', 'user']; + public static $modules = ['system', 'filter', 'filter_test', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/modules/filter/tests/src/Kernel/FilterCrudTest.php b/core/modules/filter/tests/src/Kernel/FilterCrudTest.php index b544bcbea8894555572c97f335ef681a329414cf..b73b180bfe047e7a5e9295e55d4f752ac79b4d31 100644 --- a/core/modules/filter/tests/src/Kernel/FilterCrudTest.php +++ b/core/modules/filter/tests/src/Kernel/FilterCrudTest.php @@ -17,7 +17,7 @@ class FilterCrudTest extends KernelTestBase { * * @var array */ - protected static $modules = ['filter', 'filter_test', 'system', 'user']; + public static $modules = ['filter', 'filter_test', 'system', 'user']; /** * Tests CRUD operations for text formats and filters. diff --git a/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php b/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php index 57e5ea5982a5f4879c9f92541b9b16327aaeecb3..e16bddade560afa6191d1c8e1cd22e39d53e5de7 100644 --- a/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php +++ b/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php @@ -13,7 +13,7 @@ */ class FilterDefaultConfigTest extends KernelTestBase { - protected static $modules = ['system', 'user', 'filter', 'filter_test']; + public static $modules = ['system', 'user', 'filter', 'filter_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/filter/tests/src/Kernel/FilterKernelTest.php b/core/modules/filter/tests/src/Kernel/FilterKernelTest.php index bf2d57125c04e70ab07bf0ed42950f27bb30ff0a..b8626aedae4268c6911f9eb473d5a7f956aaa67a 100644 --- a/core/modules/filter/tests/src/Kernel/FilterKernelTest.php +++ b/core/modules/filter/tests/src/Kernel/FilterKernelTest.php @@ -22,7 +22,7 @@ class FilterKernelTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'filter']; + public static $modules = ['system', 'filter']; /** * @var \Drupal\filter\Plugin\FilterInterface[] diff --git a/core/modules/filter/tests/src/Kernel/FilterSettingsTest.php b/core/modules/filter/tests/src/Kernel/FilterSettingsTest.php index 047d7d63ef7738e801d51df5c246d843155ed97e..f77efac85ade5532808500e242490fe6bbdb945d 100644 --- a/core/modules/filter/tests/src/Kernel/FilterSettingsTest.php +++ b/core/modules/filter/tests/src/Kernel/FilterSettingsTest.php @@ -17,7 +17,7 @@ class FilterSettingsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * Tests explicit and implicit default settings for filters. diff --git a/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterFormatTest.php b/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterFormatTest.php index ac661763a035f1aa00e64570ff68e2c68a287619..0f54245c1af4c1f2a6f618f9d74e7a053439257c 100644 --- a/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterFormatTest.php +++ b/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterFormatTest.php @@ -16,7 +16,7 @@ class MigrateFilterFormatTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterSettingsTest.php b/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterSettingsTest.php index 7d27269b751600561499a7012516e379e8ca0d94..e58861dc0349f4e7984e4048535b10029cbc807f 100644 --- a/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterSettingsTest.php +++ b/core/modules/filter/tests/src/Kernel/Migrate/d7/MigrateFilterSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateFilterSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterIdTest.php b/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterIdTest.php index 667fda394be4f0e48cb63143ac6f218d546c8275..eb5f7eacab463ca98ff6c01045a0d586e18d67b9 100644 --- a/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterIdTest.php +++ b/core/modules/filter/tests/src/Kernel/Plugin/migrate/process/FilterIdTest.php @@ -19,7 +19,7 @@ class FilterIdTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * The mocked MigrateExecutable. diff --git a/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d6/FilterFormatTest.php b/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d6/FilterFormatTest.php index 18448d1f6e3bc855076152176e18a507680d401e..a3e708b7b9a8dcf27cbb059f02cb8fd28321ab0e 100644 --- a/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d6/FilterFormatTest.php +++ b/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d6/FilterFormatTest.php @@ -16,7 +16,7 @@ class FilterFormatTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter', 'migrate_drupal']; + public static $modules = ['filter', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d7/FilterFormatTest.php b/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d7/FilterFormatTest.php index d2a2d48b5fbf99558d6a96645552a78a76ea3d9c..2dc9ce7c51f97ec46f7944e1e461e8cf8096ebd4 100644 --- a/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d7/FilterFormatTest.php +++ b/core/modules/filter/tests/src/Kernel/Plugin/migrate/source/d7/FilterFormatTest.php @@ -16,7 +16,7 @@ class FilterFormatTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter', 'migrate_drupal']; + public static $modules = ['filter', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php b/core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php index d4c8ed7c056540a4454385816e3737efbbeb6fb9..8fca62e965b247f44f869935795c87e8c692c748 100644 --- a/core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php +++ b/core/modules/filter/tests/src/Kernel/TextFormatElementFormTest.php @@ -28,7 +28,7 @@ class TextFormatElementFormTest extends KernelTestBase implements FormInterface * * @var array */ - protected static $modules = ['system', 'user', 'filter', 'filter_test', 'editor']; + public static $modules = ['system', 'user', 'filter', 'filter_test', 'editor']; /** * Sets up the test. diff --git a/core/modules/forum/tests/src/Functional/ForumBlockTest.php b/core/modules/forum/tests/src/Functional/ForumBlockTest.php index d5105189e3230e41200d2169047156e9ad965c66..b231f6d0eace0ca786cec3667e3a6552694c5316 100644 --- a/core/modules/forum/tests/src/Functional/ForumBlockTest.php +++ b/core/modules/forum/tests/src/Functional/ForumBlockTest.php @@ -18,7 +18,7 @@ class ForumBlockTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['forum', 'block']; + public static $modules = ['forum', 'block']; /** * A user with various administrative privileges. diff --git a/core/modules/forum/tests/src/Functional/ForumIndexTest.php b/core/modules/forum/tests/src/Functional/ForumIndexTest.php index 0fa3f7a670be300d94a996af9c73f36ee69041ca..5d0ccdff3a70a723234611347e8e401807c44050 100644 --- a/core/modules/forum/tests/src/Functional/ForumIndexTest.php +++ b/core/modules/forum/tests/src/Functional/ForumIndexTest.php @@ -16,7 +16,7 @@ class ForumIndexTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'comment', 'forum']; + public static $modules = ['taxonomy', 'comment', 'forum']; protected function setUp() { parent::setUp(); diff --git a/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php b/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php index 9902fa88a731da4d6967ef26b7d01e1c23e309da..9849084c6cd642a39237caa8256ee0c89faacff0 100644 --- a/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php +++ b/core/modules/forum/tests/src/Functional/ForumNodeAccessTest.php @@ -17,7 +17,7 @@ class ForumNodeAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'forum', 'taxonomy', 'tracker', 'node_access_test', 'block']; + public static $modules = ['node', 'comment', 'forum', 'taxonomy', 'tracker', 'node_access_test', 'block']; protected function setUp() { parent::setUp(); diff --git a/core/modules/forum/tests/src/Functional/ForumTest.php b/core/modules/forum/tests/src/Functional/ForumTest.php index cf4ef5e7b5539f99350f625f5242fd4118cb547e..af331916b9e86e3c9e4e7aedd4474d9a92f36899 100644 --- a/core/modules/forum/tests/src/Functional/ForumTest.php +++ b/core/modules/forum/tests/src/Functional/ForumTest.php @@ -25,7 +25,7 @@ class ForumTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'comment', 'forum', 'node', 'block', 'menu_ui', 'help']; + public static $modules = ['taxonomy', 'comment', 'forum', 'node', 'block', 'menu_ui', 'help']; /** * A user with various administrative privileges. diff --git a/core/modules/forum/tests/src/Functional/ForumUninstallTest.php b/core/modules/forum/tests/src/Functional/ForumUninstallTest.php index 8b6bd4b64739164efeec6aeb4518272d86ade080..c2d3848ffcaf29a5b2939aedc0964199bdd07424 100644 --- a/core/modules/forum/tests/src/Functional/ForumUninstallTest.php +++ b/core/modules/forum/tests/src/Functional/ForumUninstallTest.php @@ -21,7 +21,7 @@ class ForumUninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['forum']; + public static $modules = ['forum']; /** * Tests if forum module uninstallation properly deletes the field. diff --git a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php b/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php index 909bd3ab98e80395b294a0c23c74aa0a9fd0e5a9..992500e1f9d5a0242d1a0a464852c86bc5170156 100644 --- a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php +++ b/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php @@ -19,7 +19,7 @@ class ForumIntegrationTest extends ViewTestBase { * * @var array */ - protected static $modules = ['forum_test_views']; + public static $modules = ['forum_test_views']; /** * Views used by this test. diff --git a/core/modules/forum/tests/src/Kernel/ForumValidationTest.php b/core/modules/forum/tests/src/Kernel/ForumValidationTest.php index 2bbac728250f61bb1c472424a646b95c6d34a6b0..9b9661b5a2c6254a827d30d46e97b492d809f50e 100644 --- a/core/modules/forum/tests/src/Kernel/ForumValidationTest.php +++ b/core/modules/forum/tests/src/Kernel/ForumValidationTest.php @@ -18,7 +18,7 @@ class ForumValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node', 'options', 'comment', 'taxonomy', 'forum']; + public static $modules = ['node', 'options', 'comment', 'taxonomy', 'forum']; /** * Tests the forum validation constraints. diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php index 2bbc742e3cff9a60f54a2339ef3f4c56e57066ba..302c3d1aee3042b9181a1a383a7cd7028e1d1f4f 100644 --- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php +++ b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php @@ -17,7 +17,7 @@ class MigrateForumConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'forum', 'taxonomy']; + public static $modules = ['comment', 'forum', 'taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php index d71441c142e7f9eb8872a07dc4f9634e5f98981d..6f5d48c1dd4e7bdd1a70253245f8bdd5a9dc0d3d 100644 --- a/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php +++ b/core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumTest.php @@ -19,7 +19,7 @@ class MigrateForumTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'forum', 'menu_ui', diff --git a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php index 891f3ae5801de1ec7424a5fdad967be1827eb7d0..cd1c7fc3ea92d2234b53f3455410b953c1d79e14 100644 --- a/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php +++ b/core/modules/forum/tests/src/Kernel/Migrate/d7/MigrateForumSettingsTest.php @@ -12,7 +12,7 @@ class MigrateForumSettingsTest extends MigrateDrupal7TestBase { // Don't alphabetize these. They're in dependency order. - protected static $modules = [ + public static $modules = [ 'comment', 'field', 'filter', diff --git a/core/modules/hal/tests/src/Kernel/EntityTranslationNormalizeTest.php b/core/modules/hal/tests/src/Kernel/EntityTranslationNormalizeTest.php index fa049c83531be412a0f5e5bd46335034b57f11fa..2ebff2024706d8901581f5beab82abaa943fbf8f 100644 --- a/core/modules/hal/tests/src/Kernel/EntityTranslationNormalizeTest.php +++ b/core/modules/hal/tests/src/Kernel/EntityTranslationNormalizeTest.php @@ -19,7 +19,7 @@ class EntityTranslationNormalizeTest extends NormalizerTestBase { * * @var array */ - protected static $modules = ['node', 'content_translation']; + public static $modules = ['node', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php b/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php index 8f990564b91fa6c76bc75169c93155dffe15ef1c..edcf3dca1f845b3faf43ca3aebb1982bb3a94232 100644 --- a/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php +++ b/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php @@ -16,7 +16,7 @@ class FileNormalizeTest extends NormalizerTestBase { * * @var array */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * {@inheritdoc} diff --git a/core/modules/hal/tests/src/Kernel/HalLinkManagerTest.php b/core/modules/hal/tests/src/Kernel/HalLinkManagerTest.php index 35301b30a6e1b57aed51c14b81fff9d23aff040e..05a6b39f1ee78deffbb0372b17b8cae61c8be11a 100644 --- a/core/modules/hal/tests/src/Kernel/HalLinkManagerTest.php +++ b/core/modules/hal/tests/src/Kernel/HalLinkManagerTest.php @@ -20,7 +20,7 @@ class HalLinkManagerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'hal_test', 'serialization', 'system', 'node', 'user', 'field']; + public static $modules = ['hal', 'hal_test', 'serialization', 'system', 'node', 'user', 'field']; /** * {@inheritdoc} diff --git a/core/modules/hal/tests/src/Kernel/NormalizerTestBase.php b/core/modules/hal/tests/src/Kernel/NormalizerTestBase.php index 5eaa671711bf5db4d9f596295a8d6042cfa2ff66..ef51a077c94f72977e95814c66e5293e75a67e53 100644 --- a/core/modules/hal/tests/src/Kernel/NormalizerTestBase.php +++ b/core/modules/hal/tests/src/Kernel/NormalizerTestBase.php @@ -17,7 +17,7 @@ abstract class NormalizerTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field', 'hal', 'language', 'serialization', 'system', 'text', 'user', 'filter']; + public static $modules = ['entity_test', 'field', 'hal', 'language', 'serialization', 'system', 'text', 'user', 'filter']; /** * The mock serializer. diff --git a/core/modules/help/tests/src/Functional/ExperimentalHelpTest.php b/core/modules/help/tests/src/Functional/ExperimentalHelpTest.php index b30d72f2d1d8487452fd1ed403d5eef313059089..0eabbda56ba5a252ef348f9a254337f6920cd608 100644 --- a/core/modules/help/tests/src/Functional/ExperimentalHelpTest.php +++ b/core/modules/help/tests/src/Functional/ExperimentalHelpTest.php @@ -19,7 +19,7 @@ class ExperimentalHelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['help', 'experimental_module_test', 'help_page_test']; + public static $modules = ['help', 'experimental_module_test', 'help_page_test']; /** * The admin user. diff --git a/core/modules/help/tests/src/Functional/HelpBlockTest.php b/core/modules/help/tests/src/Functional/HelpBlockTest.php index 0354dc6055911d200b875bc76279cb07c2a11ad8..81c4fc15329a69776d3691a8ea9a7dc70f90a551 100644 --- a/core/modules/help/tests/src/Functional/HelpBlockTest.php +++ b/core/modules/help/tests/src/Functional/HelpBlockTest.php @@ -14,7 +14,7 @@ class HelpBlockTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['help', 'help_page_test', 'block', 'more_help_page_test']; + public static $modules = ['help', 'help_page_test', 'block', 'more_help_page_test']; /** * The help block instance. diff --git a/core/modules/help/tests/src/Functional/HelpTest.php b/core/modules/help/tests/src/Functional/HelpTest.php index bafbe19ba9db5a7dd7b3553c3d7cfabe3c662fe5..3965b53cde9a4368efc714635de480bce527e957 100644 --- a/core/modules/help/tests/src/Functional/HelpTest.php +++ b/core/modules/help/tests/src/Functional/HelpTest.php @@ -20,7 +20,7 @@ class HelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['help_test', 'help_page_test']; + public static $modules = ['help_test', 'help_page_test']; /** * Use the Standard profile to test help implementations of many core modules. diff --git a/core/modules/help/tests/src/Functional/NoHelpTest.php b/core/modules/help/tests/src/Functional/NoHelpTest.php index 3b6b0399498e63124a22952421ff6af09fe4894f..5df945e35cd059c284119b05f1df189fad29b906 100644 --- a/core/modules/help/tests/src/Functional/NoHelpTest.php +++ b/core/modules/help/tests/src/Functional/NoHelpTest.php @@ -18,7 +18,7 @@ class NoHelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['help', 'menu_test']; + public static $modules = ['help', 'menu_test']; /** * The user who will be created. diff --git a/core/modules/help/tests/src/Kernel/HelpEmptyPageTest.php b/core/modules/help/tests/src/Kernel/HelpEmptyPageTest.php index 542100eaadf2c5284d12637483e2ce0f20dadaa5..070a95451b3bf3a888ba94a735201af8833236b4 100644 --- a/core/modules/help/tests/src/Kernel/HelpEmptyPageTest.php +++ b/core/modules/help/tests/src/Kernel/HelpEmptyPageTest.php @@ -17,7 +17,7 @@ class HelpEmptyPageTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'help_test', 'user']; + public static $modules = ['system', 'help_test', 'user']; /** * {@inheritdoc} diff --git a/core/modules/history/tests/src/Functional/HistoryTest.php b/core/modules/history/tests/src/Functional/HistoryTest.php index b13e734c7d4719608a34446a640380517cbab038..415541ed60f7cd2b3aca9eff7d2e3e6c8dc81d92 100644 --- a/core/modules/history/tests/src/Functional/HistoryTest.php +++ b/core/modules/history/tests/src/Functional/HistoryTest.php @@ -21,7 +21,7 @@ class HistoryTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'history']; + public static $modules = ['node', 'history']; /** * The main user for testing. diff --git a/core/modules/history/tests/src/Kernel/Views/HistoryTimestampTest.php b/core/modules/history/tests/src/Kernel/Views/HistoryTimestampTest.php index e4b8ed3c3e556da9b63bdfd6d5d4a7e1c140b2ad..5aebaf43a1df251277425b4ced2799f3b8475e6c 100644 --- a/core/modules/history/tests/src/Kernel/Views/HistoryTimestampTest.php +++ b/core/modules/history/tests/src/Kernel/Views/HistoryTimestampTest.php @@ -21,7 +21,7 @@ class HistoryTimestampTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['history', 'node']; + public static $modules = ['history', 'node']; /** * Views used by this test. diff --git a/core/modules/image/src/Tests/ImageFieldTestBase.php b/core/modules/image/src/Tests/ImageFieldTestBase.php index 6298f09f066670b94648bfa80d203c976c473e37..a1611cb3522df5732de4031722cf2e846b6eac44 100644 --- a/core/modules/image/src/Tests/ImageFieldTestBase.php +++ b/core/modules/image/src/Tests/ImageFieldTestBase.php @@ -36,7 +36,7 @@ abstract class ImageFieldTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'image', 'field_ui', 'image_module_test']; + public static $modules = ['node', 'image', 'field_ui', 'image_module_test']; /** * An user with permissions to administer content types and image styles. diff --git a/core/modules/image/tests/src/Functional/FileMoveTest.php b/core/modules/image/tests/src/Functional/FileMoveTest.php index f43e93aeff303464c95b8da7e11f2c13564e4cd2..3cf3be71b8046a2e4444efcdf7cd8fce7a732263 100644 --- a/core/modules/image/tests/src/Functional/FileMoveTest.php +++ b/core/modules/image/tests/src/Functional/FileMoveTest.php @@ -24,7 +24,7 @@ class FileMoveTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['image']; + public static $modules = ['image']; /** * Tests moving a randomly generated image. diff --git a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonAnonTest.php b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonAnonTest.php index cb61897da5d98a1e555e5cfb46b220645703942d..61da51f7d0eca5a58c150f45ca5304a8980443f7 100644 --- a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonAnonTest.php +++ b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ImageStyleHalJsonAnonTest extends ImageStyleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonBasicAuthTest.php b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonBasicAuthTest.php index 7cb23a8924e239f4f5b12ef663c9ba0e1175ef75..a6ff4941a37aea66acc6db324adca3c8b402d863 100644 --- a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonBasicAuthTest.php +++ b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ImageStyleHalJsonBasicAuthTest extends ImageStyleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonCookieTest.php b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonCookieTest.php index 122b5684fcf574939c0ff784c60f8b1904b1db3a..731e356c92290303522015288ef16f5e974edc04 100644 --- a/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonCookieTest.php +++ b/core/modules/image/tests/src/Functional/Hal/ImageStyleHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ImageStyleHalJsonCookieTest extends ImageStyleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Functional/ImageDimensionsTest.php b/core/modules/image/tests/src/Functional/ImageDimensionsTest.php index 7355fa0d2a8ec898e68f67bab2223f62752c359f..4a11bf956eb55af909b3e20062bc7a8b993ced5b 100644 --- a/core/modules/image/tests/src/Functional/ImageDimensionsTest.php +++ b/core/modules/image/tests/src/Functional/ImageDimensionsTest.php @@ -23,7 +23,7 @@ class ImageDimensionsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['image', 'image_module_test']; + public static $modules = ['image', 'image_module_test']; protected $profile = 'testing'; diff --git a/core/modules/image/tests/src/Functional/ImageEffectsTest.php b/core/modules/image/tests/src/Functional/ImageEffectsTest.php index df786e8f5041ab72c52b3053a7f9d4177dc51ade..f6b4ab36e92f2a95fba0dc5499e682a110a88726 100644 --- a/core/modules/image/tests/src/Functional/ImageEffectsTest.php +++ b/core/modules/image/tests/src/Functional/ImageEffectsTest.php @@ -17,7 +17,7 @@ class ImageEffectsTest extends ToolkitTestBase { * * @var array */ - protected static $modules = ['image', 'image_test', 'image_module_test']; + public static $modules = ['image', 'image_test', 'image_module_test']; /** * The image effect manager. diff --git a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php index 5f1149e7235b2ffdeb146d0135ce8f39f7553684..66899fb8257ec67e63ad6da91f341ebea829e390 100644 --- a/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php +++ b/core/modules/image/tests/src/Functional/ImageFieldDefaultImagesTest.php @@ -29,7 +29,7 @@ class ImageFieldDefaultImagesTest extends ImageFieldTestBase { * * @var array */ - protected static $modules = ['field_ui']; + public static $modules = ['field_ui']; /** * Tests CRUD for fields and field storages with default images. diff --git a/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php b/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php index d4c617a990d2f6b61051c2ac0bada275b9ddc574..ce924f426aabe634eb53a6ff20d788d3cd5770f0 100644 --- a/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php +++ b/core/modules/image/tests/src/Functional/ImageFieldDisplayTest.php @@ -29,7 +29,7 @@ class ImageFieldDisplayTest extends ImageFieldTestBase { * * @var array */ - protected static $modules = ['field_ui']; + public static $modules = ['field_ui']; /** * Test image formatters on node display for public files. diff --git a/core/modules/image/tests/src/Functional/ImageFieldTestBase.php b/core/modules/image/tests/src/Functional/ImageFieldTestBase.php index 7b4c51449891c46b19524de71b549deb08be243d..ef79de850372101895e0068ef6f903ddf74ec08a 100644 --- a/core/modules/image/tests/src/Functional/ImageFieldTestBase.php +++ b/core/modules/image/tests/src/Functional/ImageFieldTestBase.php @@ -31,7 +31,7 @@ abstract class ImageFieldTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'image', 'field_ui', 'image_module_test']; + public static $modules = ['node', 'image', 'field_ui', 'image_module_test']; /** * An user with permissions to administer content types and image styles. diff --git a/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php b/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php index a902c016b4736a70f850641890a8c8e5977f1c95..15ca7582880dc605779758892cd26e2551b0187e 100644 --- a/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php +++ b/core/modules/image/tests/src/Functional/ImageOnTranslatedEntityTest.php @@ -20,7 +20,7 @@ class ImageOnTranslatedEntityTest extends ImageFieldTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'content_translation', 'field_ui']; + public static $modules = ['language', 'content_translation', 'field_ui']; /** * The name of the image field used in the test. diff --git a/core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php b/core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php index 4bea9c6e92d382ad4275cbed1c014fe6eefcef40..c5b81e7ce3f65253f49ff156edc651f558dbaba6 100644 --- a/core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php +++ b/core/modules/image/tests/src/Functional/ImageStylesPathAndUrlTest.php @@ -24,7 +24,7 @@ class ImageStylesPathAndUrlTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['image', 'image_module_test', 'language']; + public static $modules = ['image', 'image_module_test', 'language']; /** * The image style. diff --git a/core/modules/image/tests/src/Functional/QuickEditImageControllerTest.php b/core/modules/image/tests/src/Functional/QuickEditImageControllerTest.php index 57c38983c9aef29f1a2c14225a81544912ad4bf9..a037d4808d66d725c746c9896bc6802bea80b71d 100644 --- a/core/modules/image/tests/src/Functional/QuickEditImageControllerTest.php +++ b/core/modules/image/tests/src/Functional/QuickEditImageControllerTest.php @@ -22,7 +22,7 @@ class QuickEditImageControllerTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'image', 'quickedit']; + public static $modules = ['node', 'image', 'quickedit']; /** * The machine name of our image field. diff --git a/core/modules/image/tests/src/Functional/Rest/ImageStyleJsonBasicAuthTest.php b/core/modules/image/tests/src/Functional/Rest/ImageStyleJsonBasicAuthTest.php index 02efc3b89fff834845e3c0c9581145cab2b490ff..ab6ae57d5323f065d236d87e8670e883bc6e9d92 100644 --- a/core/modules/image/tests/src/Functional/Rest/ImageStyleJsonBasicAuthTest.php +++ b/core/modules/image/tests/src/Functional/Rest/ImageStyleJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ImageStyleJsonBasicAuthTest extends ImageStyleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php b/core/modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php index 451999dab60ecff58aebd2dedd7fd9418bfb58b6..a2a84312b8ecc11ec09e0c29c87a0da6f6f45ec7 100644 --- a/core/modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php +++ b/core/modules/image/tests/src/Functional/Rest/ImageStyleResourceTestBase.php @@ -13,7 +13,7 @@ abstract class ImageStyleResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['image']; + public static $modules = ['image']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Functional/Rest/ImageStyleXmlBasicAuthTest.php b/core/modules/image/tests/src/Functional/Rest/ImageStyleXmlBasicAuthTest.php index cad07a265a008bafcc41a35fe89d01bf441d330f..cd376a3140e6b3653487e5886471a1497c5d629c 100644 --- a/core/modules/image/tests/src/Functional/Rest/ImageStyleXmlBasicAuthTest.php +++ b/core/modules/image/tests/src/Functional/Rest/ImageStyleXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ImageStyleXmlBasicAuthTest extends ImageStyleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldTestBase.php b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldTestBase.php index efe566a19a33b3010f68c991ee016362234a4d0f..4e21f6aca7a24e1dbf56e13da05186d8ea16a41a 100644 --- a/core/modules/image/tests/src/FunctionalJavascript/ImageFieldTestBase.php +++ b/core/modules/image/tests/src/FunctionalJavascript/ImageFieldTestBase.php @@ -21,7 +21,7 @@ abstract class ImageFieldTestBase extends WebDriverTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'node', 'image', 'field_ui', diff --git a/core/modules/image/tests/src/FunctionalJavascript/QuickEditImageTest.php b/core/modules/image/tests/src/FunctionalJavascript/QuickEditImageTest.php index eaf11a2b2d652552932b9bfb899e7c014aa49ca1..b4444eff2b0972562fe9904e92b82c6a0651fbdd 100644 --- a/core/modules/image/tests/src/FunctionalJavascript/QuickEditImageTest.php +++ b/core/modules/image/tests/src/FunctionalJavascript/QuickEditImageTest.php @@ -20,7 +20,7 @@ class QuickEditImageTest extends QuickEditJavascriptTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'image', 'field_ui']; + public static $modules = ['node', 'image', 'field_ui']; /** * A user with permissions to edit Articles and use Quick Edit. diff --git a/core/modules/image/tests/src/Kernel/ImageFormatterTest.php b/core/modules/image/tests/src/Kernel/ImageFormatterTest.php index 52d61e9c53916a0199f558b9853b3dc8448700b7..1baa83019977488483eb018db5dac818ff4447df 100644 --- a/core/modules/image/tests/src/Kernel/ImageFormatterTest.php +++ b/core/modules/image/tests/src/Kernel/ImageFormatterTest.php @@ -22,7 +22,7 @@ class ImageFormatterTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['file', 'image']; + public static $modules = ['file', 'image']; /** * @var string diff --git a/core/modules/image/tests/src/Kernel/ImageImportTest.php b/core/modules/image/tests/src/Kernel/ImageImportTest.php index 5d013d3135f30aaf004b32c8cdf8a995dd4c818a..9cf69570b68cb60d7a20ca39c4c099e13892a004 100644 --- a/core/modules/image/tests/src/Kernel/ImageImportTest.php +++ b/core/modules/image/tests/src/Kernel/ImageImportTest.php @@ -15,7 +15,7 @@ class ImageImportTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'image', 'image_module_test']; + public static $modules = ['system', 'image', 'image_module_test']; /** * Tests importing image styles. diff --git a/core/modules/image/tests/src/Kernel/ImageItemTest.php b/core/modules/image/tests/src/Kernel/ImageItemTest.php index aa41ec292a4ba30aa07f3c5edf54ca209e5e8856..9621423823d566cb4e130d9fe59e842c2f6c9157 100644 --- a/core/modules/image/tests/src/Kernel/ImageItemTest.php +++ b/core/modules/image/tests/src/Kernel/ImageItemTest.php @@ -25,7 +25,7 @@ class ImageItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['file', 'image']; + public static $modules = ['file', 'image']; /** * Created file entity. diff --git a/core/modules/image/tests/src/Kernel/ImageStyleCustomStreamWrappersTest.php b/core/modules/image/tests/src/Kernel/ImageStyleCustomStreamWrappersTest.php index 89a82c4e507f84ef12e47ab9878d89824ad96327..6a45a98680f95cb4cab993ee4c5f59d053c0dd58 100644 --- a/core/modules/image/tests/src/Kernel/ImageStyleCustomStreamWrappersTest.php +++ b/core/modules/image/tests/src/Kernel/ImageStyleCustomStreamWrappersTest.php @@ -23,7 +23,7 @@ class ImageStyleCustomStreamWrappersTest extends KernelTestBase { * * @var string[] */ - protected static $modules = ['system', 'image']; + public static $modules = ['system', 'image']; /** * A testing image style entity. diff --git a/core/modules/image/tests/src/Kernel/ImageStyleIntegrationTest.php b/core/modules/image/tests/src/Kernel/ImageStyleIntegrationTest.php index 09c9247bbb8599308e7039a8acb2fe081a3b30a4..e471c99164a1f42fb82a89ddae2cea778448b273 100644 --- a/core/modules/image/tests/src/Kernel/ImageStyleIntegrationTest.php +++ b/core/modules/image/tests/src/Kernel/ImageStyleIntegrationTest.php @@ -20,7 +20,7 @@ class ImageStyleIntegrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['image', 'file', 'field', 'system', 'user', 'node']; + public static $modules = ['image', 'file', 'field', 'system', 'user', 'node']; /** * Tests the dependency between ImageStyle and entity display components. diff --git a/core/modules/image/tests/src/Kernel/ImageThemeFunctionTest.php b/core/modules/image/tests/src/Kernel/ImageThemeFunctionTest.php index f44a5fdd6a498f330369cf9023526e8602c3d90d..bffd6545f6d33a90d237aa291800d6e7c77de5da 100644 --- a/core/modules/image/tests/src/Kernel/ImageThemeFunctionTest.php +++ b/core/modules/image/tests/src/Kernel/ImageThemeFunctionTest.php @@ -29,7 +29,7 @@ class ImageThemeFunctionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field', 'file', 'image', 'system', 'simpletest', 'user']; + public static $modules = ['entity_test', 'field', 'file', 'image', 'system', 'simpletest', 'user']; /** * Created file entity. diff --git a/core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php b/core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php index 2bb45b57f2acbd1837527b3866c7c5eb41a8da4a..7fc0b0bafb3423aaae9818a588ad7b388d398acc 100644 --- a/core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php +++ b/core/modules/image/tests/src/Kernel/Migrate/d6/MigrateImageTest.php @@ -21,7 +21,7 @@ class MigrateImageTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageSettingsTest.php b/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageSettingsTest.php index bb8ee2c82f53d06bf946c8ee5816f82009b08cf0..b95f0a2d5809cc5aea3bc046f34ba4b3292f7015 100644 --- a/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageSettingsTest.php +++ b/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateImageSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['image']; + public static $modules = ['image']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageStylesTest.php b/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageStylesTest.php index 885ba7f0b30f9ee8b6e70f69b89b0ff5d90d2e8d..a15d49e76107cd15b184bdbca02ea95337e3e71c 100644 --- a/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageStylesTest.php +++ b/core/modules/image/tests/src/Kernel/Migrate/d7/MigrateImageStylesTest.php @@ -17,7 +17,7 @@ class MigrateImageStylesTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['image']; + public static $modules = ['image']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php b/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php index 37abd1c2bcfb438498be8747197461e6262bae67..edd2ad3358414116eeadcfc4008b2d72b5c6330b 100644 --- a/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php +++ b/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php @@ -16,7 +16,7 @@ class ImageCachePresetTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['image', 'migrate_drupal']; + public static $modules = ['image', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d7/ImageStylesTest.php b/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d7/ImageStylesTest.php index 198e3af690e31a5bf5a3a9f7011853635e88a9e9..55251d1fb2dcba23d1326432b7a6c413abd39e3c 100644 --- a/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d7/ImageStylesTest.php +++ b/core/modules/image/tests/src/Kernel/Plugin/migrate/source/d7/ImageStylesTest.php @@ -16,7 +16,7 @@ class ImageStylesTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['image', 'migrate_drupal']; + public static $modules = ['image', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/image/tests/src/Kernel/Views/ImageViewsDataTest.php b/core/modules/image/tests/src/Kernel/Views/ImageViewsDataTest.php index 910661b53fb70d5170bd71fb425067d788a7ed1d..a324d5ead346947c54703185ad7115f318b347af 100644 --- a/core/modules/image/tests/src/Kernel/Views/ImageViewsDataTest.php +++ b/core/modules/image/tests/src/Kernel/Views/ImageViewsDataTest.php @@ -19,7 +19,7 @@ class ImageViewsDataTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['image', 'file', 'views', 'entity_test', 'user', 'field']; + public static $modules = ['image', 'file', 'views', 'entity_test', 'user', 'field']; /** * Tests views data generated for image field relationship. diff --git a/core/modules/image/tests/src/Kernel/Views/RelationshipUserImageDataTest.php b/core/modules/image/tests/src/Kernel/Views/RelationshipUserImageDataTest.php index f24c79505b0009dc779ac30ef40199e2d446e8af..e0f605e92ddedfd92eee50876a4b2987c2b87e4e 100644 --- a/core/modules/image/tests/src/Kernel/Views/RelationshipUserImageDataTest.php +++ b/core/modules/image/tests/src/Kernel/Views/RelationshipUserImageDataTest.php @@ -22,7 +22,7 @@ class RelationshipUserImageDataTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['file', 'field', 'image', 'image_test_views', 'system', 'user']; + public static $modules = ['file', 'field', 'image', 'image_test_views', 'system', 'user']; /** * Views used by this test. diff --git a/core/modules/inline_form_errors/tests/src/Functional/FormErrorHandlerFileUploadTest.php b/core/modules/inline_form_errors/tests/src/Functional/FormErrorHandlerFileUploadTest.php index ef160d13bff00cc85eddd5190bf5d643ea9da6b1..9535c99fb2005d55fa591f1ec7a442bdda4add2e 100644 --- a/core/modules/inline_form_errors/tests/src/Functional/FormErrorHandlerFileUploadTest.php +++ b/core/modules/inline_form_errors/tests/src/Functional/FormErrorHandlerFileUploadTest.php @@ -19,7 +19,7 @@ class FormErrorHandlerFileUploadTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'file', 'field_ui', 'inline_form_errors']; + public static $modules = ['node', 'file', 'field_ui', 'inline_form_errors']; /** * {@inheritdoc} diff --git a/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditorTest.php b/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditorTest.php index ad5498576bbdcb206db242e43b8d471cb6652736..7c9a74ab503488f95d5255c3e308dc554ea255f3 100644 --- a/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditorTest.php +++ b/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditorTest.php @@ -20,7 +20,7 @@ class FormErrorHandlerCKEditorTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'ckeditor', 'inline_form_errors', 'filter']; + public static $modules = ['node', 'ckeditor', 'inline_form_errors', 'filter']; /** * {@inheritdoc} diff --git a/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerQuickEditTest.php b/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerQuickEditTest.php index 1109c2dccbf76614bae893bd5ecdcf75a9bd3938..00dc3d3f622360c2fdb181cef35ce018ea1bd6b4 100644 --- a/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerQuickEditTest.php +++ b/core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerQuickEditTest.php @@ -17,7 +17,7 @@ class FormErrorHandlerQuickEditTest extends WebDriverTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'quickedit', 'node', 'inline_form_errors', diff --git a/core/modules/inline_form_errors/tests/src/Kernel/FormElementInlineErrorTest.php b/core/modules/inline_form_errors/tests/src/Kernel/FormElementInlineErrorTest.php index 8ce31a2fe978810edf2bf2cb459d5a69027d0895..4bf389e60fb3cb2d3929a196f01d3a996a249cf3 100644 --- a/core/modules/inline_form_errors/tests/src/Kernel/FormElementInlineErrorTest.php +++ b/core/modules/inline_form_errors/tests/src/Kernel/FormElementInlineErrorTest.php @@ -15,7 +15,7 @@ class FormElementInlineErrorTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['inline_form_errors']; + public static $modules = ['inline_form_errors']; /** * Tests that no inline form errors are shown when disabled for a form. diff --git a/core/modules/language/tests/src/Functional/AdminPathEntityConverterLanguageTest.php b/core/modules/language/tests/src/Functional/AdminPathEntityConverterLanguageTest.php index 034e7ab225340fd34b78c3d77b70b46a2d02fccc..f689a9233fee9e6b36c52e896fa8e6ade99d1d8a 100644 --- a/core/modules/language/tests/src/Functional/AdminPathEntityConverterLanguageTest.php +++ b/core/modules/language/tests/src/Functional/AdminPathEntityConverterLanguageTest.php @@ -12,7 +12,7 @@ */ class AdminPathEntityConverterLanguageTest extends BrowserTestBase { - protected static $modules = ['language', 'language_test']; + public static $modules = ['language', 'language_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php b/core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php index 12739f45a405c95c2a83f7c6563416a94457356d..f7b6191484dba4753000f1226423fbc7369d3b0a 100644 --- a/core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php +++ b/core/modules/language/tests/src/Functional/EntityTypeWithoutLanguageFormTest.php @@ -19,7 +19,7 @@ class EntityTypeWithoutLanguageFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'language_test', ]; diff --git a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonAnonTest.php b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonAnonTest.php index 5036670a170736d9c73e2464197ece1dc7b3bb04..c548c17241d53047d5c0d1e5234535d1f6af89dc 100644 --- a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonAnonTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ConfigurableLanguageHalJsonAnonTest extends ConfigurableLanguageResourceTe /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonBasicAuthTest.php b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonBasicAuthTest.php index 334a3c8b9acec70d434097b35a86895c6a7d8318..3239b7e22c96a8876a9164c09a1438109a4bb97a 100644 --- a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ConfigurableLanguageHalJsonBasicAuthTest extends ConfigurableLanguageResou /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonCookieTest.php b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonCookieTest.php index fbcb928cbb354f2c72ee301d3eac244ff20e181e..9ad756106743b54d952e86bedac30f7940a25bf1 100644 --- a/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonCookieTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ConfigurableLanguageHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ConfigurableLanguageHalJsonCookieTest extends ConfigurableLanguageResource /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonAnonTest.php b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonAnonTest.php index 4047aaba8bb44be65e07b9d50144c575d05ad910..d5b7947ed47e4f15f82697b8c0e042573a605790 100644 --- a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonAnonTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ContentLanguageSettingsHalJsonAnonTest extends ContentLanguageSettingsReso /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonBasicAuthTest.php b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonBasicAuthTest.php index a761ed6407beae947e67a1990d7dad116d601b5e..61306eaf5e0d251a49b006543058c964c073668d 100644 --- a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ContentLanguageSettingsHalJsonBasicAuthTest extends ContentLanguageSetting /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonCookieTest.php b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonCookieTest.php index 6e65edc07ccaadf27a09db9835e1510a497570ea..63584f6489773c4d57a94a9c9525ec2cb156ddbf 100644 --- a/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonCookieTest.php +++ b/core/modules/language/tests/src/Functional/Hal/ContentLanguageSettingsHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ContentLanguageSettingsHalJsonCookieTest extends ContentLanguageSettingsRe /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/LanguageBlockSettingsVisibilityTest.php b/core/modules/language/tests/src/Functional/LanguageBlockSettingsVisibilityTest.php index 545640270b8e7a90f94cfbccc69571c7f93cbff7..003c5a63fa60b5eeedb040ed4845231e58033ff1 100644 --- a/core/modules/language/tests/src/Functional/LanguageBlockSettingsVisibilityTest.php +++ b/core/modules/language/tests/src/Functional/LanguageBlockSettingsVisibilityTest.php @@ -11,7 +11,7 @@ */ class LanguageBlockSettingsVisibilityTest extends BrowserTestBase { - protected static $modules = ['block', 'language']; + public static $modules = ['block', 'language']; public function testUnnecessaryLanguageSettingsVisibility() { $admin_user = $this->drupalCreateUser(['administer languages', 'access administration pages', 'administer blocks']); diff --git a/core/modules/language/tests/src/Functional/LanguageBreadcrumbTest.php b/core/modules/language/tests/src/Functional/LanguageBreadcrumbTest.php index 7afa3653b742f4eae7747ff4634f92644a9047a6..e15fcf7a6d67d61029b9e7b03b76749649680c8a 100644 --- a/core/modules/language/tests/src/Functional/LanguageBreadcrumbTest.php +++ b/core/modules/language/tests/src/Functional/LanguageBreadcrumbTest.php @@ -17,7 +17,7 @@ class LanguageBreadcrumbTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'block', 'filter']; + public static $modules = ['language', 'block', 'filter']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/LanguageBrowserDetectionTest.php b/core/modules/language/tests/src/Functional/LanguageBrowserDetectionTest.php index 713f23ac4b1629041b96277515ec3cadeaea9b30..a63ff451f113743f79e4948c586220741666e5da 100644 --- a/core/modules/language/tests/src/Functional/LanguageBrowserDetectionTest.php +++ b/core/modules/language/tests/src/Functional/LanguageBrowserDetectionTest.php @@ -11,7 +11,7 @@ */ class LanguageBrowserDetectionTest extends BrowserTestBase { - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests for adding, editing and deleting mappings between browser language diff --git a/core/modules/language/tests/src/Functional/LanguageConfigOverrideImportTest.php b/core/modules/language/tests/src/Functional/LanguageConfigOverrideImportTest.php index 956ded16af861a3d7a954f6464c3ecfaa7380573..2ddd4963ed3e10c109f5cde596bd4c334e27c40e 100644 --- a/core/modules/language/tests/src/Functional/LanguageConfigOverrideImportTest.php +++ b/core/modules/language/tests/src/Functional/LanguageConfigOverrideImportTest.php @@ -17,7 +17,7 @@ class LanguageConfigOverrideImportTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'config', 'locale', 'config_translation']; + public static $modules = ['language', 'config', 'locale', 'config_translation']; /** * Tests that language can be enabled and overrides are created during a sync. diff --git a/core/modules/language/tests/src/Functional/LanguageConfigSchemaTest.php b/core/modules/language/tests/src/Functional/LanguageConfigSchemaTest.php index b029b7f744447544ab755e57fa4895ed5c3d1001..e19fe53da32e5d6b0e60118bf93cd39670e03803 100644 --- a/core/modules/language/tests/src/Functional/LanguageConfigSchemaTest.php +++ b/core/modules/language/tests/src/Functional/LanguageConfigSchemaTest.php @@ -19,7 +19,7 @@ class LanguageConfigSchemaTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'menu_link_content']; + public static $modules = ['language', 'menu_link_content']; /** * A user with administrative permissions. diff --git a/core/modules/language/tests/src/Functional/LanguageConfigurationElementTest.php b/core/modules/language/tests/src/Functional/LanguageConfigurationElementTest.php index 64f700b419e28b2c75b23f7521874dafc18c2167..0f3dd1f0baa81f705ee7fe9eb448c98804da753c 100644 --- a/core/modules/language/tests/src/Functional/LanguageConfigurationElementTest.php +++ b/core/modules/language/tests/src/Functional/LanguageConfigurationElementTest.php @@ -20,7 +20,7 @@ class LanguageConfigurationElementTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'node', 'language', 'language_elements_test', 'field_ui']; + public static $modules = ['taxonomy', 'node', 'language', 'language_elements_test', 'field_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php b/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php index 88fc25527e998b59b82d4d0451dc74fca1900718..7095bc18e2ee6c433c60b5730c8f5cb7def58bdb 100644 --- a/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php +++ b/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php @@ -18,7 +18,7 @@ class LanguageConfigurationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Functional tests for adding, editing and deleting languages. diff --git a/core/modules/language/tests/src/Functional/LanguageCustomLanguageConfigurationTest.php b/core/modules/language/tests/src/Functional/LanguageCustomLanguageConfigurationTest.php index 152eb516ecfa4c5cb9f830d6377a4b93d788fc86..a0510beca72a0bb193f83d931068d323dbcc4364 100644 --- a/core/modules/language/tests/src/Functional/LanguageCustomLanguageConfigurationTest.php +++ b/core/modules/language/tests/src/Functional/LanguageCustomLanguageConfigurationTest.php @@ -18,7 +18,7 @@ class LanguageCustomLanguageConfigurationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Functional tests for adding, editing and deleting languages. diff --git a/core/modules/language/tests/src/Functional/LanguageListModuleInstallTest.php b/core/modules/language/tests/src/Functional/LanguageListModuleInstallTest.php index b419e193c6bb029619f7f1f83bcdd8327679791d..013d00d8dbe57d90deebdda20bf296e5535447dd 100644 --- a/core/modules/language/tests/src/Functional/LanguageListModuleInstallTest.php +++ b/core/modules/language/tests/src/Functional/LanguageListModuleInstallTest.php @@ -17,7 +17,7 @@ class LanguageListModuleInstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language_test']; + public static $modules = ['language_test']; /** * Tests enabling Language. diff --git a/core/modules/language/tests/src/Functional/LanguageListTest.php b/core/modules/language/tests/src/Functional/LanguageListTest.php index 0c6606e8afd42bc79efea6744a26ca9ddbd1373c..8c671cfccfef62ef88db6528dcb793c52bf6d893 100644 --- a/core/modules/language/tests/src/Functional/LanguageListTest.php +++ b/core/modules/language/tests/src/Functional/LanguageListTest.php @@ -19,7 +19,7 @@ class LanguageListTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Functional tests for adding, editing and deleting languages. diff --git a/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php b/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php index 4201ab570bdb0603198f09f010d77cdb2fc5126b..a39a1124242b66a3bebcb69b4107218621e7fef1 100644 --- a/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php +++ b/core/modules/language/tests/src/Functional/LanguageLocaleListTest.php @@ -16,7 +16,7 @@ class LanguageLocaleListTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'locale']; + public static $modules = ['language', 'locale']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/LanguageNegotiationContentEntityTest.php b/core/modules/language/tests/src/Functional/LanguageNegotiationContentEntityTest.php index c83204e6ce2f47f2bb3f8936ebf9d23119d4e60a..3ac9406252392ec6c07233f2e8164ac5092b7f4b 100644 --- a/core/modules/language/tests/src/Functional/LanguageNegotiationContentEntityTest.php +++ b/core/modules/language/tests/src/Functional/LanguageNegotiationContentEntityTest.php @@ -25,7 +25,7 @@ class LanguageNegotiationContentEntityTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'language_test', 'entity_test', 'system']; + public static $modules = ['language', 'language_test', 'entity_test', 'system']; /** * The entity being used for testing. diff --git a/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php b/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php index 3ab2dcd334fb0435492f0c2cec1b31b17203aa62..c5e3c2c7b1e7010cd5ab4c83cce1a42c476da40e 100644 --- a/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php +++ b/core/modules/language/tests/src/Functional/LanguageNegotiationInfoTest.php @@ -18,7 +18,7 @@ class LanguageNegotiationInfoTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation']; + public static $modules = ['language', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php b/core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php index 07f75216be54d76bdc51ac295266e3003d6a50d2..07ae85d4338fb32e3e0129671f0fe190a026e132 100644 --- a/core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php +++ b/core/modules/language/tests/src/Functional/LanguageNegotiationUrlTest.php @@ -16,7 +16,7 @@ class LanguageNegotiationUrlTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'node', 'path', diff --git a/core/modules/language/tests/src/Functional/LanguagePathMonolingualTest.php b/core/modules/language/tests/src/Functional/LanguagePathMonolingualTest.php index a5d663b12ba3da14cc60b5cf25a86e195ee21eba..17ff3f936df785d47882c1175c444ba1676a5112 100644 --- a/core/modules/language/tests/src/Functional/LanguagePathMonolingualTest.php +++ b/core/modules/language/tests/src/Functional/LanguagePathMonolingualTest.php @@ -16,7 +16,7 @@ class LanguagePathMonolingualTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'language', 'path']; + public static $modules = ['block', 'language', 'path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php b/core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php index 1b3531a2efedde22e1debb4a7e91c8df044a1054..9526d226fdd7803fd4f75fe618353dd47e729df7 100644 --- a/core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php +++ b/core/modules/language/tests/src/Functional/LanguageSelectorTranslatableTest.php @@ -16,7 +16,7 @@ class LanguageSelectorTranslatableTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'node', diff --git a/core/modules/language/tests/src/Functional/LanguageSwitchingTest.php b/core/modules/language/tests/src/Functional/LanguageSwitchingTest.php index 0ec4fccccd5fa89f6f3a5c1f905583f109420792..1303082c154d1aabeb17ddab740dbda3dc9e9d4f 100644 --- a/core/modules/language/tests/src/Functional/LanguageSwitchingTest.php +++ b/core/modules/language/tests/src/Functional/LanguageSwitchingTest.php @@ -20,7 +20,7 @@ class LanguageSwitchingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'locale_test', 'language', 'block', 'language_test', 'menu_ui']; + public static $modules = ['locale', 'locale_test', 'language', 'block', 'language_test', 'menu_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Functional/LanguageTourTest.php b/core/modules/language/tests/src/Functional/LanguageTourTest.php index c8cba54ea37fe95e297a32499b0d4e1fa6511254..13b29f2ef56fcd03ae2b985e56c9536840d3c4c9 100644 --- a/core/modules/language/tests/src/Functional/LanguageTourTest.php +++ b/core/modules/language/tests/src/Functional/LanguageTourTest.php @@ -23,7 +23,7 @@ class LanguageTourTest extends TourTestBase { * * @var array */ - protected static $modules = ['block', 'language', 'tour']; + public static $modules = ['block', 'language', 'tour']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/LanguageUILanguageNegotiationTest.php b/core/modules/language/tests/src/Functional/LanguageUILanguageNegotiationTest.php index 49ae232dc0c71dd50342b9348165c220379b1898..34f0c81f01acd8015303acc33cef706c3c5dddc5 100644 --- a/core/modules/language/tests/src/Functional/LanguageUILanguageNegotiationTest.php +++ b/core/modules/language/tests/src/Functional/LanguageUILanguageNegotiationTest.php @@ -48,7 +48,7 @@ class LanguageUILanguageNegotiationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'language_test', 'block', 'user', 'content_translation']; + public static $modules = ['locale', 'language_test', 'block', 'user', 'content_translation']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Functional/LanguageUrlRewritingTest.php b/core/modules/language/tests/src/Functional/LanguageUrlRewritingTest.php index 22b38823f59260dc3ff5cc59bbaf453f0523c724..07eec52514d3925abdb8aa03e5bcbfc4e286d9a4 100644 --- a/core/modules/language/tests/src/Functional/LanguageUrlRewritingTest.php +++ b/core/modules/language/tests/src/Functional/LanguageUrlRewritingTest.php @@ -21,7 +21,7 @@ class LanguageUrlRewritingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'language_test']; + public static $modules = ['language', 'language_test']; /** * An user with permissions to administer languages. diff --git a/core/modules/language/tests/src/Functional/Migrate/MigrateLanguageTest.php b/core/modules/language/tests/src/Functional/Migrate/MigrateLanguageTest.php index ef9b0216e4209a98693035d4ec10a4349f435da4..9a2702da2b2550d72e6c8d018775d4f32120c8c7 100644 --- a/core/modules/language/tests/src/Functional/Migrate/MigrateLanguageTest.php +++ b/core/modules/language/tests/src/Functional/Migrate/MigrateLanguageTest.php @@ -14,7 +14,7 @@ class MigrateLanguageTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Asserts various properties of a configurable language entity. diff --git a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageJsonBasicAuthTest.php b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageJsonBasicAuthTest.php index 804e6e163306e8313554e79debc9209333cacede..847e78164035cca5aa8f48a33e0988739b0fa51b 100644 --- a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageJsonBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ConfigurableLanguageJsonBasicAuthTest extends ConfigurableLanguageResource /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageResourceTestBase.php b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageResourceTestBase.php index cdd2e4b1c98553055ddf55090986334c539926f0..a0dd46054109bdbabc5f3fbc05ee2720ac926359 100644 --- a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageResourceTestBase.php +++ b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageResourceTestBase.php @@ -12,7 +12,7 @@ abstract class ConfigurableLanguageResourceTestBase extends EntityResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageXmlBasicAuthTest.php b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageXmlBasicAuthTest.php index 7e3edb1da184bd6cee2d8e548aad67bb1074ca52..7a79c4d433dba5e343827762a84fe76a6977b0da 100644 --- a/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageXmlBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Rest/ConfigurableLanguageXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ConfigurableLanguageXmlBasicAuthTest extends ConfigurableLanguageResourceT /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsJsonBasicAuthTest.php b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsJsonBasicAuthTest.php index b15760d106a589c8f674c060fe51b6693a334173..14437a90923227decfaa4b9fb659b3b49c198e31 100644 --- a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsJsonBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ContentLanguageSettingsJsonBasicAuthTest extends ContentLanguageSettingsRe /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php index 79425367cda7b75decc28f3a59b1710ec9761ec2..62834843684b02ea86c3321f2ecf41e1f651e97e 100644 --- a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php +++ b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php @@ -11,7 +11,7 @@ abstract class ContentLanguageSettingsResourceTestBase extends EntityResourceTes /** * {@inheritdoc} */ - protected static $modules = ['language', 'node']; + public static $modules = ['language', 'node']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsXmlBasicAuthTest.php b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsXmlBasicAuthTest.php index 9252312dd51275cf6b887e507b2da5115a043b6a..741e75bcd394fe11f8e9b54fbfbc3450c3bc7db0 100644 --- a/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsXmlBasicAuthTest.php +++ b/core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ContentLanguageSettingsXmlBasicAuthTest extends ContentLanguageSettingsRes /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Condition/LanguageConditionTest.php b/core/modules/language/tests/src/Kernel/Condition/LanguageConditionTest.php index f5390562f77f5991285573bea2af6419ff866e42..af7eed4b7f50ec58349878678ac949b4ca518795 100644 --- a/core/modules/language/tests/src/Kernel/Condition/LanguageConditionTest.php +++ b/core/modules/language/tests/src/Kernel/Condition/LanguageConditionTest.php @@ -32,7 +32,7 @@ class LanguageConditionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'language']; + public static $modules = ['system', 'language']; protected function setUp() { parent::setUp(); diff --git a/core/modules/language/tests/src/Kernel/ConfigurableLanguageManagerTest.php b/core/modules/language/tests/src/Kernel/ConfigurableLanguageManagerTest.php index fecdfa4a5f676de08d5b061e864fb0867319622b..92ab889ce8e96e45314999b57a72d39789264fa8 100644 --- a/core/modules/language/tests/src/Kernel/ConfigurableLanguageManagerTest.php +++ b/core/modules/language/tests/src/Kernel/ConfigurableLanguageManagerTest.php @@ -16,7 +16,7 @@ class ConfigurableLanguageManagerTest extends LanguageTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * The language negotiator. diff --git a/core/modules/language/tests/src/Kernel/ConfigurableLanguageTest.php b/core/modules/language/tests/src/Kernel/ConfigurableLanguageTest.php index 1a717ddeb751712166da24fce96af71af7ed275f..00af14cbd373645972f444cb4ce010074d9e0a43 100644 --- a/core/modules/language/tests/src/Kernel/ConfigurableLanguageTest.php +++ b/core/modules/language/tests/src/Kernel/ConfigurableLanguageTest.php @@ -18,7 +18,7 @@ class ConfigurableLanguageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests configurable language name methods. diff --git a/core/modules/language/tests/src/Kernel/EntityDefaultLanguageTest.php b/core/modules/language/tests/src/Kernel/EntityDefaultLanguageTest.php index 97a9616f0f9fdcbd82c6d889e287ee082577c2ec..88abdd9006dd3767d77649362350e4cee0c6be9c 100644 --- a/core/modules/language/tests/src/Kernel/EntityDefaultLanguageTest.php +++ b/core/modules/language/tests/src/Kernel/EntityDefaultLanguageTest.php @@ -18,7 +18,7 @@ class EntityDefaultLanguageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['language', 'node', 'field', 'text', 'user', 'system']; + public static $modules = ['language', 'node', 'field', 'text', 'user', 'system']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/EntityUrlLanguageTest.php b/core/modules/language/tests/src/Kernel/EntityUrlLanguageTest.php index dcdf9109791499747c62047d415778ab7ccd6a84..8154e42a46affdb45b2e73c489a79685e648abc0 100644 --- a/core/modules/language/tests/src/Kernel/EntityUrlLanguageTest.php +++ b/core/modules/language/tests/src/Kernel/EntityUrlLanguageTest.php @@ -22,7 +22,7 @@ class EntityUrlLanguageTest extends LanguageTestBase { * * @var array */ - protected static $modules = ['entity_test', 'user']; + public static $modules = ['entity_test', 'user']; /** * The entity being used for testing. diff --git a/core/modules/language/tests/src/Kernel/LanguageConfigFactoryOverrideTest.php b/core/modules/language/tests/src/Kernel/LanguageConfigFactoryOverrideTest.php index 722fcbc8addc6debd9c7acd48c72b43809dcbe01..3082697b04274f7a7a34dc3be107698374de99c5 100644 --- a/core/modules/language/tests/src/Kernel/LanguageConfigFactoryOverrideTest.php +++ b/core/modules/language/tests/src/Kernel/LanguageConfigFactoryOverrideTest.php @@ -17,7 +17,7 @@ class LanguageConfigFactoryOverrideTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'language']; + public static $modules = ['system', 'language']; /** * Tests language.config_factory_override service has the default language. diff --git a/core/modules/language/tests/src/Kernel/LanguageConfigOverrideInstallTest.php b/core/modules/language/tests/src/Kernel/LanguageConfigOverrideInstallTest.php index 2b12b549454ce3a5f97daf95d310dcb7407fa90f..7d505baf78fbda7ee556b5e37fcb7057093a9e7e 100644 --- a/core/modules/language/tests/src/Kernel/LanguageConfigOverrideInstallTest.php +++ b/core/modules/language/tests/src/Kernel/LanguageConfigOverrideInstallTest.php @@ -17,7 +17,7 @@ class LanguageConfigOverrideInstallTest extends KernelTestBase { * * @var array */ - protected static $modules = ['language', 'config_events_test']; + public static $modules = ['language', 'config_events_test']; /** * Tests the configuration events are not fired during install of overrides. diff --git a/core/modules/language/tests/src/Kernel/LanguageTestBase.php b/core/modules/language/tests/src/Kernel/LanguageTestBase.php index 458eeaec53a2444a8ae6bab2ce97eeaa08d8813f..f4dcbd2f9df311d98f9a40b3631f06dff4f315ae 100644 --- a/core/modules/language/tests/src/Kernel/LanguageTestBase.php +++ b/core/modules/language/tests/src/Kernel/LanguageTestBase.php @@ -9,7 +9,7 @@ */ abstract class LanguageTestBase extends KernelTestBase { - protected static $modules = ['system', 'language', 'language_test']; + public static $modules = ['system', 'language', 'language_test']; /** * The language manager. * diff --git a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateDefaultLanguageTest.php b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateDefaultLanguageTest.php index 73aeac43500deeabb388ec37fccb66dc92e76f86..e76b4553ee037d501996a1fa8f5bf5fa78ac5c8a 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateDefaultLanguageTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateDefaultLanguageTest.php @@ -16,7 +16,7 @@ class MigrateDefaultLanguageTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests language_default migration with an existing language. diff --git a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentMenuSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentMenuSettingsTest.php index e2a09c0d69fa3b8320e4d7ea8e58e3088953a35b..0148452dc977428abacb51096875e4835341abdb 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentMenuSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentMenuSettingsTest.php @@ -17,7 +17,7 @@ class MigrateLanguageContentMenuSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'menu_link_content', diff --git a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentSettingsTest.php index 82e6ba8ce8ca878a74514c0ebb0fbc4165ea9d59..546ab25e03414209ef5b3d73146042994bebe77c 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageContentSettingsTest.php @@ -16,7 +16,7 @@ class MigrateLanguageContentSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui']; + public static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageNegotiationSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageNegotiationSettingsTest.php index 1ad87bda7bbe922f63f46898928833ea04308e93..96bc4a0d8cff0f0e90336307a7d208570516d222 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageNegotiationSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d6/MigrateLanguageNegotiationSettingsTest.php @@ -15,7 +15,7 @@ class MigrateLanguageNegotiationSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests the migration with LANGUAGE_NEGOTIATION_PATH_DEFAULT. diff --git a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateDefaultLanguageTest.php b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateDefaultLanguageTest.php index 61f92491677247748982c701b30152bbf2f1b789..2a11b2562831272db587f447e34526ee1d9e5e69 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateDefaultLanguageTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateDefaultLanguageTest.php @@ -16,7 +16,7 @@ class MigrateDefaultLanguageTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests language_default migration with a non-existing language. diff --git a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php index ddd7f35ed7d3f759049f9df5647775d0d7dd3412..e584467c92174c628e9f9ca0eb890225b5b0c952 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php @@ -16,7 +16,7 @@ class MigrateLanguageContentSettingsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui']; + public static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageNegotiationSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageNegotiationSettingsTest.php index 875135e2bb1ff9a2f1db798f006680f3ae0f5603..cd1a21835eed7827d50f98682a743932c5fb6ec9 100644 --- a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageNegotiationSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageNegotiationSettingsTest.php @@ -15,7 +15,7 @@ class MigrateLanguageNegotiationSettingsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Tests migration of language types variables to language.types.yml. diff --git a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php index d04b57af5b95d9b5202c244b7404de44ca6545e6..6aa318eb416bc82fd90f82cad19f9e31e057388e 100644 --- a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php +++ b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/LanguageTest.php @@ -15,7 +15,7 @@ class LanguageTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'migrate_drupal']; + public static $modules = ['language', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php index f4fa2dacce0066b9f4d0935a198f1544334a9df2..a4c7534e5ffeba8fcfa1efd82ccc09d61e613965 100644 --- a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php @@ -16,7 +16,7 @@ class LanguageContentSettingsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'migrate_drupal']; + public static $modules = ['language', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php index 3fc1df57c334768fdf9a5ea11f3cfd7ce7077931..39d645081770d05d3bd2f4580c5cb5e669e42eaf 100644 --- a/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php +++ b/core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php @@ -16,7 +16,7 @@ class LanguageContentSettingsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'migrate_drupal']; + public static $modules = ['language', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/language/tests/src/Kernel/Views/LanguageTestBase.php b/core/modules/language/tests/src/Kernel/Views/LanguageTestBase.php index fc4cabf1ba82bba02ca7d2b7f5600828dcea2287..cab6fc84e0bd68557c05d40517d35062cde56f96 100644 --- a/core/modules/language/tests/src/Kernel/Views/LanguageTestBase.php +++ b/core/modules/language/tests/src/Kernel/Views/LanguageTestBase.php @@ -15,7 +15,7 @@ abstract class LanguageTestBase extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['system', 'language']; + public static $modules = ['system', 'language']; protected function setUp($import_test_views = TRUE) { parent::setUp(); diff --git a/core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php b/core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php index 0fbc5f8b22d4cf8e5db8197fc1a346d62ce939a5..293f7b9f7c164a53287dfa2e298f27379657ac64 100644 --- a/core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php +++ b/core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php @@ -16,7 +16,7 @@ class LayoutBuilderTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'views', 'layout_builder', 'layout_builder_views_test', diff --git a/core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php b/core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php index 6fde76abc21b1fc2a1ec310c0b6c8f69f8ac7b6d..e4af3290c468475cbfda28acfe6490fe5041c08e 100644 --- a/core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php +++ b/core/modules/layout_builder/tests/src/Functional/LayoutSectionTest.php @@ -18,7 +18,7 @@ class LayoutSectionTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_ui', 'layout_builder', 'node', 'block_test']; + public static $modules = ['field_ui', 'layout_builder', 'node', 'block_test']; /** * The name of the layout section field. diff --git a/core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php b/core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php index 256a3177e7616ed28ad55a2610079fe60ad73ae9..653185fe8964a24c9f0c4f40a6b7b88b7be43412 100644 --- a/core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php +++ b/core/modules/layout_builder/tests/src/FunctionalJavascript/AjaxBlockTest.php @@ -14,7 +14,7 @@ class AjaxBlockTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'node', 'datetime', diff --git a/core/modules/layout_builder/tests/src/FunctionalJavascript/FieldBlockTest.php b/core/modules/layout_builder/tests/src/FunctionalJavascript/FieldBlockTest.php index a4db0f1ef67be69c57ad32b7b6c8062813069cbb..f2ecd52b3bf47bdc853fd32f67f4f0ee9fa57846 100644 --- a/core/modules/layout_builder/tests/src/FunctionalJavascript/FieldBlockTest.php +++ b/core/modules/layout_builder/tests/src/FunctionalJavascript/FieldBlockTest.php @@ -16,7 +16,7 @@ class FieldBlockTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'datetime', 'layout_builder', 'user']; + public static $modules = ['block', 'datetime', 'layout_builder', 'user']; /** * {@inheritdoc} diff --git a/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockPrivateFilesTest.php b/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockPrivateFilesTest.php index 48189ebd9326d05a9b6087b02ccb79e71201b98e..a915eaa7aa59dfde7a86d20601934c4cc9ec56ec 100644 --- a/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockPrivateFilesTest.php +++ b/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockPrivateFilesTest.php @@ -21,7 +21,7 @@ class InlineBlockPrivateFilesTest extends InlineBlockTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'file', ]; diff --git a/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php b/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php index a7adab122bde57dc0fe8faa983fcc6a4c2ffbeb6..6c99c6c39f107068d21fe5d46edf3d581d58e781 100644 --- a/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php +++ b/core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php @@ -26,7 +26,7 @@ abstract class InlineBlockTestBase extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block_content', 'layout_builder', 'block', diff --git a/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderCompatibilityTestBase.php b/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderCompatibilityTestBase.php index 4113bb258aa3134f2747bbe48553561a3ac4cefe..72ee01ac60802b77beebe1385244459c67117037 100644 --- a/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderCompatibilityTestBase.php +++ b/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderCompatibilityTestBase.php @@ -16,7 +16,7 @@ abstract class LayoutBuilderCompatibilityTestBase extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'layout_discovery', ]; diff --git a/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderFieldLayoutCompatibilityTest.php b/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderFieldLayoutCompatibilityTest.php index 943a4bfd86f4be4702f00b9f545319964ddf4c95..57dacb5b18ce030d343e93d1fa58fc289616c8ba 100644 --- a/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderFieldLayoutCompatibilityTest.php +++ b/core/modules/layout_builder/tests/src/Kernel/LayoutBuilderFieldLayoutCompatibilityTest.php @@ -14,7 +14,7 @@ class LayoutBuilderFieldLayoutCompatibilityTest extends LayoutBuilderCompatibili /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'field_layout', ]; diff --git a/core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php b/core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php index 30ffe6961eb4c64a64dc3787e4a46dd240aa73e4..5bd354675cb843e7293054ad25134c53ca5325a3 100644 --- a/core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php +++ b/core/modules/layout_builder/tests/src/Kernel/LayoutSectionItemListTest.php @@ -17,7 +17,7 @@ class LayoutSectionItemListTest extends SectionStorageTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'field', 'text', ]; diff --git a/core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php b/core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php index 1abad5f9c0cee0bf8a1873dbd6636624cc1e9fa3..1879977633e3abc9b192d8fafc41c22f082c3311 100644 --- a/core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php +++ b/core/modules/layout_builder/tests/src/Kernel/SectionStorageTestBase.php @@ -14,7 +14,7 @@ abstract class SectionStorageTestBase extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'layout_builder', 'layout_discovery', 'layout_test', diff --git a/core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php b/core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php index 81c011a85e11203dc704b9226bcb55483fc6994f..c7be49ba2b1571108582a0b2b0aef9ac731c0084 100644 --- a/core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php +++ b/core/modules/layout_discovery/tests/src/Kernel/LayoutTest.php @@ -15,7 +15,7 @@ class LayoutTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'layout_discovery', 'layout_test']; + public static $modules = ['system', 'layout_discovery', 'layout_test']; /** * The layout plugin manager. diff --git a/core/modules/link/src/Tests/Views/LinkViewsTokensTest.php b/core/modules/link/src/Tests/Views/LinkViewsTokensTest.php index 1d10b79af8ac97fff92c5b64101a70ee33e36fa7..f3ff80a1bc0c410fe7ae84de8acbc2c04d3342f7 100644 --- a/core/modules/link/src/Tests/Views/LinkViewsTokensTest.php +++ b/core/modules/link/src/Tests/Views/LinkViewsTokensTest.php @@ -19,7 +19,7 @@ class LinkViewsTokensTest extends ViewTestBase { * * @var array */ - protected static $modules = ['link_test_views']; + public static $modules = ['link_test_views']; /** * Views used by this test. diff --git a/core/modules/link/tests/src/Functional/LinkFieldTest.php b/core/modules/link/tests/src/Functional/LinkFieldTest.php index 8e9cdf23c4d32a095c03db8b32413866ddd1d859..4df94dd6cf4f47845a6cf0ac03f7333b22f4f1f2 100644 --- a/core/modules/link/tests/src/Functional/LinkFieldTest.php +++ b/core/modules/link/tests/src/Functional/LinkFieldTest.php @@ -24,7 +24,7 @@ class LinkFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'link', 'node', diff --git a/core/modules/link/tests/src/Functional/LinkFieldUITest.php b/core/modules/link/tests/src/Functional/LinkFieldUITest.php index 92aed61f937e702ec0a7475e876332fccc68967e..bd2433f903d1aa2a3936450d9ff0ca7c3220a351 100644 --- a/core/modules/link/tests/src/Functional/LinkFieldUITest.php +++ b/core/modules/link/tests/src/Functional/LinkFieldUITest.php @@ -24,7 +24,7 @@ class LinkFieldUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'link', 'field_ui', 'block']; + public static $modules = ['node', 'link', 'field_ui', 'block']; /** * A user that can edit content types. diff --git a/core/modules/link/tests/src/Kernel/LinkItemTest.php b/core/modules/link/tests/src/Kernel/LinkItemTest.php index 51a6cc3d050b3696e7c2bb3b469eb7d234446635..ff4f8405678f49dbd0d7ea0d55a9cd55c92771d7 100644 --- a/core/modules/link/tests/src/Kernel/LinkItemTest.php +++ b/core/modules/link/tests/src/Kernel/LinkItemTest.php @@ -24,7 +24,7 @@ class LinkItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['link']; + public static $modules = ['link']; protected function setUp() { parent::setUp(); diff --git a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php index 0239cdbd35f0f78998aa992838451da931e6743b..058d9ddf8e77eb495a68b2421e2c150611bd4acc 100644 --- a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationImportTest.php @@ -18,7 +18,7 @@ class LocaleConfigTranslationImportTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'locale_test_translate']; + public static $modules = ['language', 'locale_test_translate']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php index 435d8881e26ec45ef8997e2c71fde1d4ac56006e..3d6c95084a74b462618dd549fb42fc148074d17a 100644 --- a/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleConfigTranslationTest.php @@ -24,7 +24,7 @@ class LocaleConfigTranslationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'contact', 'contact_test']; + public static $modules = ['locale', 'contact', 'contact_test']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleContentTest.php b/core/modules/locale/tests/src/Functional/LocaleContentTest.php index 51305bd9e11df3dc06e354a161993b7b5071ac26..e7955503a437a9a87934f574c8caf1fc06a1139d 100644 --- a/core/modules/locale/tests/src/Functional/LocaleContentTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleContentTest.php @@ -19,7 +19,7 @@ class LocaleContentTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'locale']; + public static $modules = ['node', 'locale']; /** * Verifies that machine name fields are always LTR. diff --git a/core/modules/locale/tests/src/Functional/LocaleExportTest.php b/core/modules/locale/tests/src/Functional/LocaleExportTest.php index 4df30eb1c4bee05f99e69a7377fcee3c1e4b9b4d..05621f6c13dec094de4058781d73b9630bb43f73 100644 --- a/core/modules/locale/tests/src/Functional/LocaleExportTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleExportTest.php @@ -16,7 +16,7 @@ class LocaleExportTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; /** * A user able to create languages and export translations. diff --git a/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php b/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php index c0f712c18d5a1c208d72673cca389fc591f113b2..c38da43d77fcf5a5ac01c04c7918b71c786d4015 100644 --- a/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php @@ -16,7 +16,7 @@ class LocaleFileSystemFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php b/core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php index ae787b8cd7bed66ae53b39015f83f2b4a2d94d06..c63c4e4261c051039a95846bb374cf5fa227dacd 100644 --- a/core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleImportFunctionalTest.php @@ -17,7 +17,7 @@ class LocaleImportFunctionalTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'dblog']; + public static $modules = ['locale', 'dblog']; /** * A user able to create languages and import translations. diff --git a/core/modules/locale/tests/src/Functional/LocaleJavascriptTranslationTest.php b/core/modules/locale/tests/src/Functional/LocaleJavascriptTranslationTest.php index 8cba55612c1c495900fbb2f1a6d6b001fdf46fda..1d6fde703b195b1113248755c334b72faa6cbaeb 100644 --- a/core/modules/locale/tests/src/Functional/LocaleJavascriptTranslationTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleJavascriptTranslationTest.php @@ -18,7 +18,7 @@ class LocaleJavascriptTranslationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'locale_test']; + public static $modules = ['locale', 'locale_test']; public function testFileParsing() { diff --git a/core/modules/locale/tests/src/Functional/LocaleLibraryAlterTest.php b/core/modules/locale/tests/src/Functional/LocaleLibraryAlterTest.php index f18ec5d9766a5665acc0793a980913f55de5bedb..5425fc5f4c47f891357f0ea8e0efa761659dea42 100644 --- a/core/modules/locale/tests/src/Functional/LocaleLibraryAlterTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleLibraryAlterTest.php @@ -19,7 +19,7 @@ class LocaleLibraryAlterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; /** * Verifies that the datepicker can be localized. diff --git a/core/modules/locale/tests/src/Functional/LocaleLocaleLookupTest.php b/core/modules/locale/tests/src/Functional/LocaleLocaleLookupTest.php index 97cdc227859e8e534255b46b81e6b72323c51c5e..4afd1c81ff587d4468c3b65fd065cb1c6258a853 100644 --- a/core/modules/locale/tests/src/Functional/LocaleLocaleLookupTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleLocaleLookupTest.php @@ -18,7 +18,7 @@ class LocaleLocaleLookupTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'locale_test']; + public static $modules = ['locale', 'locale_test']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocalePathTest.php b/core/modules/locale/tests/src/Functional/LocalePathTest.php index 041f7b0c7a281d7dc297f5b787eac55c259f2c71..16cc26865e19e2f3265f1512c409240e627fd79b 100644 --- a/core/modules/locale/tests/src/Functional/LocalePathTest.php +++ b/core/modules/locale/tests/src/Functional/LocalePathTest.php @@ -18,7 +18,7 @@ class LocalePathTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'locale', 'path', 'views']; + public static $modules = ['node', 'locale', 'path', 'views']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php b/core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php index 51bb5aa68fd996fb43a5b8db068594a5eac27745..57916caf04ca555270b5bef3e3ce1023e33ec624 100644 --- a/core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php +++ b/core/modules/locale/tests/src/Functional/LocalePluralFormatTest.php @@ -24,7 +24,7 @@ class LocalePluralFormatTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleStringTest.php b/core/modules/locale/tests/src/Functional/LocaleStringTest.php index 0f662cd9c5e14c0584a09c23b00d06961043c662..601b7388e610838e93d20ae34859da10508d97ad 100644 --- a/core/modules/locale/tests/src/Functional/LocaleStringTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleStringTest.php @@ -17,7 +17,7 @@ class LocaleStringTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; /** * The locale storage. diff --git a/core/modules/locale/tests/src/Functional/LocaleTranslateStringTourTest.php b/core/modules/locale/tests/src/Functional/LocaleTranslateStringTourTest.php index e288053a48a9aa2e0d25cb9d138aae376810494f..ffd5bc7b02f240ff3746e1bffb5adbb1be393216 100644 --- a/core/modules/locale/tests/src/Functional/LocaleTranslateStringTourTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleTranslateStringTourTest.php @@ -23,7 +23,7 @@ class LocaleTranslateStringTourTest extends TourTestBase { * * @var array */ - protected static $modules = ['locale', 'tour']; + public static $modules = ['locale', 'tour']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleTranslatedSchemaDefinitionTest.php b/core/modules/locale/tests/src/Functional/LocaleTranslatedSchemaDefinitionTest.php index 2f5e48f8310d136224489502cb06eb636ac8f416..39d7c3d53360a7fce2003a42bcd57105b11cc3b3 100644 --- a/core/modules/locale/tests/src/Functional/LocaleTranslatedSchemaDefinitionTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleTranslatedSchemaDefinitionTest.php @@ -17,7 +17,7 @@ class LocaleTranslatedSchemaDefinitionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'locale', 'node']; + public static $modules = ['language', 'locale', 'node']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleTranslationUiTest.php b/core/modules/locale/tests/src/Functional/LocaleTranslationUiTest.php index 5315e3d6a9d523ab36008594ab5331c6a6bb520e..a51eb876e550a4b0b0f7221b75539a1e60f9974f 100644 --- a/core/modules/locale/tests/src/Functional/LocaleTranslationUiTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleTranslationUiTest.php @@ -20,7 +20,7 @@ class LocaleTranslationUiTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; /** * Enable interface translation to English. diff --git a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php index a63e25a50a536848daebbe621218582bf356338a..1a5debf44a5e899c1607a06568a3f2d84a646b6b 100644 --- a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php +++ b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php @@ -45,7 +45,7 @@ abstract class LocaleUpdateBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale', 'locale_test']; + public static $modules = ['locale', 'locale_test']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Functional/LocaleUpdateDevelopmentReleaseTest.php b/core/modules/locale/tests/src/Functional/LocaleUpdateDevelopmentReleaseTest.php index 00b86a35e574e5119cc5b191b9afce6e7dcb06b9..5c972d1ef377a699001f688763aa0785223d6591 100644 --- a/core/modules/locale/tests/src/Functional/LocaleUpdateDevelopmentReleaseTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleUpdateDevelopmentReleaseTest.php @@ -11,7 +11,7 @@ */ class LocaleUpdateDevelopmentReleaseTest extends BrowserTestBase { - protected static $modules = ['locale', 'locale_test_development_release']; + public static $modules = ['locale', 'locale_test_development_release']; protected function setUp() { parent::setUp(); diff --git a/core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php b/core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php index f95044c986dd6ff2ca0600f2e97e4cf1959b552d..0ab558503c734205b2bac098d60fa6f526cefbcf 100644 --- a/core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleUpdateInterfaceTest.php @@ -16,7 +16,7 @@ class LocaleUpdateInterfaceTest extends LocaleUpdateBase { * * @var array */ - protected static $modules = ['locale_test_translate']; + public static $modules = ['locale_test_translate']; /** * {@inheritdoc} diff --git a/core/modules/locale/tests/src/Kernel/LocaleConfigManagerTest.php b/core/modules/locale/tests/src/Kernel/LocaleConfigManagerTest.php index 55e656e53c945ca13156f7b3ee86748e29455834..8389b6e9736a64069fa49f2d388a3da4ebe3ccfb 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleConfigManagerTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleConfigManagerTest.php @@ -18,7 +18,7 @@ class LocaleConfigManagerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'language', 'locale', 'locale_test', 'block']; + public static $modules = ['system', 'language', 'locale', 'locale_test', 'block']; /** * This test creates simple config on the fly breaking schema checking. diff --git a/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php b/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php index 10e05d0195091a4ab62f50d4a8ed68243317b422..128b7b1d30c23660c81510122d2af7db43472bf1 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php @@ -18,7 +18,7 @@ class LocaleConfigSubscriberTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'locale', 'system', 'locale_test']; + public static $modules = ['language', 'locale', 'system', 'locale_test']; /** * The configurable language manager used in this test. diff --git a/core/modules/locale/tests/src/Kernel/LocaleConfigurableLanguageManagerTest.php b/core/modules/locale/tests/src/Kernel/LocaleConfigurableLanguageManagerTest.php index 0b257528543801729ab93ccffd475b752b4f238c..07909bacc4fa676865ea52ea1e7b47fd7f7854fc 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleConfigurableLanguageManagerTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleConfigurableLanguageManagerTest.php @@ -18,7 +18,7 @@ class LocaleConfigurableLanguageManagerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['language', 'locale']; + public static $modules = ['language', 'locale']; public function testGetLanguages() { $this->installSchema('locale', ['locales_source', 'locales_target', 'locales_location']); diff --git a/core/modules/locale/tests/src/Kernel/LocaleDeprecationsTest.php b/core/modules/locale/tests/src/Kernel/LocaleDeprecationsTest.php index 98101dae91bc60214ab71bc2588d01a28d7e1abd..b98bc0552a7a4f90566f8271e2a1f198a88bff7e 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleDeprecationsTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleDeprecationsTest.php @@ -17,7 +17,7 @@ class LocaleDeprecationsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['locale', 'system']; + public static $modules = ['locale', 'system']; /** * @expectedDeprecation locale_translation_manual_status() is deprecated in Drupal 8.5.0 and will be removed before Drupal 9.0.0. It is unused by Drupal core. Duplicate this function in your own extension if you need its behavior. diff --git a/core/modules/locale/tests/src/Kernel/LocaleStringIsSafeTest.php b/core/modules/locale/tests/src/Kernel/LocaleStringIsSafeTest.php index 5cc4cde577dacef053d78da5e7fb2f5cb9b5aec7..4129cdc8837139cc5d464caee191d9a944d3da1a 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleStringIsSafeTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleStringIsSafeTest.php @@ -16,7 +16,7 @@ class LocaleStringIsSafeTest extends KernelTestBase { * * @var array */ - protected static $modules = ['locale', 'locale_test']; + public static $modules = ['locale', 'locale_test']; /** * Tests for locale_string_is_safe(). diff --git a/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php b/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php index 38f04a58dfb6a4d4997e02629e6a441cdbb305ed..8b9b7974dc5984c62a4db0fd64477904cd6b6f71 100644 --- a/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php +++ b/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php @@ -14,7 +14,7 @@ class LocaleTranslationProjectsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['locale', 'locale_test', 'system']; + public static $modules = ['locale', 'locale_test', 'system']; /** * The module handler used in this test. diff --git a/core/modules/locale/tests/src/Kernel/Migrate/MigrateLocaleConfigsTest.php b/core/modules/locale/tests/src/Kernel/Migrate/MigrateLocaleConfigsTest.php index 4327fe3363096c4668d570f7bad932aa9bacd273..b4449184a3298bb5930dae8db338c5e5448892cd 100644 --- a/core/modules/locale/tests/src/Kernel/Migrate/MigrateLocaleConfigsTest.php +++ b/core/modules/locale/tests/src/Kernel/Migrate/MigrateLocaleConfigsTest.php @@ -17,7 +17,7 @@ class MigrateLocaleConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['locale', 'language']; + public static $modules = ['locale', 'language']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php b/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php index 9e15f4649deaf0681b903ebc5add619a24f052da..2d344bdd20cf81a084047dcb5d17fa3d92dd42fa 100644 --- a/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php +++ b/core/modules/media/tests/src/Functional/FieldFormatter/OEmbedFormatterTest.php @@ -21,7 +21,7 @@ class OEmbedFormatterTest extends MediaFunctionalTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'field_ui', 'link', 'media_test_oembed', diff --git a/core/modules/media/tests/src/Functional/Hal/MediaHalJsonAnonTest.php b/core/modules/media/tests/src/Functional/Hal/MediaHalJsonAnonTest.php index 957eca370530d872929a572dcbf0ef627c576451..5b8de2dacb897d3606c3a7b4c1ce73c64900f9fc 100644 --- a/core/modules/media/tests/src/Functional/Hal/MediaHalJsonAnonTest.php +++ b/core/modules/media/tests/src/Functional/Hal/MediaHalJsonAnonTest.php @@ -20,7 +20,7 @@ class MediaHalJsonAnonTest extends MediaResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Hal/MediaHalJsonBasicAuthTest.php b/core/modules/media/tests/src/Functional/Hal/MediaHalJsonBasicAuthTest.php index 89e4a4704dbbd8b1e38f29f397f2134d86a88362..73d37b377e00b6ead4d682c01a2dece3463967fc 100644 --- a/core/modules/media/tests/src/Functional/Hal/MediaHalJsonBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Hal/MediaHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MediaHalJsonBasicAuthTest extends MediaHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonAnonTest.php b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonAnonTest.php index 52a582274023b65cf0a8e4566e265c79071a7ecd..6a5611f9c781d2748d35bf2d364a2f0f1268fc33 100644 --- a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonAnonTest.php +++ b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class MediaTypeHalJsonAnonTest extends MediaTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonBasicAuthTest.php b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonBasicAuthTest.php index f69022efa800fea6b87532589a6510ac96cd0094..0ef13e995243726c2a96ac02cf2b154acb28008a 100644 --- a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class MediaTypeHalJsonBasicAuthTest extends MediaTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonCookieTest.php b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonCookieTest.php index 1e9fc38c138bebb485608096e7df2d461ea2278b..c66b499ef5b3404347324b313421c6537b9662e1 100644 --- a/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonCookieTest.php +++ b/core/modules/media/tests/src/Functional/Hal/MediaTypeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class MediaTypeHalJsonCookieTest extends MediaTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/MediaAccessTest.php b/core/modules/media/tests/src/Functional/MediaAccessTest.php index d97487cf71766ff1fdb892d4f30d256acfb9bbc9..4672c3e2883f78a847c903f57203d5c2d5e2722a 100644 --- a/core/modules/media/tests/src/Functional/MediaAccessTest.php +++ b/core/modules/media/tests/src/Functional/MediaAccessTest.php @@ -19,7 +19,7 @@ class MediaAccessTest extends MediaFunctionalTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'media_test_source', ]; diff --git a/core/modules/media/tests/src/Functional/MediaBulkFormTest.php b/core/modules/media/tests/src/Functional/MediaBulkFormTest.php index 51359b5f7b07362562c2f7ad07272ced039a5948..fb9caf1fdd799d06f2bc436e78b5741b674fe9a1 100644 --- a/core/modules/media/tests/src/Functional/MediaBulkFormTest.php +++ b/core/modules/media/tests/src/Functional/MediaBulkFormTest.php @@ -17,7 +17,7 @@ class MediaBulkFormTest extends MediaFunctionalTestBase { * * @var array */ - protected static $modules = ['media_test_views']; + public static $modules = ['media_test_views']; /** * The test media type. diff --git a/core/modules/media/tests/src/Functional/MediaCacheTagsTest.php b/core/modules/media/tests/src/Functional/MediaCacheTagsTest.php index 161da2e686ca3a99d427cff5eae9af095096096f..4cacf3d467052c8b9339eb061de9f61e98d4b2a5 100644 --- a/core/modules/media/tests/src/Functional/MediaCacheTagsTest.php +++ b/core/modules/media/tests/src/Functional/MediaCacheTagsTest.php @@ -19,7 +19,7 @@ class MediaCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'media', 'media_test_source', ]; diff --git a/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php b/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php index 9977bd9ef07d5de1559de8f06a0daa51e560ec6d..540afac6a2edc5b377ea5f5630c60302ff5043af 100644 --- a/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php +++ b/core/modules/media/tests/src/Functional/MediaContextualLinksTest.php @@ -14,7 +14,7 @@ class MediaContextualLinksTest extends MediaFunctionalTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'contextual', ]; diff --git a/core/modules/media/tests/src/Functional/MediaFunctionalTestBase.php b/core/modules/media/tests/src/Functional/MediaFunctionalTestBase.php index 2465695ff35baeaa873aa4b723dc59773cf5c6e2..b786d2e3a18be4e19d143deea0f5f714722d037b 100644 --- a/core/modules/media/tests/src/Functional/MediaFunctionalTestBase.php +++ b/core/modules/media/tests/src/Functional/MediaFunctionalTestBase.php @@ -18,7 +18,7 @@ abstract class MediaFunctionalTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'node', 'field_ui', diff --git a/core/modules/media/tests/src/Functional/MediaInstallTest.php b/core/modules/media/tests/src/Functional/MediaInstallTest.php index 77ea8a96dfe7760adb57bc6a77010e3ee005cdf6..010f07698a941e9ca64f50b6679b979a316cd389 100644 --- a/core/modules/media/tests/src/Functional/MediaInstallTest.php +++ b/core/modules/media/tests/src/Functional/MediaInstallTest.php @@ -14,7 +14,7 @@ class MediaInstallTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['media']; + public static $modules = ['media']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/MediaTemplateSuggestionsTest.php b/core/modules/media/tests/src/Functional/MediaTemplateSuggestionsTest.php index dac5f516115bdedbc811da01af7900aec7858e36..916eb7cfc207ca875bc354e57d817278ea7f0673 100644 --- a/core/modules/media/tests/src/Functional/MediaTemplateSuggestionsTest.php +++ b/core/modules/media/tests/src/Functional/MediaTemplateSuggestionsTest.php @@ -16,7 +16,7 @@ class MediaTemplateSuggestionsTest extends MediaFunctionalTestBase { * * @var array */ - protected static $modules = ['media']; + public static $modules = ['media']; /** * Tests template suggestions from media_theme_suggestions_media(). diff --git a/core/modules/media/tests/src/Functional/MediaUiFunctionalTest.php b/core/modules/media/tests/src/Functional/MediaUiFunctionalTest.php index 70719527d5765d0521a06348e695d209da0ba30e..fe39fd828ebfe6d17d90c1a3b40d3a6ae0d6cedd 100644 --- a/core/modules/media/tests/src/Functional/MediaUiFunctionalTest.php +++ b/core/modules/media/tests/src/Functional/MediaUiFunctionalTest.php @@ -21,7 +21,7 @@ class MediaUiFunctionalTest extends MediaFunctionalTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'media_test_source', ]; diff --git a/core/modules/media/tests/src/Functional/Rest/MediaJsonBasicAuthTest.php b/core/modules/media/tests/src/Functional/Rest/MediaJsonBasicAuthTest.php index a201a3b4711c9212296de35941e23e2846f7700f..b124487d427799e2ccdc85520165142cd61266a7 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaJsonBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MediaJsonBasicAuthTest extends MediaResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Rest/MediaResourceTestBase.php b/core/modules/media/tests/src/Functional/Rest/MediaResourceTestBase.php index 1f8446918c827a4c16238a7b44e4ea2699cd9dd4..85e4e5d7314470375e77a91e67d34281be9ff7b3 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaResourceTestBase.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaResourceTestBase.php @@ -22,7 +22,7 @@ abstract class MediaResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['media']; + public static $modules = ['media']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonBasicAuthTest.php b/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonBasicAuthTest.php index c264f9471925bc08372fe0373899a0e8de6a250a..84b1a01c87ad1e95cbfa6ecffbd336ee2885aa98 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaTypeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MediaTypeJsonBasicAuthTest extends MediaTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Rest/MediaTypeResourceTestBase.php b/core/modules/media/tests/src/Functional/Rest/MediaTypeResourceTestBase.php index 7e3fb090692e2998c9ab1133cd81a5da9866cb05..a11f8ef54d0b67214f3dc7ef5ee030af4da8bbbb 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaTypeResourceTestBase.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaTypeResourceTestBase.php @@ -10,7 +10,7 @@ abstract class MediaTypeResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['media']; + public static $modules = ['media']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Rest/MediaTypeXmlBasicAuthTest.php b/core/modules/media/tests/src/Functional/Rest/MediaTypeXmlBasicAuthTest.php index e8eac062c3d3313f4d56d8bf74e41b76d2079793..95de21197dc861faaf62b31532b646090af9fb6f 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaTypeXmlBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaTypeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class MediaTypeXmlBasicAuthTest extends MediaTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/Functional/Rest/MediaXmlBasicAuthTest.php b/core/modules/media/tests/src/Functional/Rest/MediaXmlBasicAuthTest.php index 64f9523bece01eb39fb9e4e2e4e1a76f2101b9b0..971e75f42cadf62456bddb8c363c62f9395e3e1e 100644 --- a/core/modules/media/tests/src/Functional/Rest/MediaXmlBasicAuthTest.php +++ b/core/modules/media/tests/src/Functional/Rest/MediaXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class MediaXmlBasicAuthTest extends MediaResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/media/tests/src/FunctionalJavascript/MediaJavascriptTestBase.php b/core/modules/media/tests/src/FunctionalJavascript/MediaJavascriptTestBase.php index 88fc891ef606bf1d46a648319e1539f9859c07a9..390e22075ab8f815a49aa0816cf82a5a7f1e7372 100644 --- a/core/modules/media/tests/src/FunctionalJavascript/MediaJavascriptTestBase.php +++ b/core/modules/media/tests/src/FunctionalJavascript/MediaJavascriptTestBase.php @@ -19,7 +19,7 @@ abstract class MediaJavascriptTestBase extends WebDriverTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'node', 'field_ui', diff --git a/core/modules/media/tests/src/FunctionalJavascript/MediaSourceOEmbedVideoTest.php b/core/modules/media/tests/src/FunctionalJavascript/MediaSourceOEmbedVideoTest.php index b95ac3ca1f34a14155ab35909b81c73bdb2c7757..cb7ae2ac5c152cd4dfe083d6646c10c42f1c9239 100644 --- a/core/modules/media/tests/src/FunctionalJavascript/MediaSourceOEmbedVideoTest.php +++ b/core/modules/media/tests/src/FunctionalJavascript/MediaSourceOEmbedVideoTest.php @@ -19,7 +19,7 @@ class MediaSourceOEmbedVideoTest extends MediaSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['media_test_oembed']; + public static $modules = ['media_test_oembed']; use OEmbedTestTrait; diff --git a/core/modules/media/tests/src/FunctionalJavascript/MediaUiJavascriptTest.php b/core/modules/media/tests/src/FunctionalJavascript/MediaUiJavascriptTest.php index e5af67b3a98fdad0c421b1f0017fd05949b5aef7..a00a3c20100c03142cca6b3bb653e216c5847f69 100644 --- a/core/modules/media/tests/src/FunctionalJavascript/MediaUiJavascriptTest.php +++ b/core/modules/media/tests/src/FunctionalJavascript/MediaUiJavascriptTest.php @@ -19,7 +19,7 @@ class MediaUiJavascriptTest extends MediaJavascriptTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'media_test_source', ]; diff --git a/core/modules/media/tests/src/Kernel/MediaKernelTestBase.php b/core/modules/media/tests/src/Kernel/MediaKernelTestBase.php index 164f12608f09378fba6c1e1f89a37a8a0dc910df..1c6a879eeaae2eee939c0722839802162f14d960 100644 --- a/core/modules/media/tests/src/Kernel/MediaKernelTestBase.php +++ b/core/modules/media/tests/src/Kernel/MediaKernelTestBase.php @@ -22,7 +22,7 @@ abstract class MediaKernelTestBase extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'media', 'media_test_source', 'image', diff --git a/core/modules/media/tests/src/Kernel/MediaTranslationTest.php b/core/modules/media/tests/src/Kernel/MediaTranslationTest.php index dbd1e9f3e622744d9771139ae3615e6f2e8ce769..50f8a7b9d5cf76f08ae320b5514d72256ff565af 100644 --- a/core/modules/media/tests/src/Kernel/MediaTranslationTest.php +++ b/core/modules/media/tests/src/Kernel/MediaTranslationTest.php @@ -17,7 +17,7 @@ class MediaTranslationTest extends MediaKernelTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * The test media translation type. diff --git a/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonAnonTest.php b/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonAnonTest.php index 29815bcb9affa53b9b285498bc14faaf7f6308c6..d374d2b5a1f98a7435fe30c6c8f694beb50c14ac 100644 --- a/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonAnonTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonAnonTest.php @@ -18,7 +18,7 @@ class MenuLinkContentHalJsonAnonTest extends MenuLinkContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonBasicAuthTest.php b/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonBasicAuthTest.php index dd24c9b7d6867ad8017af3d36d887d4a2d22a825..40e93a0c7b56148e599a693b96fc32abd3142741 100644 --- a/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonBasicAuthTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/Hal/MenuLinkContentHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MenuLinkContentHalJsonBasicAuthTest extends MenuLinkContentHalJsonAnonTest /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Functional/LinksTest.php b/core/modules/menu_link_content/tests/src/Functional/LinksTest.php index c37e959136be0a231d6223ae9a8f240ad3ff2bd3..4d5bf9aa073f066c35db088a34a3a1122e270857 100644 --- a/core/modules/menu_link_content/tests/src/Functional/LinksTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/LinksTest.php @@ -21,7 +21,7 @@ class LinksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['router_test', 'menu_link_content']; + public static $modules = ['router_test', 'menu_link_content']; /** * The menu link plugin manager. diff --git a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentDeleteFormTest.php b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentDeleteFormTest.php index f5a8ba605d90a21fe445d738e5620f1f5149a5b9..cb1e10daf94508ac242ae2ca57fa0e9e793d2fb5 100644 --- a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentDeleteFormTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentDeleteFormTest.php @@ -18,7 +18,7 @@ class MenuLinkContentDeleteFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_link_content']; + public static $modules = ['menu_link_content']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php index 8eb99406f49ba048651c92fc8295f933b9597e6c..8796bc7488751282e87b206abd0f649dc73cfb54 100644 --- a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php @@ -17,7 +17,7 @@ class MenuLinkContentFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'menu_link_content', ]; diff --git a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentTranslationUITest.php b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentTranslationUITest.php index 39cab40796c1d08b7259ab5aef1717ba47e86c07..9fd1ce43fe97f20572c8bd91347dd839a77e7bcc 100644 --- a/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentTranslationUITest.php +++ b/core/modules/menu_link_content/tests/src/Functional/MenuLinkContentTranslationUITest.php @@ -22,7 +22,7 @@ class MenuLinkContentTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'menu_link_content', diff --git a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentJsonBasicAuthTest.php b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentJsonBasicAuthTest.php index 5c6723167eeb6e5604ad75fee8bb153a07aed491..269e94991e1404e0f1b3e87b1d114e7508396669 100644 --- a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentJsonBasicAuthTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MenuLinkContentJsonBasicAuthTest extends MenuLinkContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php index e77a74f2308c8c4673319088eb7ba1d5068dddc2..9b03899e450a2056e2c0926b5481a2110203d9e2 100644 --- a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php +++ b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentResourceTestBase.php @@ -16,7 +16,7 @@ abstract class MenuLinkContentResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content']; + public static $modules = ['menu_link_content']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentXmlBasicAuthTest.php b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentXmlBasicAuthTest.php index 4bb68bde394565410b1ea25e903db09206ee78c0..7bbf966170a1f8227f4e2ff33f12a71157fe2a29 100644 --- a/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentXmlBasicAuthTest.php +++ b/core/modules/menu_link_content/tests/src/Functional/Rest/MenuLinkContentXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class MenuLinkContentXmlBasicAuthTest extends MenuLinkContentResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php index 5ec49d61a48b5b753f29aa37dc6bfea1404a0877..118470fa1265cc5b33bae1cf2e23d3a092fee759 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentCacheabilityBubblingTest.php @@ -24,7 +24,7 @@ class MenuLinkContentCacheabilityBubblingTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'system', 'link', 'outbound_processing_test', 'url_alter_test', 'user']; + public static $modules = ['menu_link_content', 'system', 'link', 'outbound_processing_test', 'url_alter_test', 'user']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeleteTest.php b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeleteTest.php index b5a3a1f97b2de1a4c0b964e31fbc52120e6bd1a1..98dead915cda29973e115e44952d6eea4796ef7f 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeleteTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeleteTest.php @@ -15,7 +15,7 @@ class MenuLinkContentDeleteTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'link', 'system']; + public static $modules = ['menu_link_content', 'link', 'system']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeriverTest.php b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeriverTest.php index cbb0ba32f9475e02dcee0a50b35ef045b6d826fb..12d8d35afd16b061e72339fec9ca5d092c308f92 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeriverTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/MenuLinkContentDeriverTest.php @@ -18,7 +18,7 @@ class MenuLinkContentDeriverTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'link', 'system', 'menu_link_content_dynamic_route']; + public static $modules = ['menu_link_content', 'link', 'system', 'menu_link_content_dynamic_route']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkContentStubTest.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkContentStubTest.php index 2cad18980a1337ce1e67b0e09ac9473a60e77742..2c348cf554ee9f04382f055974f4e9063f6f3829 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkContentStubTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/MigrateMenuLinkContentStubTest.php @@ -17,7 +17,7 @@ class MigrateMenuLinkContentStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'link']; + public static $modules = ['menu_link_content', 'link']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTest.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTest.php index 8433b4fcd6f5aafddf675b775ed8a1ea691ee58e..8fab083230ea3d6b243dac680d5c8cda8b287ee8 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTest.php @@ -16,7 +16,7 @@ class MigrateMenuLinkTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_link_content', diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTranslationTest.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTranslationTest.php index af3a944e0233b87e055cb5437706e8bbe18735a1..d9b47b0592e32033ba56a0d54b83fb1cf6331cdd 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTranslationTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d6/MigrateMenuLinkTranslationTest.php @@ -15,7 +15,7 @@ class MigrateMenuLinkTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_ui', 'menu_link_content', 'language', diff --git a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTest.php b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTest.php index 73f5dc04f91d51992aad6b2204bf46825bd63793..e9913f6fa65d054d5ad16b2229ad88fc930a5bcb 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Migrate/d7/MigrateMenuLinkTest.php @@ -18,7 +18,7 @@ class MigrateMenuLinkTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'link', diff --git a/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php b/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php index e2daed419d9d6350ede9067c11d8561255b25bef..6a7cf4a363d1a79a7ebc04fd61fd965be6ffde5e 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php @@ -18,7 +18,7 @@ class PathAliasMenuLinkContentTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'system', 'link', 'test_page_test']; + public static $modules = ['menu_link_content', 'system', 'link', 'test_page_test']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php index 696428465f7b1386f11bdb10af2adc1c5e918f9d..5ae840f766b710c6db5c6025df9eafc96fe5ce08 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/process/LinkUriTest.php @@ -23,7 +23,7 @@ class LinkUriTest extends KernelTestBase { * * @var array */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/MenuLinkTest.php b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/MenuLinkTest.php index 907a9da09a0762978c7f925f85dcc89412a80221..7fb3a918f836e1485c193a4f6076b0c7c9ef0d3e 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/MenuLinkTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/MenuLinkTest.php @@ -17,7 +17,7 @@ class MenuLinkTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'migrate_drupal']; + public static $modules = ['menu_link_content', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/d6/MenuLinkTranslationTest.php b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/d6/MenuLinkTranslationTest.php index 303556c8584918d29ae0cf61796d7d5ac0d8f683..d373bb25873cd258fcc927a317a2609062e91ea0 100644 --- a/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/d6/MenuLinkTranslationTest.php +++ b/core/modules/menu_link_content/tests/src/Kernel/Plugin/migrate/source/d6/MenuLinkTranslationTest.php @@ -15,7 +15,7 @@ class MenuLinkTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'migrate_drupal']; + public static $modules = ['menu_link_content', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/menu_ui/src/Tests/MenuWebTestBase.php b/core/modules/menu_ui/src/Tests/MenuWebTestBase.php index 6a902c58c7c8ee9b126db64803a54728a5c57713..a8b9862223dff93feaa4fb9bda1f3945eff76a17 100644 --- a/core/modules/menu_ui/src/Tests/MenuWebTestBase.php +++ b/core/modules/menu_ui/src/Tests/MenuWebTestBase.php @@ -21,7 +21,7 @@ abstract class MenuWebTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'menu_link_content']; + public static $modules = ['menu_ui', 'menu_link_content']; /** * Fetches the menu item from the database and compares it to expected item. diff --git a/core/modules/menu_ui/tests/src/Functional/MenuCacheTagsTest.php b/core/modules/menu_ui/tests/src/Functional/MenuCacheTagsTest.php index 5050ca49ad4a755db22339735dacb6a78280c8dd..c0d36690bcab545d6994f3de5201f1eb82cf311d 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuCacheTagsTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuCacheTagsTest.php @@ -17,7 +17,7 @@ class MenuCacheTagsTest extends PageCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui', 'block', 'test_page_test']; + public static $modules = ['menu_ui', 'block', 'test_page_test']; /** * Tests cache tags presence and invalidation of the Menu entity. diff --git a/core/modules/menu_ui/tests/src/Functional/MenuLinkReorderTest.php b/core/modules/menu_ui/tests/src/Functional/MenuLinkReorderTest.php index d79480896311321f7b11c95180266de8dbcc647b..4d2bba60d055d82620e6494d92243636d7f81a1d 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuLinkReorderTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuLinkReorderTest.php @@ -23,7 +23,7 @@ class MenuLinkReorderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'test_page_test', 'node', 'block']; + public static $modules = ['menu_ui', 'test_page_test', 'node', 'block']; /** * Test creating, editing, deleting menu links via node form widget. diff --git a/core/modules/menu_ui/tests/src/Functional/MenuUiContentModerationTest.php b/core/modules/menu_ui/tests/src/Functional/MenuUiContentModerationTest.php index 790ee7c7242dbab65d3143e413aa11b0ef072388..b5d4b43c8224dc8824cc2bbfb58855bf1d8641e2 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuUiContentModerationTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuUiContentModerationTest.php @@ -19,7 +19,7 @@ class MenuUiContentModerationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'content_moderation', 'node', 'menu_ui', 'test_page_test']; + public static $modules = ['block', 'content_moderation', 'node', 'menu_ui', 'test_page_test']; /** * {@inheritdoc} diff --git a/core/modules/menu_ui/tests/src/Functional/MenuUiNodeTest.php b/core/modules/menu_ui/tests/src/Functional/MenuUiNodeTest.php index 1dcf8945a1d5ba3f904e6b2e1864dbbe80325739..7e22bcb46de13a44f02827c96e817c52f63b7e8f 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuUiNodeTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuUiNodeTest.php @@ -26,7 +26,7 @@ class MenuUiNodeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'test_page_test', 'node', 'block', 'locale', 'language', 'content_translation']; + public static $modules = ['menu_ui', 'test_page_test', 'node', 'block', 'locale', 'language', 'content_translation']; protected function setUp() { parent::setUp(); diff --git a/core/modules/menu_ui/tests/src/Functional/MenuUninstallTest.php b/core/modules/menu_ui/tests/src/Functional/MenuUninstallTest.php index 5fea50f59c2ddd74569a21f28009481d71ab75cf..a0320f44b0ff67cd6736819c6263961c6557772d 100644 --- a/core/modules/menu_ui/tests/src/Functional/MenuUninstallTest.php +++ b/core/modules/menu_ui/tests/src/Functional/MenuUninstallTest.php @@ -17,7 +17,7 @@ class MenuUninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * Tests Menu uninstall. diff --git a/core/modules/menu_ui/tests/src/Kernel/Migrate/MigrateMenuSettingsTest.php b/core/modules/menu_ui/tests/src/Kernel/Migrate/MigrateMenuSettingsTest.php index a3111603cd1e603672f544c5fca5c00f1a9229e1..f87bc5fe7828cd66c92599eb9b1df194c73a83e1 100644 --- a/core/modules/menu_ui/tests/src/Kernel/Migrate/MigrateMenuSettingsTest.php +++ b/core/modules/menu_ui/tests/src/Kernel/Migrate/MigrateMenuSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateMenuSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Functional/process/DownloadFunctionalTest.php b/core/modules/migrate/tests/src/Functional/process/DownloadFunctionalTest.php index a9f40dab022ede015bc7b058c8532a820beb2287..5e890a0e6a0756326b4376f1d4ff9cc0551c8d9a 100644 --- a/core/modules/migrate/tests/src/Functional/process/DownloadFunctionalTest.php +++ b/core/modules/migrate/tests/src/Functional/process/DownloadFunctionalTest.php @@ -17,7 +17,7 @@ class DownloadFunctionalTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate', 'file']; + public static $modules = ['migrate', 'file']; /** * Tests that an exception is thrown bu migration continues with the next row. diff --git a/core/modules/migrate/tests/src/Kernel/HighWaterNotJoinableTest.php b/core/modules/migrate/tests/src/Kernel/HighWaterNotJoinableTest.php index d8d7c1970ea82b99faae9429fd804ac81fd4c5a1..4198579026724bae682847ae832d4c18287a7712 100644 --- a/core/modules/migrate/tests/src/Kernel/HighWaterNotJoinableTest.php +++ b/core/modules/migrate/tests/src/Kernel/HighWaterNotJoinableTest.php @@ -13,7 +13,7 @@ class HighWaterNotJoinableTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate', 'migrate_drupal', 'migrate_high_water_test']; + public static $modules = ['migrate', 'migrate_drupal', 'migrate_high_water_test']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/HighWaterTest.php b/core/modules/migrate/tests/src/Kernel/HighWaterTest.php index daf4c62365d551fe1b2f042e991512de6897dcff..faffb663585cd8337481ab76fdb339eca63a06b3 100644 --- a/core/modules/migrate/tests/src/Kernel/HighWaterTest.php +++ b/core/modules/migrate/tests/src/Kernel/HighWaterTest.php @@ -12,7 +12,7 @@ class HighWaterTest extends MigrateTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'system', 'user', 'node', diff --git a/core/modules/migrate/tests/src/Kernel/MigrateBundleTest.php b/core/modules/migrate/tests/src/Kernel/MigrateBundleTest.php index ddecd95fc83f9513b438d4586a4de12276af95a4..b6c3051330679d3ae20ed4576eb6d7b37d5d11e0 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateBundleTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateBundleTest.php @@ -18,7 +18,7 @@ class MigrateBundleTest extends MigrateTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'text', 'user']; + public static $modules = ['taxonomy', 'text', 'user']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateConfigRollbackTest.php b/core/modules/migrate/tests/src/Kernel/MigrateConfigRollbackTest.php index 13d604a734541121c38be5a85888f3b435be4efd..27aa45bcceb045d21c51cbebebe428d2320a58cb 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateConfigRollbackTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateConfigRollbackTest.php @@ -16,7 +16,7 @@ class MigrateConfigRollbackTest extends MigrateTestBase { * * @var array */ - protected static $modules = ['system', 'language', 'config_translation']; + public static $modules = ['system', 'language', 'config_translation']; /** * Tests rolling back configuration. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateEmbeddedDataTest.php b/core/modules/migrate/tests/src/Kernel/MigrateEmbeddedDataTest.php index 0f02bcd985ec36aae800372dc67f893089d5a62c..019ac42ab9e7529e88ca1bc1cad5051bbfa57574 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateEmbeddedDataTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateEmbeddedDataTest.php @@ -16,7 +16,7 @@ class MigrateEmbeddedDataTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * Tests the embedded_data source plugin. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateEntityContentBaseTest.php b/core/modules/migrate/tests/src/Kernel/MigrateEntityContentBaseTest.php index 85a563bf1243a56b9f9b7013517d355640b3dcf5..13803bd2116adbe02fe7bad88cfc154b9b681388 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateEntityContentBaseTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateEntityContentBaseTest.php @@ -24,7 +24,7 @@ class MigrateEntityContentBaseTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate', 'user', 'language', 'entity_test']; + public static $modules = ['migrate', 'user', 'language', 'entity_test']; /** * The storage for entity_test_mul. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateEventsTest.php b/core/modules/migrate/tests/src/Kernel/MigrateEventsTest.php index bd94e30c21c66883a22fc6432294689f8975dc8a..8dc4aa9ad4808bd4b038539eb33edbaa2a61755e 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateEventsTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateEventsTest.php @@ -30,7 +30,7 @@ class MigrateEventsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate', 'migrate_events_test']; + public static $modules = ['migrate', 'migrate_events_test']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateExternalTranslatedTest.php b/core/modules/migrate/tests/src/Kernel/MigrateExternalTranslatedTest.php index 8f87bafdfcb4bb2cd4e08fd916334c61046ee250..d9728f587e0a7b186284d293a2ff7609f31a7b53 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateExternalTranslatedTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateExternalTranslatedTest.php @@ -19,7 +19,7 @@ class MigrateExternalTranslatedTest extends MigrateTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'language', 'node', 'field', 'migrate_external_translated_test']; + public static $modules = ['system', 'user', 'language', 'node', 'field', 'migrate_external_translated_test']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateInterruptionTest.php b/core/modules/migrate/tests/src/Kernel/MigrateInterruptionTest.php index d451d050fd3205d07c806b27b187a51677403fa9..207af4d8e1b192ef932931030059b60cf6490b9e 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateInterruptionTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateInterruptionTest.php @@ -20,7 +20,7 @@ class MigrateInterruptionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate', 'migrate_events_test']; + public static $modules = ['migrate', 'migrate_events_test']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateMessageTest.php b/core/modules/migrate/tests/src/Kernel/MigrateMessageTest.php index ad0890418d848c36a7a08f26611b7ace0796f286..33013367e9bb04e2c3a615e7d4692add28578b3b 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateMessageTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateMessageTest.php @@ -21,7 +21,7 @@ class MigrateMessageTest extends KernelTestBase implements MigrateMessageInterfa * * @var array */ - protected static $modules = ['migrate', 'system']; + public static $modules = ['migrate', 'system']; /** * Migration to run. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateRollbackEntityConfigTest.php b/core/modules/migrate/tests/src/Kernel/MigrateRollbackEntityConfigTest.php index 0a54a817e286fe5da2502c624d436b28d9e35df5..d43ad8af586b318cd93eb2b0294c72757c51abb5 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateRollbackEntityConfigTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateRollbackEntityConfigTest.php @@ -17,7 +17,7 @@ class MigrateRollbackEntityConfigTest extends MigrateTestBase { * * @var array */ - protected static $modules = ['field', 'taxonomy', 'text', 'language', 'config_translation', 'user']; + public static $modules = ['field', 'taxonomy', 'text', 'language', 'config_translation', 'user']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateRollbackTest.php b/core/modules/migrate/tests/src/Kernel/MigrateRollbackTest.php index 25b58f91ab4c8487834dba4e6cd7cb15090126f7..de1666be631d1a1e080b209840f74e563a0f8b49 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateRollbackTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateRollbackTest.php @@ -20,7 +20,7 @@ class MigrateRollbackTest extends MigrateTestBase { * * @var array */ - protected static $modules = ['field', 'taxonomy', 'text', 'user']; + public static $modules = ['field', 'taxonomy', 'text', 'user']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php b/core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php index 4a7a3e8c19ceab42bb8d019d9982c45ba60623ce..8c5e01e5134774b617ceb916a3274e4b14b29768 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateSkipRowTest.php @@ -19,7 +19,7 @@ class MigrateSkipRowTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate', 'migrate_prepare_row_test']; + public static $modules = ['migrate', 'migrate_prepare_row_test']; /** * Tests migration interruptions. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php index 3dcd26f65fcc0582ee2cd863447a3866ea10a7c6..c4bd6cd5e0c6e45660f648693e75758512030b03 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateSourceTestBase.php @@ -15,7 +15,7 @@ abstract class MigrateSourceTestBase extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * The mocked migration. diff --git a/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php b/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php index e44bdb97167679d4018030e32e2d9d6d14032f24..51e61d40ca4985c7ea3c302d93331707c34204d4 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php +++ b/core/modules/migrate/tests/src/Kernel/MigrateTestBase.php @@ -47,7 +47,7 @@ abstract class MigrateTestBase extends KernelTestBase implements MigrateMessageI */ protected $sourceDatabase; - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/MigrationTest.php b/core/modules/migrate/tests/src/Kernel/MigrationTest.php index 72b5b2444d916e55ad42d1bbe4718935b432066c..5fe56ecf9556f107cd4ec9951257e60d4e934233 100644 --- a/core/modules/migrate/tests/src/Kernel/MigrationTest.php +++ b/core/modules/migrate/tests/src/Kernel/MigrationTest.php @@ -18,7 +18,7 @@ class MigrationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['migrate', 'field']; + public static $modules = ['migrate', 'field']; /** * Tests Migration::set(). diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php index 242f54c3535d3a8cf85aace2bca91810da9d3b1c..dcd070c3375804257b04c02be5bb59e6fd45513f 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/EntityExistsTest.php @@ -17,7 +17,7 @@ class EntityExistsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate', 'system', 'user']; + public static $modules = ['migrate', 'system', 'user']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/EntityRevisionTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/EntityRevisionTest.php index 2e2d42ad6bae12c0013675bfe74c8f143e0ab584..d15446fbad90974c1184aa7a72f814c29764716d 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/EntityRevisionTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/EntityRevisionTest.php @@ -19,7 +19,7 @@ class EntityRevisionTest extends MigrateTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'field', 'filter', diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php index 85b125604ca09076e11a7114c5461c522347a7ce..bb5d04dbd17e11db055dd1839ee7bd0e198c9b13 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php @@ -16,7 +16,7 @@ class LogTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * Test the Log plugin. diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationDirectoryTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationDirectoryTest.php index a21b3037f2cebac0fba7745d2b9c6e8ece2107f0..b85aea478fe4f34ae6b24d63f0f2864960c5c1f7 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationDirectoryTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationDirectoryTest.php @@ -15,7 +15,7 @@ class MigrationDirectoryTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migration_directory_test']; + public static $modules = ['migration_directory_test']; /** * Tests that migrations in the migration_templates directory are created. diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginConfigurationTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginConfigurationTest.php index 0f789bbc4923fdc7dd1b0a621da83db799d341f2..827af91ee61ae6640c3527bd6e23f674aca2e995 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginConfigurationTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginConfigurationTest.php @@ -15,7 +15,7 @@ class MigrationPluginConfigurationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'migrate', 'migrate_drupal', // Test with a simple migration. diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php index 2e418346018ba0222c0e908a7b4fda9abd8a0b5a..7bfba70f27a12a92e55ce0375d3a2e0abe2a8cc6 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationPluginListTest.php @@ -22,7 +22,7 @@ class MigrationPluginListTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'migrate', // Test with all modules containing Drupal migrations. 'action', diff --git a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php index c2f678601a515c78b70586335f18bc2052fe9df5..a8dddd277ac9929353d018127ac503eb8dbf82cc 100644 --- a/core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php +++ b/core/modules/migrate/tests/src/Kernel/Plugin/MigrationTest.php @@ -17,7 +17,7 @@ class MigrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * Tests Migration::getProcessPlugins() diff --git a/core/modules/migrate/tests/src/Kernel/QueryBatchTest.php b/core/modules/migrate/tests/src/Kernel/QueryBatchTest.php index 58f3c258916c216811bc4fe36d5c42421f87b0a2..e92e1441e15bb530158e7d958287b1f8130bd206 100644 --- a/core/modules/migrate/tests/src/Kernel/QueryBatchTest.php +++ b/core/modules/migrate/tests/src/Kernel/QueryBatchTest.php @@ -26,7 +26,7 @@ class QueryBatchTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'migrate', 'migrate_query_batch_test', ]; diff --git a/core/modules/migrate/tests/src/Kernel/process/DownloadTest.php b/core/modules/migrate/tests/src/Kernel/process/DownloadTest.php index 23a1ae7d65a96e83eca38939a97973260447217e..11674c0bc2f52880f4cdb23e7aaf2061d49ecd02 100644 --- a/core/modules/migrate/tests/src/Kernel/process/DownloadTest.php +++ b/core/modules/migrate/tests/src/Kernel/process/DownloadTest.php @@ -20,7 +20,7 @@ class DownloadTest extends FileTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php b/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php index 8dc73f492449c1db4097c19bf5eae6ffe656697b..9338b9e3c92321cb4380472e79f94843b3bc9e08 100644 --- a/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php +++ b/core/modules/migrate/tests/src/Kernel/process/ExtractTest.php @@ -16,7 +16,7 @@ class ExtractTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * Returns test migration definition. diff --git a/core/modules/migrate/tests/src/Kernel/process/FileCopyTest.php b/core/modules/migrate/tests/src/Kernel/process/FileCopyTest.php index e07db9a7142cf68e928546cc0f9f75a680bafe2e..e107f4157407640887d00af2c33ed1a664429f22 100644 --- a/core/modules/migrate/tests/src/Kernel/process/FileCopyTest.php +++ b/core/modules/migrate/tests/src/Kernel/process/FileCopyTest.php @@ -23,7 +23,7 @@ class FileCopyTest extends FileTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate', 'system']; + public static $modules = ['migrate', 'system']; /** * The file system service. diff --git a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php index caae69de613ca621f7a518db9175f4d61a4e3092..dc63de3db62282ea65afb2f5bed918980ddd16db 100644 --- a/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php +++ b/core/modules/migrate/tests/src/Kernel/process/HandleMultiplesTest.php @@ -16,7 +16,7 @@ class HandleMultiplesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate']; + public static $modules = ['migrate']; /** * Provides the test migration definition. diff --git a/core/modules/migrate/tests/src/Kernel/process/RouteTest.php b/core/modules/migrate/tests/src/Kernel/process/RouteTest.php index 0d1c687ed1980dd4186d645b5a63bdce28d18ee6..3f212356db2e2402a6d5ac89d5f703d09146264f 100644 --- a/core/modules/migrate/tests/src/Kernel/process/RouteTest.php +++ b/core/modules/migrate/tests/src/Kernel/process/RouteTest.php @@ -21,7 +21,7 @@ class RouteTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * Tests Route plugin based on providerTestRoute() values. diff --git a/core/modules/migrate_drupal/tests/src/Kernel/CckFieldBackwardsCompatibilityTest.php b/core/modules/migrate_drupal/tests/src/Kernel/CckFieldBackwardsCompatibilityTest.php index f89ac847a4cbe974f4e69210b5e2441f8148f8a7..60e08e5a9e8e18632e18867781d06b8af764c594 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/CckFieldBackwardsCompatibilityTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/CckFieldBackwardsCompatibilityTest.php @@ -14,7 +14,7 @@ class CckFieldBackwardsCompatibilityTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'migrate_cckfield_plugin_manager_test']; + public static $modules = ['file', 'migrate_cckfield_plugin_manager_test']; /** * Ensures that the cckfield backwards compatibility layer is invoked. diff --git a/core/modules/migrate_drupal/tests/src/Kernel/MigrateCckFieldPluginManagerTest.php b/core/modules/migrate_drupal/tests/src/Kernel/MigrateCckFieldPluginManagerTest.php index cbcd929d90763e521f4bd10a07f511c22da70b0c..7eb68ba3389093911c288fc632882265d619a5b7 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/MigrateCckFieldPluginManagerTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/MigrateCckFieldPluginManagerTest.php @@ -14,7 +14,7 @@ class MigrateCckFieldPluginManagerTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file', 'text', 'migrate_cckfield_plugin_manager_test']; + public static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file', 'text', 'migrate_cckfield_plugin_manager_test']; /** * Tests that the correct MigrateCckField plugins are used. diff --git a/core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php b/core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php index e091b1c5250ba9ac291707435e83affebea39868..063c99cb36473f234336648ed0f4515a5d20f400 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/MigrateDrupalTestBase.php @@ -15,7 +15,7 @@ abstract class MigrateDrupalTestBase extends MigrateTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file']; + public static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/MigrateFieldPluginManagerTest.php b/core/modules/migrate_drupal/tests/src/Kernel/MigrateFieldPluginManagerTest.php index 415d9d91eab541eaefde469fb5c4e489521f0e05..284a267a1f96dda80ab8899ee452e95ebdd9c3db 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/MigrateFieldPluginManagerTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/MigrateFieldPluginManagerTest.php @@ -14,7 +14,7 @@ class MigrateFieldPluginManagerTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file', 'image', 'text', 'link', 'migrate_field_plugin_manager_test']; + public static $modules = ['system', 'user', 'field', 'migrate_drupal', 'options', 'file', 'image', 'text', 'link', 'migrate_field_plugin_manager_test']; /** * Tests that the correct MigrateField plugins are used. diff --git a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php index 7b508b119a79751cc4facbb62d1af6ff3c0419b4..1bcedcfa67663ff990c0bbc6e11a86350dfb022c 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php @@ -32,7 +32,7 @@ class ContentEntityTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'user', 'migrate', 'migrate_drupal', diff --git a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php index bf72ed11b5cd535fa534181b260c636a587f3d91..932af990373c4549445c2a3b69a394bf3d98940e 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableMultiRowTest.php @@ -16,7 +16,7 @@ class VariableMultiRowTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal']; + public static $modules = ['migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableTest.php b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableTest.php index 71a80a79659c79ee1eccfb6e598a56c43dd824c5..b68c4b467b35795646126fd7d900dc9f2fb96870 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/VariableTest.php @@ -16,7 +16,7 @@ class VariableTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal']; + public static $modules = ['migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/i18nVariableTest.php b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/i18nVariableTest.php index 8a163cd6ad3a4b4e92bcb3008d982125ba5b3fd8..8c3e6044eb527c347369a798ed4ee2f54c3d8803 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/i18nVariableTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d6/i18nVariableTest.php @@ -16,7 +16,7 @@ class i18nVariableTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal']; + public static $modules = ['migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php index 0cb0dcf5d8447d6ea79d63ae831b1853bc337e48..3cf4031907387ff2536c041df636a2e89a4d645a 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/d8/ConfigTest.php @@ -15,7 +15,7 @@ class ConfigTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal']; + public static $modules = ['migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/EntityContentBaseTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/EntityContentBaseTest.php index 3dfba9d5ce5f7ce97910cccb9589308d101bf485..db44c6345058076a553c9cde0935f81d4b0a49ec 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d6/EntityContentBaseTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/EntityContentBaseTest.php @@ -17,7 +17,7 @@ class EntityContentBaseTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_overwrite_test']; + public static $modules = ['migrate_overwrite_test']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/FollowUpMigrationsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/FollowUpMigrationsTest.php index 37d2f44b1b7ebe6261dea5fc3a86f6466a77b563..5225ce5d83148cbcd1256cbed0dbeb2fc235b452 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d6/FollowUpMigrationsTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/FollowUpMigrationsTest.php @@ -15,7 +15,7 @@ class FollowUpMigrationsTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php index e7dcd863d93b0acbceaf847897ef80aa0eebedc5..3a9467e0376285023d689a8ca573eba3c2cd9bbd 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d6/MigrateDrupal6TestBase.php @@ -12,7 +12,7 @@ abstract class MigrateDrupal6TestBase extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'datetime', 'filter', 'image', diff --git a/core/modules/migrate_drupal/tests/src/Kernel/d7/FollowUpMigrationsTest.php b/core/modules/migrate_drupal/tests/src/Kernel/d7/FollowUpMigrationsTest.php index d5e7754507e7e5b4b4f807ecc6dcede923438455..5417df47727948d0263db6049e7c7325618056a6 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/d7/FollowUpMigrationsTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/d7/FollowUpMigrationsTest.php @@ -17,7 +17,7 @@ class FollowUpMigrationsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'comment', 'datetime', diff --git a/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php b/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php index b82bfb1a4c9df8185e4567bbc7702c5f7d01439e..3fa00568b5a3148630c1a9c28882d63a46b62ae5 100644 --- a/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php +++ b/core/modules/migrate_drupal/tests/src/Kernel/dependencies/MigrateDependenciesTest.php @@ -16,7 +16,7 @@ class MigrateDependenciesTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['aggregator', 'comment']; + public static $modules = ['aggregator', 'comment']; /** * Tests that the order is correct when loading several migrations. diff --git a/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php b/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php index 78cc261752539d2f904dd9335eff90eba132823e..35ea71d309acc5a2196fe37bd68344b0b6cbbe21 100644 --- a/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php +++ b/core/modules/migrate_drupal_ui/src/Tests/MigrateUpgradeTestBase.php @@ -37,7 +37,7 @@ abstract class MigrateUpgradeTestBase extends WebTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'migrate_drupal_ui', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateAccessTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateAccessTest.php index 307f75e8bcee7eb1b03da7730f2470d184e92880..3c475e20688fa7d98efe277ed5291bc9c708b9f8 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateAccessTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateAccessTest.php @@ -16,7 +16,7 @@ class MigrateAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['migrate_drupal_ui']; + public static $modules = ['migrate_drupal_ui']; /** * Tests that only user 1 can access the migrate UI. diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeFormStepsTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeFormStepsTest.php index 8bc693827e53e81db88671f0b11930edc4b63fde..caa60c3438393c103036e9f90ffbf59bbeadc908 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeFormStepsTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeFormStepsTest.php @@ -20,7 +20,7 @@ class MigrateUpgradeFormStepsTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal_ui']; + public static $modules = ['migrate_drupal_ui']; /** * {@inheritdoc} diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php index fb3c084717e302fa624be352d2df02f861cdf7f0..5c97a69070dcedda5ceaaf1ebcaa40f7fb8c235f 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/MigrateUpgradeReviewPageTestBase.php @@ -21,7 +21,7 @@ abstract class MigrateUpgradeReviewPageTestBase extends MigrateUpgradeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal_ui']; + public static $modules = ['migrate_drupal_ui']; /** * Tests the migrate upgrade review form. diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nReviewPageTest.php index e9f8c6303c2208f9b5e70f5cee5eb63ac8ccef25..a4deaa25cf72ed47de073116def37f40c151c0d1 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nReviewPageTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6I18nReviewPageTest.php @@ -15,7 +15,7 @@ class MigrateUpgrade6I18nReviewPageTest extends MigrateUpgradeI18nReviewPageTest /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'telephone', 'aggregator', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6NoMultilingualTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6NoMultilingualTest.php index a5f58a029b4b54afbd5490e9f10bc94b181c325b..e07e8bf211f7c1547d4a6c4430abee879f5bb558 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6NoMultilingualTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6NoMultilingualTest.php @@ -16,7 +16,7 @@ class MigrateUpgrade6NoMultilingualTest extends MigrateUpgradeExecuteTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'config_translation', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6ReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6ReviewPageTest.php index 19937306621156fb7860a00ad931e966e3e8c844..d2fe095b5044ad2b8f885f604624a3081085772d 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6ReviewPageTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6ReviewPageTest.php @@ -15,7 +15,7 @@ class MigrateUpgrade6ReviewPageTest extends MigrateUpgradeReviewPageTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'config_translation', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php index 5c1e7a4aef3a78cf5c09ba797e02c027c6f1699d..d8ffd0296437255a4a8a806ee7fb09973e9c9fbe 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d6/MigrateUpgrade6Test.php @@ -20,7 +20,7 @@ class MigrateUpgrade6Test extends MigrateUpgradeExecuteTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'config_translation', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7NoMultilingualTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7NoMultilingualTest.php index 203ee68fe422e8a42c86881b206d9503774d4e46..350c10295c2a0606171fb82544f4026a0f28488c 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7NoMultilingualTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7NoMultilingualTest.php @@ -16,7 +16,7 @@ class MigrateUpgrade7NoMultilingualTest extends MigrateUpgradeExecuteTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'file', 'language', 'content_translation', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7ReviewPageTest.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7ReviewPageTest.php index 7529b71161539ece1574565cd18c31cf13ea1bbc..c1686db643738913d0dad42401a7bbd1faae99cc 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7ReviewPageTest.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7ReviewPageTest.php @@ -15,7 +15,7 @@ class MigrateUpgrade7ReviewPageTest extends MigrateUpgradeReviewPageTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'telephone', diff --git a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php index f38d9544567e8fe0c6c0f87b57d7ea70013b1eb1..c5fbacc1a11c9541be75a9464098e1fc6b25b224 100644 --- a/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php +++ b/core/modules/migrate_drupal_ui/tests/src/Functional/d7/MigrateUpgrade7Test.php @@ -20,7 +20,7 @@ class MigrateUpgrade7Test extends MigrateUpgradeExecuteTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'file', 'language', 'content_translation', diff --git a/core/modules/node/src/Tests/NodeRevisionsTest.php b/core/modules/node/src/Tests/NodeRevisionsTest.php index a5ef4a0c276b515b3dec4f931379ebc04ab01e40..fdc929a84c7002e2ca4b10f7e68f6dddac122407 100644 --- a/core/modules/node/src/Tests/NodeRevisionsTest.php +++ b/core/modules/node/src/Tests/NodeRevisionsTest.php @@ -35,7 +35,7 @@ class NodeRevisionsTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'contextual', 'datetime', 'language', 'content_translation']; + public static $modules = ['node', 'contextual', 'datetime', 'language', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/node/src/Tests/NodeTestBase.php b/core/modules/node/src/Tests/NodeTestBase.php index c1fbf44156a36d23fda7feb18c61cc14072faacb..643684cde43c02cc984980c0efba8abc0d5106a1 100644 --- a/core/modules/node/src/Tests/NodeTestBase.php +++ b/core/modules/node/src/Tests/NodeTestBase.php @@ -19,7 +19,7 @@ abstract class NodeTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'datetime']; + public static $modules = ['node', 'datetime']; /** * The node access control handler. diff --git a/core/modules/node/src/Tests/NodeTypeTest.php b/core/modules/node/src/Tests/NodeTypeTest.php index b23d208d024003711fa62ccdf1bd62ec723b9f92..9938bb0ab53cfd4d75fe2da892bd5ea07e06af43 100644 --- a/core/modules/node/src/Tests/NodeTypeTest.php +++ b/core/modules/node/src/Tests/NodeTypeTest.php @@ -21,7 +21,7 @@ class NodeTypeTest extends NodeTestBase { * * @var array */ - protected static $modules = ['field_ui', 'block']; + public static $modules = ['field_ui', 'block']; /** * Ensures that node type functions (node_type_get_*) work correctly. diff --git a/core/modules/node/src/Tests/PagePreviewTest.php b/core/modules/node/src/Tests/PagePreviewTest.php index 105d0dad030277bcb7f4dc89febfab76e8bb8e70..2bc9cd3ce1e00c266a45d0d1dc34e6d797cb9bca 100644 --- a/core/modules/node/src/Tests/PagePreviewTest.php +++ b/core/modules/node/src/Tests/PagePreviewTest.php @@ -28,7 +28,7 @@ class PagePreviewTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node', 'taxonomy', 'comment', 'image', 'file', 'text', 'node_test', 'menu_ui']; + public static $modules = ['node', 'taxonomy', 'comment', 'image', 'file', 'text', 'node_test', 'menu_ui']; /** * The name of the created field. diff --git a/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php b/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php index 38578e37e05350ae9174feabd65e73b3c44946fa..dc23d0ce55f297cda9b74b77908c0e3034687d1b 100644 --- a/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php +++ b/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php @@ -17,7 +17,7 @@ class NodeContextualLinksTest extends NodeTestBase { * * @var array */ - protected static $modules = ['contextual']; + public static $modules = ['contextual']; /** * Views used by this test. diff --git a/core/modules/node/src/Tests/Views/NodeTestBase.php b/core/modules/node/src/Tests/Views/NodeTestBase.php index 652d3ce82c36ddfae91505852ee10bbcd486fa45..cb765d4c564b5cd171b482d856e2a02f9f27ff1c 100644 --- a/core/modules/node/src/Tests/Views/NodeTestBase.php +++ b/core/modules/node/src/Tests/Views/NodeTestBase.php @@ -20,7 +20,7 @@ abstract class NodeTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node_test_views']; + public static $modules = ['node_test_views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php b/core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php index e684f62475623ab7049140d99e6a602f9bf5ef20..f474c54f7cd1941cdcbc0ec17767222d1eed0f86 100644 --- a/core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php +++ b/core/modules/node/tests/src/Functional/Hal/NodeHalJsonAnonTest.php @@ -18,7 +18,7 @@ class NodeHalJsonAnonTest extends NodeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Hal/NodeHalJsonBasicAuthTest.php b/core/modules/node/tests/src/Functional/Hal/NodeHalJsonBasicAuthTest.php index 5e53e251d7218f35aa07fd44d6a208d41f13c459..0c973a168ef0fee1e39545dc4e48a10c9376ab10 100644 --- a/core/modules/node/tests/src/Functional/Hal/NodeHalJsonBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Hal/NodeHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class NodeHalJsonBasicAuthTest extends NodeHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonAnonTest.php b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonAnonTest.php index 7db4183fed7152f2430dae8aa56be299e31974ae..68f531c89e754d6eb766f6ecb51cf4dff1e0ac0d 100644 --- a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonAnonTest.php +++ b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class NodeTypeHalJsonAnonTest extends NodeTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonBasicAuthTest.php b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonBasicAuthTest.php index 4f74b1676313dedeac139714f6d43c6f7b98b66a..fb7098bdc440d54fa44b29fb6039d6309315e39d 100644 --- a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class NodeTypeHalJsonBasicAuthTest extends NodeTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonCookieTest.php b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonCookieTest.php index b74f71ee908fd26ed8f88a02d6f8db96949b411e..9d7f5a9a32e10b8d0075594a046194ea339eef54 100644 --- a/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonCookieTest.php +++ b/core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class NodeTypeHalJsonCookieTest extends NodeTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Migrate/d6/MigrateNodeRevisionTest.php b/core/modules/node/tests/src/Functional/Migrate/d6/MigrateNodeRevisionTest.php index 27a294daf303cb0ea6b2b165e77fc18c295c36eb..4065278bcfbb033563d31ef0d552f7f02a3bcdbd 100644 --- a/core/modules/node/tests/src/Functional/Migrate/d6/MigrateNodeRevisionTest.php +++ b/core/modules/node/tests/src/Functional/Migrate/d6/MigrateNodeRevisionTest.php @@ -14,7 +14,7 @@ class MigrateNodeRevisionTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'content_translation', 'menu_ui']; + public static $modules = ['language', 'content_translation', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Migrate/d7/NodeMigrateDeriverTest.php b/core/modules/node/tests/src/Functional/Migrate/d7/NodeMigrateDeriverTest.php index fb9ed7a6d9366b38e5a70819adb615daf6fd762a..621cdb6d49673778da08d571f71c57651907cc5a 100644 --- a/core/modules/node/tests/src/Functional/Migrate/d7/NodeMigrateDeriverTest.php +++ b/core/modules/node/tests/src/Functional/Migrate/d7/NodeMigrateDeriverTest.php @@ -11,7 +11,7 @@ */ class NodeMigrateDeriverTest extends MigrateDrupal7TestBase { - protected static $modules = ['node']; + public static $modules = ['node']; public function testBuilder() { $process = $this->getMigration('d7_node:test_content_type')->getProcess(); diff --git a/core/modules/node/tests/src/Functional/NodeAccessAutoBubblingTest.php b/core/modules/node/tests/src/Functional/NodeAccessAutoBubblingTest.php index 6e2a2ae2af35564bb5e03603a1ca10ad72b817c8..20154553fc1c17f9e848913d852fb6e647e9be04 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessAutoBubblingTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessAutoBubblingTest.php @@ -21,7 +21,7 @@ class NodeAccessAutoBubblingTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_access_test', 'node_access_test_auto_bubbling']; + public static $modules = ['node_access_test', 'node_access_test_auto_bubbling']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/NodeAccessBaseTableTest.php b/core/modules/node/tests/src/Functional/NodeAccessBaseTableTest.php index cd8040ba892f4f311bcefcb419a6e6b5d25ebd9c..d9e4e8b0924918784afb2aae408a71ffce471980 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessBaseTableTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessBaseTableTest.php @@ -16,7 +16,7 @@ class NodeAccessBaseTableTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_access_test', 'views']; + public static $modules = ['node_access_test', 'views']; /** * The installation profile to use with this test. diff --git a/core/modules/node/tests/src/Functional/NodeAccessFieldTest.php b/core/modules/node/tests/src/Functional/NodeAccessFieldTest.php index 6b16bf142a0a17f1c927dc8d1c6223d3694292b9..ab6f28df94fcbdeb61a2541904de65402d8782b9 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessFieldTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessFieldTest.php @@ -17,7 +17,7 @@ class NodeAccessFieldTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_access_test', 'field_ui']; + public static $modules = ['node_access_test', 'field_ui']; /** * A user with permission to bypass access content. diff --git a/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php b/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php index 0a5da3e6b334d8fdd7cdc1959032cc20cc89f440..fa2116ab875690935955fdf75f27bbd59715eb47 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessGrantsCacheContextTest.php @@ -15,7 +15,7 @@ class NodeAccessGrantsCacheContextTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_access_test']; + public static $modules = ['node_access_test']; /** * User with permission to view content. diff --git a/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareCombinationTest.php b/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareCombinationTest.php index c9716c02b892ae39ed0ad0a5c0564a1103652b62..bc78291e3f40453859902a4a59bb1a73474db567 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareCombinationTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareCombinationTest.php @@ -22,7 +22,7 @@ class NodeAccessLanguageAwareCombinationTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'node_access_test_language', 'node_access_test']; + public static $modules = ['language', 'node_access_test_language', 'node_access_test']; /** * A set of nodes to use in testing. diff --git a/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareTest.php b/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareTest.php index f041d2438ce5451478d6e303a9625e4af8bb4414..48f9dfac36c3f309b7a1c5f25d3d728310c606fc 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessLanguageAwareTest.php @@ -21,7 +21,7 @@ class NodeAccessLanguageAwareTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'node_access_test_language']; + public static $modules = ['language', 'node_access_test_language']; /** * A set of nodes to use in testing. diff --git a/core/modules/node/tests/src/Functional/NodeAccessLanguageFallbackTest.php b/core/modules/node/tests/src/Functional/NodeAccessLanguageFallbackTest.php index bc37dd29bd39b20306e73edd9e6b9e970c021d20..4beacc34235aea041b7735a6baa93d0f12b53755 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessLanguageFallbackTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessLanguageFallbackTest.php @@ -16,7 +16,7 @@ class NodeAccessLanguageFallbackTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'node_access_test', 'content_translation']; + public static $modules = ['language', 'node_access_test', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/NodeAccessLanguageTest.php b/core/modules/node/tests/src/Functional/NodeAccessLanguageTest.php index 5aadddbefa99207cddaf5365dffc9f6fa1f0b4c4..1af5660fe52f004a4f0dcf5a712c0765b0833334 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessLanguageTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessLanguageTest.php @@ -20,7 +20,7 @@ class NodeAccessLanguageTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'node_access_test']; + public static $modules = ['language', 'node_access_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeAccessMenuLinkTest.php b/core/modules/node/tests/src/Functional/NodeAccessMenuLinkTest.php index 53f2dc0cd6439fa921a97a3e53832f6cec3c1cf0..5d987b36a17d7a957b239d0bf4999bb5cb015a82 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessMenuLinkTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessMenuLinkTest.php @@ -16,7 +16,7 @@ class NodeAccessMenuLinkTest extends NodeTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'block']; + public static $modules = ['menu_ui', 'block']; /** * A user with permission to manage menu links and create nodes. diff --git a/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php b/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php index ef685c620b8e051750d69a5c97e4ace40a92285d..ad6cc549446d117f34f9b86435864f18beeef687 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessPagerTest.php @@ -21,7 +21,7 @@ class NodeAccessPagerTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node_access_test', 'comment', 'forum']; + public static $modules = ['node_access_test', 'comment', 'forum']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeAccessRecordsTest.php b/core/modules/node/tests/src/Functional/NodeAccessRecordsTest.php index 853d7f34c9de43e058c3c5e017330a3d0a30030e..259ed83efbe14353c0649a108eb56111e3a102a1 100644 --- a/core/modules/node/tests/src/Functional/NodeAccessRecordsTest.php +++ b/core/modules/node/tests/src/Functional/NodeAccessRecordsTest.php @@ -16,7 +16,7 @@ class NodeAccessRecordsTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test']; + public static $modules = ['node_test']; /** * Creates a node and tests the creation of node access rules. diff --git a/core/modules/node/tests/src/Functional/NodeActionsConfigurationTest.php b/core/modules/node/tests/src/Functional/NodeActionsConfigurationTest.php index 9ff6b792537ba479771a6b11fcaf9c97570092f4..d026902f570f021454e2cbe9280435e50a776817 100644 --- a/core/modules/node/tests/src/Functional/NodeActionsConfigurationTest.php +++ b/core/modules/node/tests/src/Functional/NodeActionsConfigurationTest.php @@ -17,7 +17,7 @@ class NodeActionsConfigurationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['action', 'node']; + public static $modules = ['action', 'node']; /** * Tests configuration of the node_assign_owner_action action. diff --git a/core/modules/node/tests/src/Functional/NodeAdminTest.php b/core/modules/node/tests/src/Functional/NodeAdminTest.php index 9417ba186b7684f20cd78a1465c2ef972a997707..24a50cf51a7a819561f866876cc03cb73f0779a5 100644 --- a/core/modules/node/tests/src/Functional/NodeAdminTest.php +++ b/core/modules/node/tests/src/Functional/NodeAdminTest.php @@ -43,7 +43,7 @@ class NodeAdminTest extends NodeTestBase { * * @var array */ - protected static $modules = ['views']; + public static $modules = ['views']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeBlockFunctionalTest.php b/core/modules/node/tests/src/Functional/NodeBlockFunctionalTest.php index f31da661a6b4a3b5aab398964e6a521a06cc13e3..c6f786df8e34f53bcb77858dfc90ee64ed136678 100644 --- a/core/modules/node/tests/src/Functional/NodeBlockFunctionalTest.php +++ b/core/modules/node/tests/src/Functional/NodeBlockFunctionalTest.php @@ -35,7 +35,7 @@ class NodeBlockFunctionalTest extends NodeTestBase { * * @var array */ - protected static $modules = ['block', 'views']; + public static $modules = ['block', 'views']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeCacheTagsTest.php b/core/modules/node/tests/src/Functional/NodeCacheTagsTest.php index b7b8e87e56ed24ce7bf030205f0fd9810281676d..6cda724cc44688f98fa7a855fd19a63fc625d479 100644 --- a/core/modules/node/tests/src/Functional/NodeCacheTagsTest.php +++ b/core/modules/node/tests/src/Functional/NodeCacheTagsTest.php @@ -17,7 +17,7 @@ class NodeCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/NodeContextualLinksTest.php b/core/modules/node/tests/src/Functional/NodeContextualLinksTest.php index 3ec8140e236675d3a013c5636c25eb6d41e78666..0d4aabe6a089077be0103b5681be1b44d4d106e7 100644 --- a/core/modules/node/tests/src/Functional/NodeContextualLinksTest.php +++ b/core/modules/node/tests/src/Functional/NodeContextualLinksTest.php @@ -14,7 +14,7 @@ class NodeContextualLinksTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'contextual', ]; diff --git a/core/modules/node/tests/src/Functional/NodeCreationTest.php b/core/modules/node/tests/src/Functional/NodeCreationTest.php index c555fcb2164f8856e6d6c1bd283aaaf26685fd55..1ea8fcc3326caeb705b4a68f776af16f8a2dba95 100644 --- a/core/modules/node/tests/src/Functional/NodeCreationTest.php +++ b/core/modules/node/tests/src/Functional/NodeCreationTest.php @@ -21,7 +21,7 @@ class NodeCreationTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test_exception', 'dblog', 'test_page_test']; + public static $modules = ['node_test_exception', 'dblog', 'test_page_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeEditFormTest.php b/core/modules/node/tests/src/Functional/NodeEditFormTest.php index be70c15f6165ab5c57247959742e58b9a078b1e8..c15ca70bbe3beeb27754b07997325a6dbc9ee52d 100644 --- a/core/modules/node/tests/src/Functional/NodeEditFormTest.php +++ b/core/modules/node/tests/src/Functional/NodeEditFormTest.php @@ -38,7 +38,7 @@ class NodeEditFormTest extends NodeTestBase { * * @var string[] */ - protected static $modules = ['block', 'node', 'datetime']; + public static $modules = ['block', 'node', 'datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeEntityViewModeAlterTest.php b/core/modules/node/tests/src/Functional/NodeEntityViewModeAlterTest.php index f2294b78b01da2ae9f6a9e7c5cf45e9d4517c0fe..be0f1c062305b567a32aff69653a4a37b8c70506 100644 --- a/core/modules/node/tests/src/Functional/NodeEntityViewModeAlterTest.php +++ b/core/modules/node/tests/src/Functional/NodeEntityViewModeAlterTest.php @@ -17,7 +17,7 @@ class NodeEntityViewModeAlterTest extends NodeTestBase { /** * Enable dummy module that implements hook_ENTITY_TYPE_view() for nodes. */ - protected static $modules = ['node_test']; + public static $modules = ['node_test']; /** * Create a "Basic page" node and verify its consistency in the database. diff --git a/core/modules/node/tests/src/Functional/NodeFieldMultilingualTest.php b/core/modules/node/tests/src/Functional/NodeFieldMultilingualTest.php index ba59e03024ac4bf4d38e9f15659a065595a50853..771426d025a50b6a4bb44ea7a666dbc91cc82ee4 100644 --- a/core/modules/node/tests/src/Functional/NodeFieldMultilingualTest.php +++ b/core/modules/node/tests/src/Functional/NodeFieldMultilingualTest.php @@ -20,7 +20,7 @@ class NodeFieldMultilingualTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'language']; + public static $modules = ['node', 'language']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeFormSaveChangedTimeTest.php b/core/modules/node/tests/src/Functional/NodeFormSaveChangedTimeTest.php index 7c4fb4b660a8d3043ccf09ea667ab8326621c96c..607e68cf0d25b4eeda63e7c49785e19b7a291019 100644 --- a/core/modules/node/tests/src/Functional/NodeFormSaveChangedTimeTest.php +++ b/core/modules/node/tests/src/Functional/NodeFormSaveChangedTimeTest.php @@ -16,7 +16,7 @@ class NodeFormSaveChangedTimeTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'node', ]; diff --git a/core/modules/node/tests/src/Functional/NodeHelpTest.php b/core/modules/node/tests/src/Functional/NodeHelpTest.php index 50773a9efd919ce4aa815db9a5464690144fe571..4dad41618536db37b89c91e7a1842ee05d25dd73 100644 --- a/core/modules/node/tests/src/Functional/NodeHelpTest.php +++ b/core/modules/node/tests/src/Functional/NodeHelpTest.php @@ -16,7 +16,7 @@ class NodeHelpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'help']; + public static $modules = ['block', 'node', 'help']; /** * The name of the test node type to create. diff --git a/core/modules/node/tests/src/Functional/NodeLinksTest.php b/core/modules/node/tests/src/Functional/NodeLinksTest.php index 0950e14ede325a1c49b74b68fa145dc7dc51f2f5..7bd725b46bfabf1f61a50ad5a1c6d9989d9d4c23 100644 --- a/core/modules/node/tests/src/Functional/NodeLinksTest.php +++ b/core/modules/node/tests/src/Functional/NodeLinksTest.php @@ -16,7 +16,7 @@ class NodeLinksTest extends NodeTestBase { * * @var array */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * Tests that the links can be hidden in the view display settings. diff --git a/core/modules/node/tests/src/Functional/NodeLoadMultipleTest.php b/core/modules/node/tests/src/Functional/NodeLoadMultipleTest.php index 9db35c209c2007bf8fa3b66a164dbc7e320a3310..2da5d1bbeb59919b98d54143e9818581bd5afeed 100644 --- a/core/modules/node/tests/src/Functional/NodeLoadMultipleTest.php +++ b/core/modules/node/tests/src/Functional/NodeLoadMultipleTest.php @@ -16,7 +16,7 @@ class NodeLoadMultipleTest extends NodeTestBase { * * @var array */ - protected static $modules = ['views']; + public static $modules = ['views']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodePreviewAnonymousTest.php b/core/modules/node/tests/src/Functional/NodePreviewAnonymousTest.php index 4386b797b1de4de9f9069568c0499c00a501e77f..f10d8b7389d66d1b2008376a2f38186d2d1aeb8d 100644 --- a/core/modules/node/tests/src/Functional/NodePreviewAnonymousTest.php +++ b/core/modules/node/tests/src/Functional/NodePreviewAnonymousTest.php @@ -18,7 +18,7 @@ class NodePreviewAnonymousTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php b/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php index 1c3503a7ccd7abee8a6e698c934ad8f8e9b2b2c1..362a27fc48c5770b5126eedb5bd2fa81b305cee8 100644 --- a/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php +++ b/core/modules/node/tests/src/Functional/NodeQueryAlterTest.php @@ -14,7 +14,7 @@ class NodeQueryAlterTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_access_test']; + public static $modules = ['node_access_test']; /** * User with permission to view content. diff --git a/core/modules/node/tests/src/Functional/NodeRSSContentTest.php b/core/modules/node/tests/src/Functional/NodeRSSContentTest.php index 77015607f61650487dc21d11a0cc75143db512da..0efa336adecb8d71cf4b74986cc4e920b58efc4a 100644 --- a/core/modules/node/tests/src/Functional/NodeRSSContentTest.php +++ b/core/modules/node/tests/src/Functional/NodeRSSContentTest.php @@ -20,7 +20,7 @@ class NodeRSSContentTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test', 'views']; + public static $modules = ['node_test', 'views']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeRevisionsUiBypassAccessTest.php b/core/modules/node/tests/src/Functional/NodeRevisionsUiBypassAccessTest.php index e120f12706c210ecb0ec28ec2bcdfb2c527a063f..186b694774e6eceb307d5fdaefa9f652b8313ce6 100644 --- a/core/modules/node/tests/src/Functional/NodeRevisionsUiBypassAccessTest.php +++ b/core/modules/node/tests/src/Functional/NodeRevisionsUiBypassAccessTest.php @@ -25,7 +25,7 @@ class NodeRevisionsUiBypassAccessTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/NodeSaveTest.php b/core/modules/node/tests/src/Functional/NodeSaveTest.php index f12e6126c86ec811059263e85f1170af17c07d1e..6c508aee68ddd56ccedbd5f173f2181352181588 100644 --- a/core/modules/node/tests/src/Functional/NodeSaveTest.php +++ b/core/modules/node/tests/src/Functional/NodeSaveTest.php @@ -23,7 +23,7 @@ class NodeSaveTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test']; + public static $modules = ['node_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeSyndicateBlockTest.php b/core/modules/node/tests/src/Functional/NodeSyndicateBlockTest.php index 03fe59f8cbdbecb0b8b4d32c4a02ed6a477cdee2..c1daef94c91b70c12cf10d887c80df4bff38bd42 100644 --- a/core/modules/node/tests/src/Functional/NodeSyndicateBlockTest.php +++ b/core/modules/node/tests/src/Functional/NodeSyndicateBlockTest.php @@ -14,7 +14,7 @@ class NodeSyndicateBlockTest extends NodeTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeTestBase.php b/core/modules/node/tests/src/Functional/NodeTestBase.php index ca270e73a89435e254a0b79233410cb02b3accb8..e52708632b9e2b3648debaf2d1018ddd6254bb35 100644 --- a/core/modules/node/tests/src/Functional/NodeTestBase.php +++ b/core/modules/node/tests/src/Functional/NodeTestBase.php @@ -16,7 +16,7 @@ abstract class NodeTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'datetime']; + public static $modules = ['node', 'datetime']; /** * The node access control handler. diff --git a/core/modules/node/tests/src/Functional/NodeTitleTest.php b/core/modules/node/tests/src/Functional/NodeTitleTest.php index 405247fcfea3cf97d39fd84c02e22b8f2a04849a..8c94f795ad3d9b8fd329a3abb10d91911cdcdb59 100644 --- a/core/modules/node/tests/src/Functional/NodeTitleTest.php +++ b/core/modules/node/tests/src/Functional/NodeTitleTest.php @@ -19,7 +19,7 @@ class NodeTitleTest extends NodeTestBase { * * @var array */ - protected static $modules = ['comment', 'views', 'block']; + public static $modules = ['comment', 'views', 'block']; /** * A user with permission to bypass access content. diff --git a/core/modules/node/tests/src/Functional/NodeTranslationUITest.php b/core/modules/node/tests/src/Functional/NodeTranslationUITest.php index 0ab20a08fbb549dba8951533c643f2ee78816e61..513c074932e3c26ee1dfc12ae7bf7a425fb0b49f 100644 --- a/core/modules/node/tests/src/Functional/NodeTranslationUITest.php +++ b/core/modules/node/tests/src/Functional/NodeTranslationUITest.php @@ -37,7 +37,7 @@ class NodeTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = ['block', 'language', 'content_translation', 'node', 'datetime', 'field_ui', 'help']; + public static $modules = ['block', 'language', 'content_translation', 'node', 'datetime', 'field_ui', 'help']; /** * The profile to install as a basis for testing. diff --git a/core/modules/node/tests/src/Functional/NodeTypeInitialLanguageTest.php b/core/modules/node/tests/src/Functional/NodeTypeInitialLanguageTest.php index 698e14bf5a48a6c6cf854fadc293381d2eadfb6f..9c442fd5dadebf4aba200b87ea91bda68a133e52 100644 --- a/core/modules/node/tests/src/Functional/NodeTypeInitialLanguageTest.php +++ b/core/modules/node/tests/src/Functional/NodeTypeInitialLanguageTest.php @@ -16,7 +16,7 @@ class NodeTypeInitialLanguageTest extends NodeTestBase { * * @var array */ - protected static $modules = ['language', 'field_ui']; + public static $modules = ['language', 'field_ui']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Functional/NodeTypeTranslationTest.php b/core/modules/node/tests/src/Functional/NodeTypeTranslationTest.php index 613f0443b26ecc4d24742c56d58442f8c4f3b923..973955c5dd97e131df10b32cf5c736766234ba7f 100644 --- a/core/modules/node/tests/src/Functional/NodeTypeTranslationTest.php +++ b/core/modules/node/tests/src/Functional/NodeTypeTranslationTest.php @@ -21,7 +21,7 @@ class NodeTypeTranslationTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'block', 'config_translation', 'field_ui', diff --git a/core/modules/node/tests/src/Functional/NodeViewLanguageTest.php b/core/modules/node/tests/src/Functional/NodeViewLanguageTest.php index 205fbbf437e0735e1ed2af6a4bf1beb5e512d9aa..473042756012b0efc3b612a8ce493b3b1cb5af7d 100644 --- a/core/modules/node/tests/src/Functional/NodeViewLanguageTest.php +++ b/core/modules/node/tests/src/Functional/NodeViewLanguageTest.php @@ -16,7 +16,7 @@ class NodeViewLanguageTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node', 'datetime', 'language']; + public static $modules = ['node', 'datetime', 'language']; /** * Tests the language extra field display. diff --git a/core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php b/core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php index ccd88f9f79ae26f492a6c8df98c13c18dd984901..d4ce479c2166e1d3a01898138e310e57656502c2 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class NodeJsonBasicAuthTest extends NodeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Rest/NodeResourceTestBase.php b/core/modules/node/tests/src/Functional/Rest/NodeResourceTestBase.php index 452d089820b80098b5a70df65d6ee08924fbced4..9f9a114924fde51a8a0c68c54fbff6dadabe0a0f 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeResourceTestBase.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeResourceTestBase.php @@ -16,7 +16,7 @@ abstract class NodeResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'path']; + public static $modules = ['node', 'path']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Rest/NodeTypeJsonBasicAuthTest.php b/core/modules/node/tests/src/Functional/Rest/NodeTypeJsonBasicAuthTest.php index ab68c8934bf3beb42a86a30f7226d873b98f450a..e1874e4cc638187ef2a39622480de6f64f2085e9 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeTypeJsonBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeTypeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class NodeTypeJsonBasicAuthTest extends NodeTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Rest/NodeTypeResourceTestBase.php b/core/modules/node/tests/src/Functional/Rest/NodeTypeResourceTestBase.php index b2c30174cd3a16da6ddabddcfbfaacf903c09e8f..d74824dd13a2ea0c124cc62739747adf69e8120a 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeTypeResourceTestBase.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeTypeResourceTestBase.php @@ -13,7 +13,7 @@ abstract class NodeTypeResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Rest/NodeTypeXmlBasicAuthTest.php b/core/modules/node/tests/src/Functional/Rest/NodeTypeXmlBasicAuthTest.php index 2408566d069af6a91bd88a45e7d0d3064b66472b..29413dc9c2e9f9441db264e8041a4f1646ef55a7 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeTypeXmlBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeTypeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class NodeTypeXmlBasicAuthTest extends NodeTypeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php b/core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php index 92bb3a63649f9e03b05760891f6aa6eaa5f4e665..ce809747aa73960b294efa67cfcea55645b9bec7 100644 --- a/core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php +++ b/core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class NodeXmlBasicAuthTest extends NodeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php b/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php index c87a242f947e00ffb9640af349c44b10a62d5512..19c409719d06db8931d7262972909116e845d9b6 100644 --- a/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php +++ b/core/modules/node/tests/src/Functional/Views/BulkFormAccessTest.php @@ -22,7 +22,7 @@ class BulkFormAccessTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test_views', 'node_access_test']; + public static $modules = ['node_test_views', 'node_access_test']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/BulkFormTest.php b/core/modules/node/tests/src/Functional/Views/BulkFormTest.php index da3489e79e0a1e0a02482c307b632a046b7af63d..eded04530d0a6dc395caf33f93c8a305f326f4ca 100644 --- a/core/modules/node/tests/src/Functional/Views/BulkFormTest.php +++ b/core/modules/node/tests/src/Functional/Views/BulkFormTest.php @@ -19,7 +19,7 @@ class BulkFormTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node_test_views', 'language']; + public static $modules = ['node_test_views', 'language']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/FilterNodeAccessTest.php b/core/modules/node/tests/src/Functional/Views/FilterNodeAccessTest.php index 83976e422e4e515d71ce4299cb6dbcafe2366aab..7eb7097d9db1b20b06136579651b178552e5496d 100644 --- a/core/modules/node/tests/src/Functional/Views/FilterNodeAccessTest.php +++ b/core/modules/node/tests/src/Functional/Views/FilterNodeAccessTest.php @@ -22,7 +22,7 @@ class FilterNodeAccessTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node_access_test']; + public static $modules = ['node_access_test']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/FrontPageTest.php b/core/modules/node/tests/src/Functional/Views/FrontPageTest.php index e48f014ab628d3f7e09870e0133dabe861cc456a..618119c061622a7ecdb2a536a7d4a64b57d43a24 100644 --- a/core/modules/node/tests/src/Functional/Views/FrontPageTest.php +++ b/core/modules/node/tests/src/Functional/Views/FrontPageTest.php @@ -37,7 +37,7 @@ class FrontPageTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'contextual']; + public static $modules = ['node', 'contextual']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Views/NodeFieldFilterTest.php b/core/modules/node/tests/src/Functional/Views/NodeFieldFilterTest.php index cdb0816965fb6b784c5c14237d348465ab8252b9..c2ee2f27637cfb70c6ea96ba4215b7f0e1d76b32 100644 --- a/core/modules/node/tests/src/Functional/Views/NodeFieldFilterTest.php +++ b/core/modules/node/tests/src/Functional/Views/NodeFieldFilterTest.php @@ -14,7 +14,7 @@ class NodeFieldFilterTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/NodeLanguageTest.php b/core/modules/node/tests/src/Functional/Views/NodeLanguageTest.php index d4821f5cfdadd091c35d4e399112aa45f483186e..31e085213ceae054796ac1c6c1f41be4beff9507 100644 --- a/core/modules/node/tests/src/Functional/Views/NodeLanguageTest.php +++ b/core/modules/node/tests/src/Functional/Views/NodeLanguageTest.php @@ -19,7 +19,7 @@ class NodeLanguageTest extends NodeTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'node_test_views']; + public static $modules = ['language', 'node_test_views']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/NodeTestBase.php b/core/modules/node/tests/src/Functional/Views/NodeTestBase.php index f8a6a3c9d64d98ad497599ba5fa199eb43420aae..b98778c503c6a32211ed70fce1e4c375bb0d5458 100644 --- a/core/modules/node/tests/src/Functional/Views/NodeTestBase.php +++ b/core/modules/node/tests/src/Functional/Views/NodeTestBase.php @@ -13,7 +13,7 @@ abstract class NodeTestBase extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node_test_views']; + public static $modules = ['node_test_views']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Functional/Views/PathPluginTest.php b/core/modules/node/tests/src/Functional/Views/PathPluginTest.php index b37fdf3f5f2ac99b1f063c62aaabe4f530d4a866..d8d088d978ac2f6dfcde682866cfca9259915bd0 100644 --- a/core/modules/node/tests/src/Functional/Views/PathPluginTest.php +++ b/core/modules/node/tests/src/Functional/Views/PathPluginTest.php @@ -16,7 +16,7 @@ class PathPluginTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Functional/Views/RowPluginTest.php b/core/modules/node/tests/src/Functional/Views/RowPluginTest.php index 5708377f318a70218a98834779f5e83ec141fd85..fdd4d45ad2097f6b41aaf92b72102a4e3a521f5e 100644 --- a/core/modules/node/tests/src/Functional/Views/RowPluginTest.php +++ b/core/modules/node/tests/src/Functional/Views/RowPluginTest.php @@ -17,7 +17,7 @@ class RowPluginTest extends NodeTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/FunctionalJavascript/NodePreviewLinkTest.php b/core/modules/node/tests/src/FunctionalJavascript/NodePreviewLinkTest.php index c3ec8efe48e50c19f466ddbed18656da8c48984e..e1c185000f9539d2e72e2f461c3d7f605eade53a 100644 --- a/core/modules/node/tests/src/FunctionalJavascript/NodePreviewLinkTest.php +++ b/core/modules/node/tests/src/FunctionalJavascript/NodePreviewLinkTest.php @@ -15,7 +15,7 @@ class NodePreviewLinkTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'filter']; + public static $modules = ['node', 'filter']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/FunctionalJavascript/TestSettingSummariesContentType.php b/core/modules/node/tests/src/FunctionalJavascript/TestSettingSummariesContentType.php index 9f748081174625ff0c4c587e360347a620d6372b..aef0c1e27d344bc94bf0b9b4e4cbc6c82a411e53 100644 --- a/core/modules/node/tests/src/FunctionalJavascript/TestSettingSummariesContentType.php +++ b/core/modules/node/tests/src/FunctionalJavascript/TestSettingSummariesContentType.php @@ -14,7 +14,7 @@ class TestSettingSummariesContentType extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Action/UnpublishByKeywordActionTest.php b/core/modules/node/tests/src/Kernel/Action/UnpublishByKeywordActionTest.php index f7d4efba89944822de8adeedacf1ae02d2714036..88eb122bb54a2fb3d0c3053c626dec11a9caf646 100644 --- a/core/modules/node/tests/src/Kernel/Action/UnpublishByKeywordActionTest.php +++ b/core/modules/node/tests/src/Kernel/Action/UnpublishByKeywordActionTest.php @@ -13,7 +13,7 @@ class UnpublishByKeywordActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['action', 'node', 'system', 'user']; + public static $modules = ['action', 'node', 'system', 'user']; /** * Tests creating an action using the node_unpublish_by_keyword_action plugin. diff --git a/core/modules/node/tests/src/Kernel/Config/NodeImportChangeTest.php b/core/modules/node/tests/src/Kernel/Config/NodeImportChangeTest.php index f7215bc4dd9ce31f5299fc952e15412cbdc5b47a..d670e6a44cae81d23084fd28ca53c9233b044e20 100644 --- a/core/modules/node/tests/src/Kernel/Config/NodeImportChangeTest.php +++ b/core/modules/node/tests/src/Kernel/Config/NodeImportChangeTest.php @@ -17,7 +17,7 @@ class NodeImportChangeTest extends KernelTestBase { * * @var array */ - protected static $modules = ['node', 'field', 'text', 'system', 'node_test_config', 'user']; + public static $modules = ['node', 'field', 'text', 'system', 'node_test_config', 'user']; /** * Set the default field storage backend for fields created during tests. diff --git a/core/modules/node/tests/src/Kernel/Config/NodeImportCreateTest.php b/core/modules/node/tests/src/Kernel/Config/NodeImportCreateTest.php index 6d368dba12ff3ee994e58aa28330a9bceec03d5a..0b27bc2a22c784dbda4147f9aac8dfd97a21862b 100644 --- a/core/modules/node/tests/src/Kernel/Config/NodeImportCreateTest.php +++ b/core/modules/node/tests/src/Kernel/Config/NodeImportCreateTest.php @@ -18,7 +18,7 @@ class NodeImportCreateTest extends KernelTestBase { * * @var array */ - protected static $modules = ['node', 'field', 'text', 'system', 'user']; + public static $modules = ['node', 'field', 'text', 'system', 'user']; /** * Set the default field storage backend for fields created during tests. diff --git a/core/modules/node/tests/src/Kernel/Migrate/MigrateNodeStubTest.php b/core/modules/node/tests/src/Kernel/Migrate/MigrateNodeStubTest.php index d0b66f7606df62863f337e6f9b85973a5d44e1c0..5b393b196bc89ec1b9f6a19edcd1ec4ece4693b8 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/MigrateNodeStubTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/MigrateNodeStubTest.php @@ -18,7 +18,7 @@ class MigrateNodeStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeBundleSettingsTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeBundleSettingsTest.php index 5dee908fa40cb8946e1a2ba5af8188b0cf7a1e99..34c8dd3ddc9e2a53ecb3d1491925c21049820252 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeBundleSettingsTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeBundleSettingsTest.php @@ -16,7 +16,7 @@ class MigrateNodeBundleSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingPromoteTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingPromoteTest.php index 6dd69f2d0f68fb2d8a34bd42639e41778d357224..e7eb008ae7dc2ddf4249887594ccd90f0ebc5212 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingPromoteTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingPromoteTest.php @@ -10,7 +10,7 @@ */ class MigrateNodeSettingPromoteTest extends MigrateDrupal6TestBase { - protected static $modules = ['node', 'text', 'menu_ui']; + public static $modules = ['node', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStatusTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStatusTest.php index d59f63f5327379fdf543081b605a7b3ed433b7bc..afd2dc6ed7ac6293fc10fd59c4cfd4416503048e 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStatusTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStatusTest.php @@ -10,7 +10,7 @@ */ class MigrateNodeSettingStatusTest extends MigrateDrupal6TestBase { - protected static $modules = ['node', 'text', 'menu_ui']; + public static $modules = ['node', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php index aaf68635113ee8f690ddeb1022d82aacf093dbe7..58eeca33f643ffff27aa72c0a154a2201fdd7285 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeSettingStickyTest.php @@ -10,7 +10,7 @@ */ class MigrateNodeSettingStickyTest extends MigrateDrupal6TestBase { - protected static $modules = ['node', 'text', 'menu_ui']; + public static $modules = ['node', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTest.php index 192dcec3f2fc56c09fe6c930a996a18d11b51783..700311c87116e8bd9683b45a8fe4a9478d1f2b7e 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTest.php @@ -19,7 +19,7 @@ class MigrateNodeTest extends MigrateNodeTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'menu_ui', diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTypeTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTypeTest.php index f71116bddeda6ef4f16f39a3bdc8839825a6e1ed..f36aebda01ccf28508f1a2ea41f10d52b9da5162 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/MigrateNodeTypeTest.php @@ -16,7 +16,7 @@ class MigrateNodeTypeTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d6/NodeTranslationRedirectTest.php b/core/modules/node/tests/src/Kernel/Migrate/d6/NodeTranslationRedirectTest.php index 2d9c005c9f57391b817a90a2e0fa013242659f1d..f3d03166cf482afd70baf7053ba801f634bb6362 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d6/NodeTranslationRedirectTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d6/NodeTranslationRedirectTest.php @@ -16,7 +16,7 @@ class NodeTranslationRedirectTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php index 6087e6f493caff82fe439fbcaf2cc5dca2934a1c..437126803d1c0828f8237ecb5dace4f439634635 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeDeriverTest.php @@ -14,7 +14,7 @@ class MigrateNodeDeriverTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Test node translation migrations with translation disabled. diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeSettingsTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeSettingsTest.php index c0f5de85b3dcfe11c83178839b841d255f5bbb13..dcae81b8c0715be7b0a55cfdea7f0de04493685a 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeSettingsTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeSettingsTest.php @@ -19,7 +19,7 @@ class MigrateNodeSettingsTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php index da8f4be35b9ea068543395bcec13c418f803e171..da930ec6844edf014c931d2bbf9f6a4adcbdf906 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTest.php @@ -20,7 +20,7 @@ class MigrateNodeTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'comment', 'datetime', diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTitleLabelTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTitleLabelTest.php index ed5239ffee39366f568a89a7c0b382255a1a1cd2..0655631565da4408f7eefbdad1431dbe137a62b4 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTitleLabelTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTitleLabelTest.php @@ -12,7 +12,7 @@ */ class MigrateNodeTitleLabelTest extends MigrateDrupal7TestBase { - protected static $modules = ['node', 'text', 'menu_ui']; + public static $modules = ['node', 'text', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTypeTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTypeTest.php index 130aa9d7be7e88141b2e54cc54c32d72becfa7b1..b16cd2550e65038c37426f1fab5eca4f89ba73f7 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/MigrateNodeTypeTest.php @@ -20,7 +20,7 @@ class MigrateNodeTypeTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = ['node', 'text', 'filter', 'menu_ui']; + public static $modules = ['node', 'text', 'filter', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Migrate/d7/NodeTranslationRedirectTest.php b/core/modules/node/tests/src/Kernel/Migrate/d7/NodeTranslationRedirectTest.php index 52a5683de3a4d193d7478978a8bfb303d05a3a04..3e148aaf488c568082caca99e32cca476e0e5ccc 100644 --- a/core/modules/node/tests/src/Kernel/Migrate/d7/NodeTranslationRedirectTest.php +++ b/core/modules/node/tests/src/Kernel/Migrate/d7/NodeTranslationRedirectTest.php @@ -16,7 +16,7 @@ class NodeTranslationRedirectTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/node/tests/src/Kernel/NodeAccessTest.php b/core/modules/node/tests/src/Kernel/NodeAccessTest.php index 84a0d52dcd7df303e936fe347849a08251a4b588..539edcb09b570ea0f10a61be0b96b1d8f9962ead 100644 --- a/core/modules/node/tests/src/Kernel/NodeAccessTest.php +++ b/core/modules/node/tests/src/Kernel/NodeAccessTest.php @@ -34,7 +34,7 @@ class NodeAccessTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'datetime', 'user', diff --git a/core/modules/node/tests/src/Kernel/NodeBodyFieldStorageTest.php b/core/modules/node/tests/src/Kernel/NodeBodyFieldStorageTest.php index bb60a5c5fdc3f9f55a7058ff9dace9690dd1e24a..3dd13496d65a5e8d087972e7be407b6e58d9ca7e 100644 --- a/core/modules/node/tests/src/Kernel/NodeBodyFieldStorageTest.php +++ b/core/modules/node/tests/src/Kernel/NodeBodyFieldStorageTest.php @@ -19,7 +19,7 @@ class NodeBodyFieldStorageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system', 'field', 'node', 'text', 'filter']; + public static $modules = ['user', 'system', 'field', 'node', 'text', 'filter']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Kernel/NodeConditionTest.php b/core/modules/node/tests/src/Kernel/NodeConditionTest.php index 15b704e8768a75718ce8cc11f8e3d4c1feaf5759..a30867cb8b4213b55b5ddc472c90549723792446 100644 --- a/core/modules/node/tests/src/Kernel/NodeConditionTest.php +++ b/core/modules/node/tests/src/Kernel/NodeConditionTest.php @@ -13,7 +13,7 @@ */ class NodeConditionTest extends EntityKernelTestBase { - protected static $modules = ['node']; + public static $modules = ['node']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Kernel/NodeFieldAccessTest.php b/core/modules/node/tests/src/Kernel/NodeFieldAccessTest.php index 7794326c3f396e07cafcfbe224def6e323ff90af..812731fc612f420f31728698aaa2e8e5b6311429 100644 --- a/core/modules/node/tests/src/Kernel/NodeFieldAccessTest.php +++ b/core/modules/node/tests/src/Kernel/NodeFieldAccessTest.php @@ -19,7 +19,7 @@ class NodeFieldAccessTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Fields that only users with administer nodes permissions can change. diff --git a/core/modules/node/tests/src/Kernel/NodeFieldOverridesTest.php b/core/modules/node/tests/src/Kernel/NodeFieldOverridesTest.php index 453ccab7bbfe05780009683a6fd60cb295297f4b..7c7bc03348846276e714f0ee6aa52e7b9def7610 100644 --- a/core/modules/node/tests/src/Kernel/NodeFieldOverridesTest.php +++ b/core/modules/node/tests/src/Kernel/NodeFieldOverridesTest.php @@ -27,7 +27,7 @@ class NodeFieldOverridesTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['user', 'system', 'field', 'node']; + public static $modules = ['user', 'system', 'field', 'node']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php b/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php index f4948b15713062e52e6feada813c296b8bed800e..420b30661e5a97d4c38e742f94860b6bb4cf739d 100644 --- a/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php +++ b/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php @@ -15,7 +15,7 @@ class NodeListBuilderTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Kernel/NodeOwnerTest.php b/core/modules/node/tests/src/Kernel/NodeOwnerTest.php index 0c00164b4ca0c71bddce227e8fa04ae98f8bc590..c12f3115c1601e4b755064af156296e097c3f1cf 100644 --- a/core/modules/node/tests/src/Kernel/NodeOwnerTest.php +++ b/core/modules/node/tests/src/Kernel/NodeOwnerTest.php @@ -19,7 +19,7 @@ class NodeOwnerTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node', 'language']; + public static $modules = ['node', 'language']; protected function setUp() { parent::setUp(); diff --git a/core/modules/node/tests/src/Kernel/NodeTokenReplaceTest.php b/core/modules/node/tests/src/Kernel/NodeTokenReplaceTest.php index 50d6aceab2d65a30acaf3af87a250758c951e676..dd39b6d26d34f29aea3deafd19458d0eb5fd8ecb 100644 --- a/core/modules/node/tests/src/Kernel/NodeTokenReplaceTest.php +++ b/core/modules/node/tests/src/Kernel/NodeTokenReplaceTest.php @@ -22,7 +22,7 @@ class NodeTokenReplaceTest extends TokenReplaceKernelTestBase { * * @var array */ - protected static $modules = ['node', 'filter']; + public static $modules = ['node', 'filter']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/NodeValidationTest.php b/core/modules/node/tests/src/Kernel/NodeValidationTest.php index 97c598feb1b02510b1f4c7afabb93f6b9073ed27..e111faeaef70d1bbcc9461e10038f3b7cbc7398f 100644 --- a/core/modules/node/tests/src/Kernel/NodeValidationTest.php +++ b/core/modules/node/tests/src/Kernel/NodeValidationTest.php @@ -18,7 +18,7 @@ class NodeValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Set the default field storage backend for fields created during tests. diff --git a/core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php b/core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php index 95c40d9b6b4521f526112f48343061618d46d0fb..d92bd8fd7202e8e6700ea21ee8389bf22c7ac282 100644 --- a/core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php +++ b/core/modules/node/tests/src/Kernel/NodeViewBuilderTest.php @@ -19,7 +19,7 @@ class NodeViewBuilderTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * The node storage. diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeByNodeTypeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeByNodeTypeTest.php index d35d6fee30ea950378c05aa6dfa37690efe7b859..d5a8db09da654d176be6c3237c10873da36213af 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeByNodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeByNodeTypeTest.php @@ -16,7 +16,7 @@ class NodeByNodeTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionByNodeTypeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionByNodeTypeTest.php index 75434abc3333dce0b7a0a1c7b8bf3abdae362d6c..27e17cc41f9bdf605b3f6fa66780f83f00cc5334 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionByNodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionByNodeTypeTest.php @@ -16,7 +16,7 @@ class NodeRevisionByNodeTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionTest.php index 11d63decc442387a93ff72a5d3f0fc46a1def0aa..fbc28c5ce01971abe7dbf901380da966ff7c8a79 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeRevisionTest.php @@ -16,7 +16,7 @@ class NodeRevisionTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTest.php index 9a78d61da3ff602041afaa898289197114886687..4bc1be0afebdad9bb2202e61cc598994b9683b6e 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTest.php @@ -16,7 +16,7 @@ class NodeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTranslationTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTranslationTest.php index 95addeb8a0c1e05118ff582b2f92ef9eb9fef397..e7de62b07a45e714bad4132a0d7a4fb9864b9c9e 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTranslationTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTranslationTest.php @@ -14,7 +14,7 @@ class NodeTranslationTest extends NodeTest { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTypeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTypeTest.php index bd349c6113c78af4ff4b8bb82363863112f10838..9d59f43f0b7e0386085655d5ab6be47ebf56232e 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/NodeTypeTest.php @@ -16,7 +16,7 @@ class NodeTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/ViewModeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/ViewModeTest.php index e818cbee00009e7b3380a0751be119f16e5049ae..18d941c8a50581fe342d415445c22ba31ed775ff 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/ViewModeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d6/ViewModeTest.php @@ -16,7 +16,7 @@ class ViewModeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeEntityTranslationTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeEntityTranslationTest.php index 8be55b5e84558e7a69f047ab3a0230bbc30d3ee5..ef33a9624e011d2e82c8758d37d51e1616d25d71 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeEntityTranslationTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeEntityTranslationTest.php @@ -16,7 +16,7 @@ class NodeEntityTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTest.php index 19cc8d5fbcb122def93fb80302c6dca8a5e65e1c..010b90dc03762258a6bdb94d6002a74cbacb4f83 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTest.php @@ -16,7 +16,7 @@ class NodeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTranslationTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTranslationTest.php index da73d9123c375783acd292e7662f530b1e94b89d..d3229e420c50183c94ff24dcc2b254b393aed6ac 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTranslationTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTranslationTest.php @@ -14,7 +14,7 @@ class NodeTranslationTest extends NodeTest { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTypeTest.php b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTypeTest.php index 45f054110af552956407bed5be5deabc41c2dab1..5e876b7d4a0ff326823c0521a60c874f5e620ede 100644 --- a/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTypeTest.php +++ b/core/modules/node/tests/src/Kernel/Plugin/migrate/source/d7/NodeTypeTest.php @@ -16,7 +16,7 @@ class NodeTypeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'migrate_drupal']; + public static $modules = ['node', 'user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/SummaryLengthTest.php b/core/modules/node/tests/src/Kernel/SummaryLengthTest.php index cb3284d605b21427db03e82f2cb21e8378f14b90..eecb0d01884680168bf95f120eb33e0899940478 100644 --- a/core/modules/node/tests/src/Kernel/SummaryLengthTest.php +++ b/core/modules/node/tests/src/Kernel/SummaryLengthTest.php @@ -36,7 +36,7 @@ class SummaryLengthTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'datetime', 'user', diff --git a/core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php b/core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php index 8ffb8b324d98fcec56c46e4736409dc890ef9e5b..b216f40fb26a8f7a58e0929a29b292b59b33b390 100644 --- a/core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php +++ b/core/modules/node/tests/src/Kernel/Views/ArgumentUidRevisionTest.php @@ -19,7 +19,7 @@ class ArgumentUidRevisionTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'field', 'text', 'user', 'node_test_views']; + public static $modules = ['node', 'field', 'text', 'user', 'node_test_views']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php b/core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php index faea6378ac6361a28b5ad592227c8bc5b197e690..78ec67b19c48882510d1fc72eec4ee07f3fe7131 100644 --- a/core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php +++ b/core/modules/node/tests/src/Kernel/Views/NidArgumentTest.php @@ -18,7 +18,7 @@ class NidArgumentTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'field', 'text', 'node_test_config', 'user', 'node_test_views']; + public static $modules = ['node', 'field', 'text', 'node_test_config', 'user', 'node_test_views']; /** * Views used by this test. diff --git a/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php index 4587d6f2e9d99d9ad0e3eed049a1ca702528da87..7c68e8899d117467c766e464cee487329fdffe36 100644 --- a/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php +++ b/core/modules/node/tests/src/Kernel/Views/NodeViewsFieldAccessTest.php @@ -17,7 +17,7 @@ class NodeViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'entity_test']; + public static $modules = ['node', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Views/RevisionCreateTimestampTest.php b/core/modules/node/tests/src/Kernel/Views/RevisionCreateTimestampTest.php index 3c2ffcaa9cf2bd1a72f126c26c2e6666318e9c5a..287bf48395edd12456c72d0c72d0438bc2a98738 100644 --- a/core/modules/node/tests/src/Kernel/Views/RevisionCreateTimestampTest.php +++ b/core/modules/node/tests/src/Kernel/Views/RevisionCreateTimestampTest.php @@ -18,7 +18,7 @@ class RevisionCreateTimestampTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node_test_views', 'node', 'views', 'user']; + public static $modules = ['node_test_views', 'node', 'views', 'user']; /** * {@inheritdoc} diff --git a/core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php b/core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php index 3a021bc77431534add7cebe5aece46b7b7c6ded5..e47bdd038b328123265d29007e4625ef59646b31 100644 --- a/core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php +++ b/core/modules/node/tests/src/Kernel/Views/RevisionRelationshipsTest.php @@ -20,7 +20,7 @@ class RevisionRelationshipsTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['node' , 'node_test_views']; + public static $modules = ['node' , 'node_test_views']; /** * {@inheritdoc} diff --git a/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php b/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php index 728570d4dd4d692395c9cd4c7a0848b9159adc28..16c29907c885ede74b0b478805805dcb603dbb56 100644 --- a/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php +++ b/core/modules/options/tests/src/Functional/OptionsDynamicValuesTestBase.php @@ -17,7 +17,7 @@ abstract class OptionsDynamicValuesTestBase extends FieldTestBase { * * @var array */ - protected static $modules = ['options', 'entity_test', 'options_test']; + public static $modules = ['options', 'entity_test', 'options_test']; /** * The created entity. diff --git a/core/modules/options/tests/src/Functional/OptionsFieldUITest.php b/core/modules/options/tests/src/Functional/OptionsFieldUITest.php index a9ace4dda9c7dc1f9f443e5ea7dd2e936c0037e2..b61748397c8d42d35820a912b647e4ffa334f6d1 100644 --- a/core/modules/options/tests/src/Functional/OptionsFieldUITest.php +++ b/core/modules/options/tests/src/Functional/OptionsFieldUITest.php @@ -18,7 +18,7 @@ class OptionsFieldUITest extends FieldTestBase { * * @var array */ - protected static $modules = ['node', 'options', 'field_test', 'taxonomy', 'field_ui']; + public static $modules = ['node', 'options', 'field_test', 'taxonomy', 'field_ui']; /** * The name of the created content type. diff --git a/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php b/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php index 5ba1a687c856eb5054c7fe57d0b5c257c2f44cfd..d4d6afff9537688b7a9b565b55948468ee481929 100644 --- a/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php +++ b/core/modules/options/tests/src/Functional/OptionsFloatFieldImportTest.php @@ -18,7 +18,7 @@ class OptionsFloatFieldImportTest extends FieldTestBase { * * @var array */ - protected static $modules = ['node', 'options', 'field_ui', 'config', 'options_config_install_test']; + public static $modules = ['node', 'options', 'field_ui', 'config', 'options_config_install_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php b/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php index 84c338194f67f5b634876f8b0d2fdac12d65126c..5f15ac9cbee08f95c46cae32ebf2bf5dcf0de774 100644 --- a/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php +++ b/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php @@ -19,7 +19,7 @@ class OptionsWidgetsTest extends FieldTestBase { * * @var array */ - protected static $modules = ['node', 'options', 'entity_test', 'options_test', 'taxonomy', 'field_ui']; + public static $modules = ['node', 'options', 'entity_test', 'options_test', 'taxonomy', 'field_ui']; /** * A field storage with cardinality 1 to use in this test class. diff --git a/core/modules/options/tests/src/Kernel/OptionsFieldTest.php b/core/modules/options/tests/src/Kernel/OptionsFieldTest.php index 6395e87c686fa3b6ab247f36b3404c461b776a6e..401d6bc1da3ddad920088d6408457a7441f1796b 100644 --- a/core/modules/options/tests/src/Kernel/OptionsFieldTest.php +++ b/core/modules/options/tests/src/Kernel/OptionsFieldTest.php @@ -19,7 +19,7 @@ class OptionsFieldTest extends OptionsFieldUnitTestBase { * * @var array */ - protected static $modules = ['options']; + public static $modules = ['options']; /** * Test that allowed values can be updated. diff --git a/core/modules/options/tests/src/Kernel/OptionsFieldUnitTestBase.php b/core/modules/options/tests/src/Kernel/OptionsFieldUnitTestBase.php index 121a59550e64f9bf6c050692dfa8e5512b19a11f..9098b818b7021685686524cb7facb9ba9212186e 100644 --- a/core/modules/options/tests/src/Kernel/OptionsFieldUnitTestBase.php +++ b/core/modules/options/tests/src/Kernel/OptionsFieldUnitTestBase.php @@ -16,7 +16,7 @@ abstract class OptionsFieldUnitTestBase extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['options']; + public static $modules = ['options']; /** * The field name used in the test. diff --git a/core/modules/options/tests/src/Kernel/Views/FileViewsDataTest.php b/core/modules/options/tests/src/Kernel/Views/FileViewsDataTest.php index ea35b87ff3aeddcaa4ba4a61dc4200147ebb3cd7..c5f2902d055d1c351cd71a31c4f74adca8e1e8e0 100644 --- a/core/modules/options/tests/src/Kernel/Views/FileViewsDataTest.php +++ b/core/modules/options/tests/src/Kernel/Views/FileViewsDataTest.php @@ -19,7 +19,7 @@ class FileViewsDataTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['file', 'views', 'entity_test', 'user', 'field']; + public static $modules = ['file', 'views', 'entity_test', 'user', 'field']; /** * Tests views data generated for file field relationship. diff --git a/core/modules/options/tests/src/Kernel/Views/OptionsTestBase.php b/core/modules/options/tests/src/Kernel/Views/OptionsTestBase.php index 4f612b6a5ee1714dc95b894728f903a969d03232..9f53e63313fa75e64e38633ef2a17194698eebc0 100644 --- a/core/modules/options/tests/src/Kernel/Views/OptionsTestBase.php +++ b/core/modules/options/tests/src/Kernel/Views/OptionsTestBase.php @@ -19,7 +19,7 @@ abstract class OptionsTestBase extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['options', 'options_test_views', 'node', 'user', 'field']; + public static $modules = ['options', 'options_test_views', 'node', 'user', 'field']; /** * Stores the nodes used for the different tests. diff --git a/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php b/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php index 801cd1e19002cb72c3d97aaad15870d29b2304ef..d0235986c4273f7e09ca515b9f6b0b2ae1f25f30 100644 --- a/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php +++ b/core/modules/options/tests/src/Kernel/Views/ViewsDataTest.php @@ -15,7 +15,7 @@ class ViewsDataTest extends OptionsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['options', 'options_test', 'entity_test', 'views']; + public static $modules = ['options', 'options_test', 'entity_test', 'views']; /** * The field storage. diff --git a/core/modules/page_cache/tests/src/Functional/PageCacheTest.php b/core/modules/page_cache/tests/src/Functional/PageCacheTest.php index 788db446bd2fd15c9e20e57497fdc307eb8113b4..3e90d8eb2c080992c816d6b249b94dfeaf7ecab3 100644 --- a/core/modules/page_cache/tests/src/Functional/PageCacheTest.php +++ b/core/modules/page_cache/tests/src/Functional/PageCacheTest.php @@ -27,7 +27,7 @@ class PageCacheTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['test_page_test', 'system_test', 'entity_test']; + public static $modules = ['test_page_test', 'system_test', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/path/src/Tests/PathTestBase.php b/core/modules/path/src/Tests/PathTestBase.php index b42349b9c1fee7be43639b0a504014f31197496a..33cf5aba9dcd2f1a92f113cceee822dbd924235e 100644 --- a/core/modules/path/src/Tests/PathTestBase.php +++ b/core/modules/path/src/Tests/PathTestBase.php @@ -17,7 +17,7 @@ abstract class PathTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'path']; + public static $modules = ['node', 'path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathAdminTest.php b/core/modules/path/tests/src/Functional/PathAdminTest.php index 5910aa508eec270b06407ef9cb448dc8f9c0ea1f..a43a1f8de23d0e4a4177dc25763e5223bbe41c0b 100644 --- a/core/modules/path/tests/src/Functional/PathAdminTest.php +++ b/core/modules/path/tests/src/Functional/PathAdminTest.php @@ -14,7 +14,7 @@ class PathAdminTest extends PathTestBase { * * @var array */ - protected static $modules = ['path']; + public static $modules = ['path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathAliasTest.php b/core/modules/path/tests/src/Functional/PathAliasTest.php index 7a534d2cdf2753d0b73dd988f6bac81b92cfb5fb..b8ac5968db2607fbbbb54e354dd7140fc69852c4 100644 --- a/core/modules/path/tests/src/Functional/PathAliasTest.php +++ b/core/modules/path/tests/src/Functional/PathAliasTest.php @@ -18,7 +18,7 @@ class PathAliasTest extends PathTestBase { * * @var array */ - protected static $modules = ['path']; + public static $modules = ['path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathContentModerationTest.php b/core/modules/path/tests/src/Functional/PathContentModerationTest.php index c6e034af147185cb6c1279cb368bbf17d7ff2ac9..953f1116bafdf208afc85a9c9eef46d5b4c6b703 100644 --- a/core/modules/path/tests/src/Functional/PathContentModerationTest.php +++ b/core/modules/path/tests/src/Functional/PathContentModerationTest.php @@ -21,7 +21,7 @@ class PathContentModerationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'path', 'content_moderation']; + public static $modules = ['node', 'path', 'content_moderation']; /** * {@inheritdoc} diff --git a/core/modules/path/tests/src/Functional/PathLanguageTest.php b/core/modules/path/tests/src/Functional/PathLanguageTest.php index 2fa6d079034930faef3b7ba65b8489478fdd6a80..8e41edeaeefc839dcc64012986d5886f1941a735 100644 --- a/core/modules/path/tests/src/Functional/PathLanguageTest.php +++ b/core/modules/path/tests/src/Functional/PathLanguageTest.php @@ -14,7 +14,7 @@ class PathLanguageTest extends PathTestBase { * * @var array */ - protected static $modules = ['path', 'locale', 'locale_test', 'content_translation']; + public static $modules = ['path', 'locale', 'locale_test', 'content_translation']; /** * An user with permissions to administer content types. diff --git a/core/modules/path/tests/src/Functional/PathLanguageUiTest.php b/core/modules/path/tests/src/Functional/PathLanguageUiTest.php index c9d235b617a36344775e1b50118cd4c786aa4807..c2e3276246fa1270448a7c88d10fd578824d7c40 100644 --- a/core/modules/path/tests/src/Functional/PathLanguageUiTest.php +++ b/core/modules/path/tests/src/Functional/PathLanguageUiTest.php @@ -14,7 +14,7 @@ class PathLanguageUiTest extends PathTestBase { * * @var array */ - protected static $modules = ['path', 'locale', 'locale_test']; + public static $modules = ['path', 'locale', 'locale_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathMediaFormTest.php b/core/modules/path/tests/src/Functional/PathMediaFormTest.php index 54df43f485709fd1c5adf9a20e4523168fc1e2d9..3a9690081049c573017a1a45dd18551c39800c25 100644 --- a/core/modules/path/tests/src/Functional/PathMediaFormTest.php +++ b/core/modules/path/tests/src/Functional/PathMediaFormTest.php @@ -14,7 +14,7 @@ class PathMediaFormTest extends PathTestBase { /** * {@inheritdoc} */ - protected static $modules = ['media', 'media_test_source']; + public static $modules = ['media', 'media_test_source']; /** * {@inheritdoc} diff --git a/core/modules/path/tests/src/Functional/PathNodeFormTest.php b/core/modules/path/tests/src/Functional/PathNodeFormTest.php index cda5f0b4e952e60a85ea61810a1d0bac04a72d16..3245b17c59efe2b52be427ce11a6b7e8fe038ffb 100644 --- a/core/modules/path/tests/src/Functional/PathNodeFormTest.php +++ b/core/modules/path/tests/src/Functional/PathNodeFormTest.php @@ -14,7 +14,7 @@ class PathNodeFormTest extends PathTestBase { * * @var array */ - protected static $modules = ['node', 'path']; + public static $modules = ['node', 'path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathTaxonomyTermTest.php b/core/modules/path/tests/src/Functional/PathTaxonomyTermTest.php index 1730d269facf1943a5d879c793ef42fa4857abc5..80bedab75667a14cd378f284e33ca0981b588e2a 100644 --- a/core/modules/path/tests/src/Functional/PathTaxonomyTermTest.php +++ b/core/modules/path/tests/src/Functional/PathTaxonomyTermTest.php @@ -16,7 +16,7 @@ class PathTaxonomyTermTest extends PathTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Functional/PathTestBase.php b/core/modules/path/tests/src/Functional/PathTestBase.php index e7b9096695386db2332ac225f9acc98f26e08e62..d4b8826d58d59be0272bad48c217007c841abd59 100644 --- a/core/modules/path/tests/src/Functional/PathTestBase.php +++ b/core/modules/path/tests/src/Functional/PathTestBase.php @@ -14,7 +14,7 @@ abstract class PathTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'path']; + public static $modules = ['node', 'path']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Kernel/Migrate/d6/MigrateUrlAliasTest.php b/core/modules/path/tests/src/Kernel/Migrate/d6/MigrateUrlAliasTest.php index 9b708d1b61e84a3c5dab676e89ae17860a8c161c..28f22ecc959d0d3cfb59ee5e6f3df196518a4798 100644 --- a/core/modules/path/tests/src/Kernel/Migrate/d6/MigrateUrlAliasTest.php +++ b/core/modules/path/tests/src/Kernel/Migrate/d6/MigrateUrlAliasTest.php @@ -16,7 +16,7 @@ class MigrateUrlAliasTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'path', diff --git a/core/modules/path/tests/src/Kernel/Migrate/d7/MigrateUrlAliasTest.php b/core/modules/path/tests/src/Kernel/Migrate/d7/MigrateUrlAliasTest.php index 367bc594bf94a0064185e35fd88ec198449c4888..b8d92e0c49a0252370f44d2bacc9eacb080075c6 100644 --- a/core/modules/path/tests/src/Kernel/Migrate/d7/MigrateUrlAliasTest.php +++ b/core/modules/path/tests/src/Kernel/Migrate/d7/MigrateUrlAliasTest.php @@ -14,7 +14,7 @@ class MigrateUrlAliasTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/path/tests/src/Kernel/PathItemTest.php b/core/modules/path/tests/src/Kernel/PathItemTest.php index 9395cc73acdddba29682b59d32e997357d48b13f..224a8420b3b165a32500f119d7af9f06f988ca20 100644 --- a/core/modules/path/tests/src/Kernel/PathItemTest.php +++ b/core/modules/path/tests/src/Kernel/PathItemTest.php @@ -19,7 +19,7 @@ class PathItemTest extends KernelTestBase { * * @var array */ - protected static $modules = ['path', 'node', 'user', 'system', 'language', 'content_translation']; + public static $modules = ['path', 'node', 'user', 'system', 'language', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php b/core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php index 2ef03a7b821dbbbb4186195818ee03c262b6e817..773b792f38a7bd29edcdb9c199f3d620a975c190 100644 --- a/core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php +++ b/core/modules/path/tests/src/Kernel/PathNoCanonicalLinkTest.php @@ -18,7 +18,7 @@ class PathNoCanonicalLinkTest extends KernelTestBase { * * @var array */ - protected static $modules = ['path', 'content_translation_test', 'language', 'entity_test', 'user', 'system']; + public static $modules = ['path', 'content_translation_test', 'language', 'entity_test', 'user', 'system']; protected function setUp() { parent::setUp(); diff --git a/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d6/UrlAliasTest.php b/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d6/UrlAliasTest.php index 4cfe6d12268f9871662866a22eb48248772d6cdb..1057dffbee66a725e646f647de54d5f4c572c285 100644 --- a/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d6/UrlAliasTest.php +++ b/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d6/UrlAliasTest.php @@ -15,7 +15,7 @@ class UrlAliasTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal', 'path']; + public static $modules = ['migrate_drupal', 'path']; /** * {@inheritdoc} diff --git a/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d7/UrlAliasTest.php b/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d7/UrlAliasTest.php index 191b0794d962a90f4a60a735994e683d187ee81d..2fdfd361d66c2e101ef4715a695796dadffd278e 100644 --- a/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d7/UrlAliasTest.php +++ b/core/modules/path/tests/src/Kernel/Plugin/migrate/source/d7/UrlAliasTest.php @@ -15,7 +15,7 @@ class UrlAliasTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal', 'path']; + public static $modules = ['migrate_drupal', 'path']; /** * {@inheritdoc} diff --git a/core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php b/core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php index 86fa48b9a096e25c3081cc42e19683ea549a4e6a..a1ef6cd2e8bbf615839fdca2f532a4206e9abceb 100644 --- a/core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php +++ b/core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php @@ -25,7 +25,7 @@ class QuickEditAutocompleteTermTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'taxonomy', 'quickedit']; + public static $modules = ['node', 'taxonomy', 'quickedit']; /** * Stores the node used for the tests. diff --git a/core/modules/quickedit/src/Tests/QuickEditLoadingTest.php b/core/modules/quickedit/src/Tests/QuickEditLoadingTest.php index e645059757332ee59bbb1da05d2b88f5b14858fb..61af1f52b632dd3f59b9c21ecc5026a5c4fe638a 100644 --- a/core/modules/quickedit/src/Tests/QuickEditLoadingTest.php +++ b/core/modules/quickedit/src/Tests/QuickEditLoadingTest.php @@ -26,7 +26,7 @@ class QuickEditLoadingTest extends WebTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'contextual', 'quickedit', 'filter', diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php index 44450d633b492540b7ccde5937d61bae86dfc937..7555220acfbebb1b35e37716605822d60cade882 100644 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php +++ b/core/modules/quickedit/tests/src/FunctionalJavascript/FieldTest.php @@ -21,7 +21,7 @@ class FieldTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'ckeditor', 'contextual', diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php index 340e1e41c7a9b10ec4a0b57b67c9a705c72e9c89..cb3f141b067e0c7fdd1c2c7ab13c0ed1b35044ff 100644 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php +++ b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php @@ -21,7 +21,7 @@ class QuickEditIntegrationTest extends QuickEditJavascriptTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'editor', 'ckeditor', diff --git a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php index 77d3f44ed2a1d3e09d5e14de786e40b3c52c7ba0..8c939b3264a125ec292190657ce6b3a2a60f3c1d 100644 --- a/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php +++ b/core/modules/quickedit/tests/src/FunctionalJavascript/QuickEditJavascriptTestBase.php @@ -13,7 +13,7 @@ class QuickEditJavascriptTestBase extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['contextual', 'quickedit', 'toolbar']; + public static $modules = ['contextual', 'quickedit', 'toolbar']; /** * A user with permissions to edit Articles and use Quick Edit. diff --git a/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php b/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php index 974208a90cd89b670a436626fef8df5e771f2e33..75f303049476421e1bd4283d00ec4733191c72f1 100644 --- a/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php +++ b/core/modules/quickedit/tests/src/Kernel/MetadataGeneratorTest.php @@ -18,7 +18,7 @@ class MetadataGeneratorTest extends QuickEditTestBase { /** * {@inheritdoc} */ - protected static $modules = ['quickedit_test']; + public static $modules = ['quickedit_test']; /** * The manager for editor plugins. diff --git a/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php b/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php index e5bc63dd841b2edb849b0ced64491cf4dbc75bf8..8cc2d2f8b628906dfd9d0cef93952c34c0917cd6 100644 --- a/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php +++ b/core/modules/quickedit/tests/src/Kernel/QuickEditTestBase.php @@ -16,7 +16,7 @@ abstract class QuickEditTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'entity_test', 'field', 'field_test', 'filter', 'user', 'text', 'quickedit']; + public static $modules = ['system', 'entity_test', 'field', 'field_test', 'filter', 'user', 'text', 'quickedit']; /** * Bag of created fields. diff --git a/core/modules/rdf/tests/src/Functional/CommentAttributesTest.php b/core/modules/rdf/tests/src/Functional/CommentAttributesTest.php index 99a90d1131d997e0eaf112d5c107aaaad8ea90f8..0c194382ba14e2cf271d419455c311e72de3e0b9 100644 --- a/core/modules/rdf/tests/src/Functional/CommentAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/CommentAttributesTest.php @@ -20,7 +20,7 @@ class CommentAttributesTest extends CommentTestBase { * * @var array */ - protected static $modules = ['views', 'node', 'comment', 'rdf']; + public static $modules = ['views', 'node', 'comment', 'rdf']; /** * URI of the front page of the Drupal site. diff --git a/core/modules/rdf/tests/src/Functional/EntityReferenceFieldAttributesTest.php b/core/modules/rdf/tests/src/Functional/EntityReferenceFieldAttributesTest.php index 2aa26e24d8b4fed3e5ced64583c88f2aa30c9f74..b91215db5b3d611ede4a02992495aa73877018fc 100644 --- a/core/modules/rdf/tests/src/Functional/EntityReferenceFieldAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/EntityReferenceFieldAttributesTest.php @@ -17,7 +17,7 @@ class EntityReferenceFieldAttributesTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['rdf', 'field_test', 'file', 'image']; + public static $modules = ['rdf', 'field_test', 'file', 'image']; /** * The name of the taxonomy term reference field used in the test. diff --git a/core/modules/rdf/tests/src/Functional/FileFieldAttributesTest.php b/core/modules/rdf/tests/src/Functional/FileFieldAttributesTest.php index 26d487ee2f7d6053db5b6a94a7498fb0c470c45b..bf567c2615adffd4f38c4757e7c5915ba3dc13b3 100644 --- a/core/modules/rdf/tests/src/Functional/FileFieldAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/FileFieldAttributesTest.php @@ -17,7 +17,7 @@ class FileFieldAttributesTest extends FileFieldTestBase { * * @var array */ - protected static $modules = ['rdf', 'file']; + public static $modules = ['rdf', 'file']; /** * The name of the file field used in the test. diff --git a/core/modules/rdf/tests/src/Functional/GetRdfNamespacesTest.php b/core/modules/rdf/tests/src/Functional/GetRdfNamespacesTest.php index 12794550118120c2fe05004304b169f234e6d7fb..0b162a4a905556f5b485e4c12af43f0624635960 100644 --- a/core/modules/rdf/tests/src/Functional/GetRdfNamespacesTest.php +++ b/core/modules/rdf/tests/src/Functional/GetRdfNamespacesTest.php @@ -16,7 +16,7 @@ class GetRdfNamespacesTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['rdf', 'rdf_test_namespaces']; + public static $modules = ['rdf', 'rdf_test_namespaces']; /** * Tests getting RDF namespaces. diff --git a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonAnonTest.php b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonAnonTest.php index 7ae23e08fc92b720bbdfb65bd397979d37e5648a..2d241e99677a33d48f33a16f679c86b4fee96988 100644 --- a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonAnonTest.php +++ b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonAnonTest.php @@ -15,7 +15,7 @@ class RdfMappingHalJsonAnonTest extends RdfMappingResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonBasicAuthTest.php b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonBasicAuthTest.php index 1c7b93496a6bfad1a8ef363c0f0b83f79f7b66c3..346ad229e0266091cc7f108e685b2b6bae6e5f7b 100644 --- a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonBasicAuthTest.php +++ b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class RdfMappingHalJsonBasicAuthTest extends RdfMappingResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonCookieTest.php b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonCookieTest.php index 01519357c0c266d4f166eaf18d81078b04a5aec7..ff90d902a1dfb07832f44b75f23d3314112a07fa 100644 --- a/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonCookieTest.php +++ b/core/modules/rdf/tests/src/Functional/Hal/RdfMappingHalJsonCookieTest.php @@ -15,7 +15,7 @@ class RdfMappingHalJsonCookieTest extends RdfMappingResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/ImageFieldAttributesTest.php b/core/modules/rdf/tests/src/Functional/ImageFieldAttributesTest.php index 9514b12438ccfc73e7ca2244b1b3ef7333122df1..e5707591f70d2a4a3d5fc38f8ce02513b88074fa 100644 --- a/core/modules/rdf/tests/src/Functional/ImageFieldAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/ImageFieldAttributesTest.php @@ -24,7 +24,7 @@ class ImageFieldAttributesTest extends ImageFieldTestBase { * * @var array */ - protected static $modules = ['rdf', 'image']; + public static $modules = ['rdf', 'image']; /** * The name of the image field used in the test. diff --git a/core/modules/rdf/tests/src/Functional/NodeAttributesTest.php b/core/modules/rdf/tests/src/Functional/NodeAttributesTest.php index f74c91b82e075e1dc202a57c402a21b639319006..2e5675fe6a87460639acb6e540625cd850633f11 100644 --- a/core/modules/rdf/tests/src/Functional/NodeAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/NodeAttributesTest.php @@ -16,7 +16,7 @@ class NodeAttributesTest extends NodeTestBase { * * @var array */ - protected static $modules = ['rdf']; + public static $modules = ['rdf']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingJsonBasicAuthTest.php b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingJsonBasicAuthTest.php index 832b086ffd61840ff527943abf877b0f5329ab3f..9537336780fd2be0f17d616349a3b35067dfa185 100644 --- a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingJsonBasicAuthTest.php +++ b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class RdfMappingJsonBasicAuthTest extends RdfMappingResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php index bd528aaae72deb995a6adfec9590adcdafd9df52..ffe5bd4fdad26f84ef6c819b22a1e3572612e511 100644 --- a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php +++ b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php @@ -11,7 +11,7 @@ abstract class RdfMappingResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'rdf']; + public static $modules = ['node', 'rdf']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingXmlBasicAuthTest.php b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingXmlBasicAuthTest.php index 1940ac1eb4237e36907c2170291813273f0cc62f..9cf6b97d51775591b1d7e4db787e13a3314a4e11 100644 --- a/core/modules/rdf/tests/src/Functional/Rest/RdfMappingXmlBasicAuthTest.php +++ b/core/modules/rdf/tests/src/Functional/Rest/RdfMappingXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class RdfMappingXmlBasicAuthTest extends RdfMappingResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Functional/TaxonomyAttributesTest.php b/core/modules/rdf/tests/src/Functional/TaxonomyAttributesTest.php index bd9c1870710924199401c44afbc5349916ae8f3d..346ffb7eb9dca78586822d796ce4737117df870d 100644 --- a/core/modules/rdf/tests/src/Functional/TaxonomyAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/TaxonomyAttributesTest.php @@ -16,7 +16,7 @@ class TaxonomyAttributesTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['rdf', 'views']; + public static $modules = ['rdf', 'views']; /** * Vocabulary created for testing purposes. diff --git a/core/modules/rdf/tests/src/Functional/UserAttributesTest.php b/core/modules/rdf/tests/src/Functional/UserAttributesTest.php index 0a74cb804910791a9a09677a758606ca8f678cf0..fddd440894e712f6c764fe7b4002c79813e14608 100644 --- a/core/modules/rdf/tests/src/Functional/UserAttributesTest.php +++ b/core/modules/rdf/tests/src/Functional/UserAttributesTest.php @@ -16,7 +16,7 @@ class UserAttributesTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['rdf', 'node']; + public static $modules = ['rdf', 'node']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/CrudTest.php b/core/modules/rdf/tests/src/Kernel/CrudTest.php index 12a5c3dd91b16ef9d56ca5050ad537e65c9e986f..f8292a38b74d3b797781db0c974da70896f9b7ff 100644 --- a/core/modules/rdf/tests/src/Kernel/CrudTest.php +++ b/core/modules/rdf/tests/src/Kernel/CrudTest.php @@ -16,7 +16,7 @@ class CrudTest extends KernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'rdf', 'system']; + public static $modules = ['entity_test', 'rdf', 'system']; /** * @var string diff --git a/core/modules/rdf/tests/src/Kernel/Field/DateTimeFieldRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/DateTimeFieldRdfaTest.php index d3d7716c063f566a8cdc7290b4f9036f4e6e7e86..fc78691b96492c9a71233b9e4e8064d190c77b1d 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/DateTimeFieldRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/DateTimeFieldRdfaTest.php @@ -26,7 +26,7 @@ class DateTimeFieldRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['datetime']; + public static $modules = ['datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Field/EmailFieldRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/EmailFieldRdfaTest.php index 91696e778d7aecb10d76fb6be11515a78361cb41..85ae888103be14917abc0dc397caeac5dec72a80 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/EmailFieldRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/EmailFieldRdfaTest.php @@ -19,7 +19,7 @@ class EmailFieldRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['text']; + public static $modules = ['text']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Field/EntityReferenceRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/EntityReferenceRdfaTest.php index e61b5ba3a617d4df342320db640af92d67d3ad66..9312fbc929504c0c6976c22d81e10622e6b813e0 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/EntityReferenceRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/EntityReferenceRdfaTest.php @@ -44,7 +44,7 @@ class EntityReferenceRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['text', 'filter']; + public static $modules = ['text', 'filter']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaDatatypeCallbackTest.php b/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaDatatypeCallbackTest.php index 18748b513bf53dfe5a498a9f2021672bf5455e02..81d3a40610ca11f3de7a20ff04f24032d3c0f573 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaDatatypeCallbackTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaDatatypeCallbackTest.php @@ -19,7 +19,7 @@ class FieldRdfaDatatypeCallbackTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['text', 'filter', 'rdf_test']; + public static $modules = ['text', 'filter', 'rdf_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaTestBase.php b/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaTestBase.php index 5568f8357b515b190d60660a4775334cba386dcc..82ea9efdcc025a8855054be1ddeeda18a6e3b50c 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaTestBase.php +++ b/core/modules/rdf/tests/src/Kernel/Field/FieldRdfaTestBase.php @@ -48,7 +48,7 @@ abstract class FieldRdfaTestBase extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['rdf']; + public static $modules = ['rdf']; /** * @var string diff --git a/core/modules/rdf/tests/src/Kernel/Field/LinkFieldRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/LinkFieldRdfaTest.php index d3904979b6361891e022b80cd3347c1865bf539f..aac9b75591f861b4d4265f8dad834f99214ebfcf 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/LinkFieldRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/LinkFieldRdfaTest.php @@ -19,7 +19,7 @@ class LinkFieldRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['link', 'text']; + public static $modules = ['link', 'text']; /** * {@inheritdoc} diff --git a/core/modules/rdf/tests/src/Kernel/Field/TelephoneFieldRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/TelephoneFieldRdfaTest.php index d28a319ea30f4ac115d61119595ca36db5a9215c..d705b2106d0abf0492dc34ffbd63364cfa11ac71 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/TelephoneFieldRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/TelephoneFieldRdfaTest.php @@ -26,7 +26,7 @@ class TelephoneFieldRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['telephone', 'text']; + public static $modules = ['telephone', 'text']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php b/core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php index 34ad8cc59c1af0cc77a0235249cc9f9f706c734f..48bc5b8f6bc62334a4b18c70c9df5ee16671f2da 100644 --- a/core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php +++ b/core/modules/rdf/tests/src/Kernel/Field/TextFieldRdfaTest.php @@ -33,7 +33,7 @@ class TextFieldRdfaTest extends FieldRdfaTestBase { /** * {@inheritdoc} */ - protected static $modules = ['text', 'filter']; + public static $modules = ['text', 'filter']; protected function setUp() { parent::setUp(); diff --git a/core/modules/rdf/tests/src/Kernel/Migrate/d7/MigrateRdfMappingTest.php b/core/modules/rdf/tests/src/Kernel/Migrate/d7/MigrateRdfMappingTest.php index ac33f687caec2b6e060289c5f92488cea8001717..c61a7c4039e849889858302ff33239862b90aed7 100644 --- a/core/modules/rdf/tests/src/Kernel/Migrate/d7/MigrateRdfMappingTest.php +++ b/core/modules/rdf/tests/src/Kernel/Migrate/d7/MigrateRdfMappingTest.php @@ -15,7 +15,7 @@ class MigrateRdfMappingTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_ui', 'node', 'rdf', diff --git a/core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php b/core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php index 84a2e3b43c42b306ed608feaf891b699d5f5cd81..82b0497d9b7ab903f37844c90715ae600bab6556 100644 --- a/core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php +++ b/core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php @@ -16,7 +16,7 @@ class RdfMappingTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'migrate_drupal', 'node', diff --git a/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php b/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php index 519d10b2003613c092d6545a5b0e75e04d6063f4..4023ef26b279a4204c6bb791ea2145a2cf066aa7 100644 --- a/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php +++ b/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php @@ -16,7 +16,7 @@ class RdfaAttributesTest extends KernelTestBase { * * @var array */ - protected static $modules = ['rdf']; + public static $modules = ['rdf']; /** * Test attribute creation for mappings which use 'property'. diff --git a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php index 1a563914c88ad10ae0c86958be4468f44ed9696a..3828ab0d75e918f26c7fe7565706100749f55133 100644 --- a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php +++ b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php @@ -31,7 +31,7 @@ class ResponsiveImageFieldDisplayTest extends ImageFieldTestBase { * * @var array */ - protected static $modules = ['field_ui', 'responsive_image', 'responsive_image_test_module']; + public static $modules = ['field_ui', 'responsive_image', 'responsive_image_test_module']; /** * Drupal\simpletest\WebTestBase\setUp(). diff --git a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldUiTest.php b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldUiTest.php index a8a8b6f04b9acc2251f8632e00d720c023622707..2069f61368f14f8804da50c7e39a523fb8e6afd5 100644 --- a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldUiTest.php +++ b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldUiTest.php @@ -20,7 +20,7 @@ class ResponsiveImageFieldUiTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'image', 'responsive_image', 'responsive_image_test_module', 'block']; + public static $modules = ['node', 'field_ui', 'image', 'responsive_image', 'responsive_image_test_module', 'block']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonAnonTest.php b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonAnonTest.php index 60be0741d502ce24e7f913f2a7bab98c954881a9..50dc1970dfa920e543b5287cff6a8b27f6a8a2ef 100644 --- a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonAnonTest.php +++ b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ResponsiveImageStyleHalJsonAnonTest extends ResponsiveImageStyleResourceTe /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonBasicAuthTest.php b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonBasicAuthTest.php index 8c991cd0b857c5a598d2ee251cd8aa5eb41f05a9..1f45a2d74367887a625775fd4df584ad632779a9 100644 --- a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonBasicAuthTest.php +++ b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ResponsiveImageStyleHalJsonBasicAuthTest extends ResponsiveImageStyleResou /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonCookieTest.php b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonCookieTest.php index ea4955f6ea8d6330b2e9f6205a66bee4973a363e..85d95431f58d5efb31b63632dfb0de0431c0e1fe 100644 --- a/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonCookieTest.php +++ b/core/modules/responsive_image/tests/src/Functional/Hal/ResponsiveImageStyleHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ResponsiveImageStyleHalJsonCookieTest extends ResponsiveImageStyleResource /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/ResponsiveImageAdminUITest.php b/core/modules/responsive_image/tests/src/Functional/ResponsiveImageAdminUITest.php index 04a5df32c1e2a9a3b4891c7afec3215d147aec85..ce9050e2736d39719cc499a17683d659a0376447 100644 --- a/core/modules/responsive_image/tests/src/Functional/ResponsiveImageAdminUITest.php +++ b/core/modules/responsive_image/tests/src/Functional/ResponsiveImageAdminUITest.php @@ -16,7 +16,7 @@ class ResponsiveImageAdminUITest extends BrowserTestBase { * * @var array */ - protected static $modules = ['responsive_image', 'responsive_image_test_module']; + public static $modules = ['responsive_image', 'responsive_image_test_module']; /** * Drupal\simpletest\WebTestBase\setUp(). diff --git a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleJsonBasicAuthTest.php b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleJsonBasicAuthTest.php index 478a1492242981a5acc3a54f50acd228aefaa073..b3c9127da412590ca0b3062856cd61ac694ba0de 100644 --- a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleJsonBasicAuthTest.php +++ b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ResponsiveImageStyleJsonBasicAuthTest extends ResponsiveImageStyleResource /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleResourceTestBase.php b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleResourceTestBase.php index cabe13a3e7e0c6f2f0d4a35eafbf2c1a4f78a840..dbef272db253834984b9ff62bb52d0338c6a1044 100644 --- a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleResourceTestBase.php +++ b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleResourceTestBase.php @@ -13,7 +13,7 @@ abstract class ResponsiveImageStyleResourceTestBase extends EntityResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['responsive_image']; + public static $modules = ['responsive_image']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleXmlBasicAuthTest.php b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleXmlBasicAuthTest.php index 110c04ddcde5ecf9b67d037b95a47c78db190704..e850e99d57bae7635fcb60b5bbbd4d0a96b0d520 100644 --- a/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleXmlBasicAuthTest.php +++ b/core/modules/responsive_image/tests/src/Functional/Rest/ResponsiveImageStyleXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ResponsiveImageStyleXmlBasicAuthTest extends ResponsiveImageStyleResourceT /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/responsive_image/tests/src/Functional/ViewsIntegrationTest.php b/core/modules/responsive_image/tests/src/Functional/ViewsIntegrationTest.php index 2b4f4d3de03864862386fce0edc6e0711179bbbb..33f19a5be56412f0b05fea22fbd9c9926f7bc296 100644 --- a/core/modules/responsive_image/tests/src/Functional/ViewsIntegrationTest.php +++ b/core/modules/responsive_image/tests/src/Functional/ViewsIntegrationTest.php @@ -22,7 +22,7 @@ class ViewsIntegrationTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'views', 'views_ui', 'responsive_image', diff --git a/core/modules/responsive_image/tests/src/Kernel/ResponsiveImageIntegrationTest.php b/core/modules/responsive_image/tests/src/Kernel/ResponsiveImageIntegrationTest.php index 00641c646ba318fa69c2db4c44bd932c75bf8b05..d48129122b8e929e16862a189b14acf9ba5e20f4 100644 --- a/core/modules/responsive_image/tests/src/Kernel/ResponsiveImageIntegrationTest.php +++ b/core/modules/responsive_image/tests/src/Kernel/ResponsiveImageIntegrationTest.php @@ -18,7 +18,7 @@ class ResponsiveImageIntegrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['responsive_image', 'field', 'image', 'file', 'entity_test', 'breakpoint', 'responsive_image_test_module']; + public static $modules = ['responsive_image', 'field', 'image', 'file', 'entity_test', 'breakpoint', 'responsive_image_test_module']; /** * Tests integration with entity view display. diff --git a/core/modules/rest/src/Tests/RESTTestBase.php b/core/modules/rest/src/Tests/RESTTestBase.php index 5aba91d651150fb581f4d888dddd6265c60dd2d9..66be4b29eaadfb16db0c996c4f657d691f1c9d5f 100644 --- a/core/modules/rest/src/Tests/RESTTestBase.php +++ b/core/modules/rest/src/Tests/RESTTestBase.php @@ -65,7 +65,7 @@ abstract class RESTTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['rest', 'entity_test']; + public static $modules = ['rest', 'entity_test']; /** * The last response. diff --git a/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php index 4d870c26a29ca8fad6f40d05bc3fda72480a2149..5e0d4e51764f6993821ec42ba50076c4ddda66a6 100644 --- a/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/EntityResource/EntityResourceTestBase.php @@ -155,7 +155,7 @@ abstract class EntityResourceTestBase extends ResourceTestBase { * * @var array */ - protected static $modules = ['rest_test', 'text']; + public static $modules = ['rest_test', 'text']; /** * Provides an entity resource. diff --git a/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php b/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php index 49a0156bdbb57f64a1845475c9b67dd78298ff2d..42c7b2c50a8397f8be50a88a3a3ae0a177f44601 100644 --- a/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/FileUploadResourceTestBase.php @@ -25,7 +25,7 @@ abstract class FileUploadResourceTestBase extends ResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest_test', 'entity_test', 'file']; + public static $modules = ['rest_test', 'entity_test', 'file']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonAnonTest.php b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonAnonTest.php index 9f6a0d445c78d28ba83e386da646ebbc578f31c5..72ccd45e932a8f9f1d67d1abf8111a2709af5ea1 100644 --- a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonAnonTest.php +++ b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonAnonTest.php @@ -15,7 +15,7 @@ class RestResourceConfigHalJsonAnonTest extends RestResourceConfigResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonBasicAuthTest.php b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonBasicAuthTest.php index 70c1680a74c96c9f415b728ccf496d92b1d3dfa4..e5e9a7efbbff9a01793dabb52c7384c373080186 100644 --- a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonBasicAuthTest.php +++ b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class RestResourceConfigHalJsonBasicAuthTest extends RestResourceConfigResourceT /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonCookieTest.php b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonCookieTest.php index a1b16d254d97823c7f0374719ac5c2c832dcf8c2..606d3fd641327aaf8d75e7f6f592d5c950f8de23 100644 --- a/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonCookieTest.php +++ b/core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonCookieTest.php @@ -15,7 +15,7 @@ class RestResourceConfigHalJsonCookieTest extends RestResourceConfigResourceTest /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/ResourceTest.php b/core/modules/rest/tests/src/Functional/ResourceTest.php index 6532ba4a1cc2fa53eb86fa0451e9c054afba5eea..d04b990e60fee893b62c823e7fa7c04ac5bb45bd 100644 --- a/core/modules/rest/tests/src/Functional/ResourceTest.php +++ b/core/modules/rest/tests/src/Functional/ResourceTest.php @@ -23,7 +23,7 @@ class ResourceTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['hal', 'rest', 'entity_test', 'rest_test']; + public static $modules = ['hal', 'rest', 'entity_test', 'rest_test']; /** * The entity. diff --git a/core/modules/rest/tests/src/Functional/ResourceTestBase.php b/core/modules/rest/tests/src/Functional/ResourceTestBase.php index e0bd2a2ac3c95f90c9288966ae0af1834e547fa9..d7ca1e34f3d5826f0a9fa6288e2212053597d4cc 100644 --- a/core/modules/rest/tests/src/Functional/ResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/ResourceTestBase.php @@ -93,7 +93,7 @@ abstract class ResourceTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['rest']; + public static $modules = ['rest']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigJsonBasicAuthTest.php b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigJsonBasicAuthTest.php index a5fb61c2732bd4075cb853cd47aab7261477c17d..8ac84636ec3145918177148b8c7a9b5db913d179 100644 --- a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigJsonBasicAuthTest.php +++ b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class RestResourceConfigJsonBasicAuthTest extends RestResourceConfigResourceTest /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php index 2fdb03d81e067ff3713b3f0213769fd746a6016c..a0b0b2e428fd950903036d3ff8e795f6e519cd5c 100644 --- a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php +++ b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigResourceTestBase.php @@ -10,7 +10,7 @@ abstract class RestResourceConfigResourceTestBase extends EntityResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['dblog']; + public static $modules = ['dblog']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigXmlBasicAuthTest.php b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigXmlBasicAuthTest.php index 3d2ffe4ba684b881fba614be8a75bbbcd4d2c4f3..c5034b4ee5cc04e708c00613a630bc40ff295868 100644 --- a/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigXmlBasicAuthTest.php +++ b/core/modules/rest/tests/src/Functional/Rest/RestResourceConfigXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class RestResourceConfigXmlBasicAuthTest extends RestResourceConfigResourceTestB /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Views/ExcludedFieldTokenTest.php b/core/modules/rest/tests/src/Functional/Views/ExcludedFieldTokenTest.php index 5eef6fa8fb9144364451833858cac65d16f56780..cf9913d85a43514c9048b1091bb8fd6766d36f79 100644 --- a/core/modules/rest/tests/src/Functional/Views/ExcludedFieldTokenTest.php +++ b/core/modules/rest/tests/src/Functional/Views/ExcludedFieldTokenTest.php @@ -33,7 +33,7 @@ class ExcludedFieldTokenTest extends ViewTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'rest_test_views', 'node', diff --git a/core/modules/rest/tests/src/Functional/Views/RestExportAuthTest.php b/core/modules/rest/tests/src/Functional/Views/RestExportAuthTest.php index 476bfcf34997c2c2d0517037cb546ebc9f294954..24546089cd5442a870cf021dd6d40708201a5ad6 100644 --- a/core/modules/rest/tests/src/Functional/Views/RestExportAuthTest.php +++ b/core/modules/rest/tests/src/Functional/Views/RestExportAuthTest.php @@ -15,7 +15,7 @@ class RestExportAuthTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest', 'views_ui', 'basic_auth']; + public static $modules = ['rest', 'views_ui', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php b/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php index 249cfd104d9bcfde5290da95799307749c06c116..b60eb0c3f2a2627748e6dcc0d3bee306a6cb8b08 100644 --- a/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php +++ b/core/modules/rest/tests/src/Functional/Views/StyleSerializerTest.php @@ -36,7 +36,7 @@ class StyleSerializerTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'entity_test', 'hal', 'rest_test_views', 'node', 'text', 'field', 'language', 'basic_auth']; + public static $modules = ['views_ui', 'entity_test', 'hal', 'rest_test_views', 'node', 'text', 'field', 'language', 'basic_auth']; /** * Views used by this test. diff --git a/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php b/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php index ca0bac7221a2a106be2c94f10e5900e7929d2248..500f375ef95b40c0868bbb9340cfe65262032d3b 100644 --- a/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php +++ b/core/modules/rest/tests/src/Kernel/Entity/ConfigDependenciesTest.php @@ -17,7 +17,7 @@ class ConfigDependenciesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest', 'entity_test', 'serialization']; + public static $modules = ['rest', 'entity_test', 'serialization']; /** * @covers ::calculateDependencies diff --git a/core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php b/core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php index 585743307eaba38b324f8eed91478dcb89d246fa..89e9b1dec5bbdd4d1377e99264b0080ade57a53d 100644 --- a/core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php +++ b/core/modules/rest/tests/src/Kernel/Entity/RestResourceConfigTest.php @@ -16,7 +16,7 @@ class RestResourceConfigTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest', 'entity_test', 'serialization', 'basic_auth', 'user', 'hal']; + public static $modules = ['rest', 'entity_test', 'serialization', 'basic_auth', 'user', 'hal']; /** * @covers ::calculateDependencies diff --git a/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php b/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php index 30ba59ea8c27c9467bba19f0bbd71c223e5a121c..a791838f9fdd3280d3ea022ea3f3afb6d8708696 100644 --- a/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php +++ b/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php @@ -27,7 +27,7 @@ class RequestHandlerTest extends KernelTestBase { */ protected $requestHandler; - protected static $modules = ['serialization', 'rest']; + public static $modules = ['serialization', 'rest']; /** * The entity storage. diff --git a/core/modules/rest/tests/src/Kernel/Views/RestExportAuthTest.php b/core/modules/rest/tests/src/Kernel/Views/RestExportAuthTest.php index 99e8f824a6933665530fcb4bbb608cf370133a5b..6570706f770dd4e5f841d03da985871cdbf57d85 100644 --- a/core/modules/rest/tests/src/Kernel/Views/RestExportAuthTest.php +++ b/core/modules/rest/tests/src/Kernel/Views/RestExportAuthTest.php @@ -16,7 +16,7 @@ class RestExportAuthTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'rest', 'views_ui', diff --git a/core/modules/rest/tests/src/Kernel/Views/RestExportTest.php b/core/modules/rest/tests/src/Kernel/Views/RestExportTest.php index 04c708cacf31e35ed2f197193539710bf2cc4fdc..f3a8f04f5272c0e0ea15cf2869d128f4d761e10c 100644 --- a/core/modules/rest/tests/src/Kernel/Views/RestExportTest.php +++ b/core/modules/rest/tests/src/Kernel/Views/RestExportTest.php @@ -24,7 +24,7 @@ class RestExportTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest_test_views', 'serialization', 'rest', 'entity_test']; + public static $modules = ['rest_test_views', 'serialization', 'rest', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/rest/tests/src/Kernel/Views/StyleSerializerKernelTest.php b/core/modules/rest/tests/src/Kernel/Views/StyleSerializerKernelTest.php index 029b523895b70a9b755e21867871d6feeeb1589d..829d08bb1880f4dc0f630ff55be175e9cc46a466 100644 --- a/core/modules/rest/tests/src/Kernel/Views/StyleSerializerKernelTest.php +++ b/core/modules/rest/tests/src/Kernel/Views/StyleSerializerKernelTest.php @@ -20,7 +20,7 @@ class StyleSerializerKernelTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['rest_test_views', 'serialization', 'rest']; + public static $modules = ['rest_test_views', 'serialization', 'rest']; /** * {@inheritdoc} diff --git a/core/modules/search/src/Tests/SearchTestBase.php b/core/modules/search/src/Tests/SearchTestBase.php index 98e40acbe63cead52b9b8527de9702ae2f47c3f9..5d5d0b4b72f50a64b516408f46a8b838aab3f99b 100644 --- a/core/modules/search/src/Tests/SearchTestBase.php +++ b/core/modules/search/src/Tests/SearchTestBase.php @@ -18,7 +18,7 @@ abstract class SearchTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'search', 'dblog']; + public static $modules = ['node', 'search', 'dblog']; protected function setUp() { parent::setUp(); diff --git a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonAnonTest.php b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonAnonTest.php index 75cafa2814af9e635405e4757ba62160c168f282..cd0079803ce7b09fedbc618e4256f3a3d405cda3 100644 --- a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonAnonTest.php +++ b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonAnonTest.php @@ -15,7 +15,7 @@ class SearchPageHalJsonAnonTest extends SearchPageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonBasicAuthTest.php b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonBasicAuthTest.php index feda6cf7f6238ce4dc53604c09bd75b4ebe6e685..d1ff293ba369ebf5f1f0a4be2abe9ed0383fa09a 100644 --- a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonBasicAuthTest.php +++ b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class SearchPageHalJsonBasicAuthTest extends SearchPageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonCookieTest.php b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonCookieTest.php index 1ee7c97773838a02cf72c890dbc009b217519d8a..a09fa5f9b12396d769ae458337d742b034dd89d8 100644 --- a/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonCookieTest.php +++ b/core/modules/search/tests/src/Functional/Hal/SearchPageHalJsonCookieTest.php @@ -15,7 +15,7 @@ class SearchPageHalJsonCookieTest extends SearchPageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/Rest/SearchPageJsonBasicAuthTest.php b/core/modules/search/tests/src/Functional/Rest/SearchPageJsonBasicAuthTest.php index 643309f89276cfd0163387552782ea63c5ea6e36..f311ce9b4d5033d5bcfb6fea9cdba5a8fe69f80d 100644 --- a/core/modules/search/tests/src/Functional/Rest/SearchPageJsonBasicAuthTest.php +++ b/core/modules/search/tests/src/Functional/Rest/SearchPageJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class SearchPageJsonBasicAuthTest extends SearchPageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/Rest/SearchPageResourceTestBase.php b/core/modules/search/tests/src/Functional/Rest/SearchPageResourceTestBase.php index d03bdab91e90479ef410e7f12e0d65e2858739b2..e711a347997bc3c933236ac8d0a10d3ed12f2cbb 100644 --- a/core/modules/search/tests/src/Functional/Rest/SearchPageResourceTestBase.php +++ b/core/modules/search/tests/src/Functional/Rest/SearchPageResourceTestBase.php @@ -10,7 +10,7 @@ abstract class SearchPageResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'search']; + public static $modules = ['node', 'search']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/Rest/SearchPageXmlBasicAuthTest.php b/core/modules/search/tests/src/Functional/Rest/SearchPageXmlBasicAuthTest.php index 874b8ac49705c7a6b4740ee0a29c9b5a3e29ebbb..7a2c3c8804c9d5f447023e1711bfd6470e5a061d 100644 --- a/core/modules/search/tests/src/Functional/Rest/SearchPageXmlBasicAuthTest.php +++ b/core/modules/search/tests/src/Functional/Rest/SearchPageXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class SearchPageXmlBasicAuthTest extends SearchPageResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Functional/SearchTestBase.php b/core/modules/search/tests/src/Functional/SearchTestBase.php index 8916d45092ddd1be2fe8d5ab369debbc53ebf753..fe6ac7132e5f82f8a46729ef512830865590da37 100644 --- a/core/modules/search/tests/src/Functional/SearchTestBase.php +++ b/core/modules/search/tests/src/Functional/SearchTestBase.php @@ -21,7 +21,7 @@ abstract class SearchTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'search', 'dblog']; + public static $modules = ['node', 'search', 'dblog']; protected function setUp() { parent::setUp(); diff --git a/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php b/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php index 9ca8a9792d16d4fb3451fef2380b6ca8e81a5bcb..a70114a6a92586061b3a731df648a07bbb6bcc94 100644 --- a/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php +++ b/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchPageTest.php @@ -16,7 +16,7 @@ class MigrateSearchPageTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['search']; + public static $modules = ['search']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchSettingsTest.php b/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchSettingsTest.php index 625a69a1c6af902fd8e3fcbd961b0dfcaa974d5b..d28bbd824e3ec659364f40f94a063c00cbaaccad 100644 --- a/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchSettingsTest.php +++ b/core/modules/search/tests/src/Kernel/Migrate/d6/MigrateSearchSettingsTest.php @@ -17,7 +17,7 @@ class MigrateSearchSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['search']; + public static $modules = ['search']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php b/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php index fda72cf4c4fb93a7a38398f4ec2a4c29c0116a6e..86d3b2200921d8efec9895d8470d40c6540196a1 100644 --- a/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php +++ b/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchPageTest.php @@ -18,7 +18,7 @@ class MigrateSearchPageTest extends MigrateDrupal7TestBase { * * {@inheritdoc} */ - protected static $modules = ['node', 'search']; + public static $modules = ['node', 'search']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchSettingsTest.php b/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchSettingsTest.php index 47f584a13236197b207dfd0712bb81ccbcfa4804..2306ce7370ce953a11fc986738e8336cdd06581d 100644 --- a/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchSettingsTest.php +++ b/core/modules/search/tests/src/Kernel/Migrate/d7/MigrateSearchSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateSearchSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['search']; + public static $modules = ['search']; /** * {@inheritdoc} diff --git a/core/modules/search/tests/src/Kernel/SearchExcerptTest.php b/core/modules/search/tests/src/Kernel/SearchExcerptTest.php index 035bf2dc31e37de0f929fd70402317d6bf3ebdb3..e10075d09ae15bc94ab34901725febed1dd09a80 100644 --- a/core/modules/search/tests/src/Kernel/SearchExcerptTest.php +++ b/core/modules/search/tests/src/Kernel/SearchExcerptTest.php @@ -16,7 +16,7 @@ class SearchExcerptTest extends KernelTestBase { * * @var array */ - protected static $modules = ['search', 'search_langcode_test']; + public static $modules = ['search', 'search_langcode_test']; /** * Tests search_excerpt() with several simulated search keywords. diff --git a/core/modules/search/tests/src/Kernel/SearchMatchTest.php b/core/modules/search/tests/src/Kernel/SearchMatchTest.php index 134a74e33be037d99e0671434e2491ba7d2bad14..e9d2ac8bca5bf61299fe0fff30d96d8ac62e884f 100644 --- a/core/modules/search/tests/src/Kernel/SearchMatchTest.php +++ b/core/modules/search/tests/src/Kernel/SearchMatchTest.php @@ -23,7 +23,7 @@ class SearchMatchTest extends KernelTestBase { * * @var array */ - protected static $modules = ['search']; + public static $modules = ['search']; /** * {@inheritdoc} diff --git a/core/modules/serialization/tests/src/Kernel/EntityResolverTest.php b/core/modules/serialization/tests/src/Kernel/EntityResolverTest.php index 4332d95c6391de1c388a0a509361165866ceb657..38af46e9949712efe273f1b514ab4a6be48e8a89 100644 --- a/core/modules/serialization/tests/src/Kernel/EntityResolverTest.php +++ b/core/modules/serialization/tests/src/Kernel/EntityResolverTest.php @@ -19,7 +19,7 @@ class EntityResolverTest extends NormalizerTestBase { * * @var array */ - protected static $modules = ['hal', 'rest']; + public static $modules = ['hal', 'rest']; /** * The format being tested. diff --git a/core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php b/core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php index bec8837677e591a1c53f460d9f91c76dd31aa744..ef5362a0edd80473ec2fb06775314dd727035375 100644 --- a/core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php +++ b/core/modules/serialization/tests/src/Kernel/EntitySerializationTest.php @@ -22,7 +22,7 @@ class EntitySerializationTest extends NormalizerTestBase { * * @var array */ - protected static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user', 'entity_serialization_test']; + public static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user', 'entity_serialization_test']; /** * The test values. diff --git a/core/modules/serialization/tests/src/Kernel/FieldItemSerializationTest.php b/core/modules/serialization/tests/src/Kernel/FieldItemSerializationTest.php index 91fd59fce3291ab8ae17b4de2e45747ff7508ddc..403f41ab2bc49ad766410d313f8cc43fe90ab59f 100644 --- a/core/modules/serialization/tests/src/Kernel/FieldItemSerializationTest.php +++ b/core/modules/serialization/tests/src/Kernel/FieldItemSerializationTest.php @@ -17,7 +17,7 @@ class FieldItemSerializationTest extends NormalizerTestBase { /** * {@inheritdoc} */ - protected static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user', 'field_normalization_test']; + public static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user', 'field_normalization_test']; /** * The class name of the test class. diff --git a/core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php b/core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php index 9db09bbef9f1d124c7aff3f107864b8a3e2e7b8d..25299b16f02389d5054d9d3a7b985cc0524e7b2c 100644 --- a/core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php +++ b/core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php @@ -16,7 +16,7 @@ abstract class NormalizerTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user']; + public static $modules = ['serialization', 'system', 'field', 'entity_test', 'text', 'filter', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/modules/serialization/tests/src/Kernel/SerializationTest.php b/core/modules/serialization/tests/src/Kernel/SerializationTest.php index b0b6a33f3257de347d91f300bb46556daf2c23ff..a7ad145e65756d532de9cd022b5c433def714689 100644 --- a/core/modules/serialization/tests/src/Kernel/SerializationTest.php +++ b/core/modules/serialization/tests/src/Kernel/SerializationTest.php @@ -17,7 +17,7 @@ class SerializationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['serialization', 'serialization_test']; + public static $modules = ['serialization', 'serialization_test']; /** * The serializer service to test. diff --git a/core/modules/settings_tray/tests/src/Functional/BcRoutesTest.php b/core/modules/settings_tray/tests/src/Functional/BcRoutesTest.php index 77dc9f99986b221981358195ef9c04470cacae85..6750b1c6c022e8331f5595459afb2b5526048899 100644 --- a/core/modules/settings_tray/tests/src/Functional/BcRoutesTest.php +++ b/core/modules/settings_tray/tests/src/Functional/BcRoutesTest.php @@ -16,7 +16,7 @@ class BcRoutesTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'settings_tray', ]; diff --git a/core/modules/settings_tray/tests/src/Functional/SettingsTrayTest.php b/core/modules/settings_tray/tests/src/Functional/SettingsTrayTest.php index e9fadc8b7bc743cabc294c77a72a844e5ff3b190..aec0392de1dec690ad2ba8b65473a535fdd5c344 100644 --- a/core/modules/settings_tray/tests/src/Functional/SettingsTrayTest.php +++ b/core/modules/settings_tray/tests/src/Functional/SettingsTrayTest.php @@ -15,7 +15,7 @@ class SettingsTrayTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'settings_tray', 'settings_tray_test', ]; diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php index 86ec1e200015d17e065f2a818dc09d47efdf0090..6b15be9425ebda1e6e5373c39ecc2d4307a73b27 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/ConfigAccessTest.php @@ -15,7 +15,7 @@ class ConfigAccessTest extends SettingsTrayTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_link_content', 'menu_ui', ]; diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/OverriddenConfigurationTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/OverriddenConfigurationTest.php index 41a40b4549b47578358bb94d598b7c2e906054a0..97cd4db18f43e56973ad98c596b5ada84fbd1160 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/OverriddenConfigurationTest.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/OverriddenConfigurationTest.php @@ -16,7 +16,7 @@ class OverriddenConfigurationTest extends SettingsTrayTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'settings_tray_override_test', 'menu_ui', 'menu_link_content', diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php index 15f3a7705c895b7449b4b37d5c5fb58c01f1658b..6f623cb1bcf10dd5d7f96140931c22cb7f5cb2ea 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/QuickEditIntegrationTest.php @@ -16,7 +16,7 @@ class QuickEditIntegrationTest extends SettingsTrayTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'block_content', 'quickedit', diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php index 0704459608b08c1c8e02601c8dfc3eeed91040f4..0e6b9d6251e0372d5d481b2cad03c97c39018bf4 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php @@ -16,7 +16,7 @@ class SettingsTrayBlockFormTest extends SettingsTrayTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'search', 'settings_tray_test', diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php index 63692e954bb20165dff825290b41d6669d990ad3..2017accd88aa786262ad63ec79041a2a562fa54a 100644 --- a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php +++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayTestBase.php @@ -16,7 +16,7 @@ class SettingsTrayTestBase extends OffCanvasTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'settings_tray', // Add test module to override CSS pointer-events properties because they // cause test failures. diff --git a/core/modules/shortcut/src/Tests/ShortcutTestBase.php b/core/modules/shortcut/src/Tests/ShortcutTestBase.php index ddf192e1972e43456fb4d2ae563c743bdaf09647..584a6154c309210df43ace42bbe65524fa52aa5a 100644 --- a/core/modules/shortcut/src/Tests/ShortcutTestBase.php +++ b/core/modules/shortcut/src/Tests/ShortcutTestBase.php @@ -24,7 +24,7 @@ abstract class ShortcutTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'toolbar', 'shortcut']; + public static $modules = ['node', 'toolbar', 'shortcut']; /** * User with permission to administer shortcuts. diff --git a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonAnonTest.php b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonAnonTest.php index 66b0f0e4788edc70796385594f038af39f5d81b3..ba6c8a798d6a59ebbe9a4b0a02e666340f10c6de 100644 --- a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonAnonTest.php +++ b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonAnonTest.php @@ -18,7 +18,7 @@ class ShortcutHalJsonAnonTest extends ShortcutResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonBasicAuthTest.php index abf34338a8bf42e37216089d3d78f0502b75e54b..784c3ebc44eb19dc6adcaf03f45db3f38b4b9433 100644 --- a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ShortcutHalJsonBasicAuthTest extends ShortcutHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonAnonTest.php b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonAnonTest.php index 771707cd3041e0b69eb508d3c32d5b9dc4f2ae8d..b3faae7fbaeb819223d671dbcb5fd0dd0da50c8d 100644 --- a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonAnonTest.php +++ b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ShortcutSetHalJsonAnonTest extends ShortcutSetResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonBasicAuthTest.php index ae125dc703cc2f1af01a9ef25486da7169fddebb..d3a70574117ab370266fbe54c81a5319ed51dc8d 100644 --- a/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Hal/ShortcutSetHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ShortcutSetHalJsonBasicAuthTest extends ShortcutSetHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutJsonBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutJsonBasicAuthTest.php index b9a2c342c65c77377b8a1c82cd17f0084da356e1..e0859e3aa3fe60d4abaa193d65a2756a449ce435 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutJsonBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ShortcutJsonBasicAuthTest extends ShortcutResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutResourceTestBase.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutResourceTestBase.php index fa1e4fa491e20ec6d366593a74a7c1aafabef059..1f588a250098b8ea028c598dce5630f2234fba8e 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutResourceTestBase.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutResourceTestBase.php @@ -14,7 +14,7 @@ abstract class ShortcutResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['comment', 'shortcut']; + public static $modules = ['comment', 'shortcut']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetJsonBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetJsonBasicAuthTest.php index 15da60e16416e25b4ee1a485b7d3a46120b69eed..6ddaf54b0d9f1e365fd215174054001f529138e2 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetJsonBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ShortcutSetJsonBasicAuthTest extends ShortcutSetResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetResourceTestBase.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetResourceTestBase.php index 8a1def5ca62125b1c36f5d5bfe9180853dd05a75..b25f028d1cd37757d7cdffc9bcb35f5977a45bb1 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetResourceTestBase.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetResourceTestBase.php @@ -13,7 +13,7 @@ abstract class ShortcutSetResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut']; + public static $modules = ['shortcut']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetXmlBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetXmlBasicAuthTest.php index 0ffe67c115c025fe6d14095843f77eedf6f5a1ef..50c6e71c23f830a0b1fac9118395b1f104605517 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetXmlBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutSetXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ShortcutSetXmlBasicAuthTest extends ShortcutSetResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutXmlBasicAuthTest.php b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutXmlBasicAuthTest.php index 24b1333364e0d550caff60c0e89ce474c97691cd..9645aedaeaea4a279441387043657e4c50b4ed39 100644 --- a/core/modules/shortcut/tests/src/Functional/Rest/ShortcutXmlBasicAuthTest.php +++ b/core/modules/shortcut/tests/src/Functional/Rest/ShortcutXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ShortcutXmlBasicAuthTest extends ShortcutResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php b/core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php index e89ec20938d8691eaedfbd43044823ad5bb15a0a..a2282b1ddfc8ca414ad0dcd331708a3769246df4 100644 --- a/core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php +++ b/core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php @@ -18,7 +18,7 @@ class ShortcutCacheTagsTest extends EntityCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut']; + public static $modules = ['shortcut']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php b/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php index fe2c76714d039e1204c4b7ca4a649002b87b2a25..238ee4fa9bbfaa7c967f1a425be185335a6b659b 100644 --- a/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php +++ b/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php @@ -24,7 +24,7 @@ class ShortcutLinksTest extends ShortcutTestBase { * * @var array */ - protected static $modules = ['router_test', 'views', 'block']; + public static $modules = ['router_test', 'views', 'block']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php b/core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php index 76da164dce2415dc9709a66b9c551952d7ffb3eb..b897df752db892d8d3d269b5ecea24594388b23a 100644 --- a/core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php +++ b/core/modules/shortcut/tests/src/Functional/ShortcutSetsTest.php @@ -16,7 +16,7 @@ class ShortcutSetsTest extends ShortcutTestBase { * * @var string[] */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutTestBase.php b/core/modules/shortcut/tests/src/Functional/ShortcutTestBase.php index 94d78fa052236f07640592422e0b06f8d8ae332a..3f9cc87be3840659957157088f43828cd53ee364 100644 --- a/core/modules/shortcut/tests/src/Functional/ShortcutTestBase.php +++ b/core/modules/shortcut/tests/src/Functional/ShortcutTestBase.php @@ -17,7 +17,7 @@ abstract class ShortcutTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'toolbar', 'shortcut']; + public static $modules = ['node', 'toolbar', 'shortcut']; /** * User with permission to administer shortcuts. diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutTranslationUITest.php b/core/modules/shortcut/tests/src/Functional/ShortcutTranslationUITest.php index 77d346636696e9895ef0ce7399693b3e8f34f50d..5861d99838e97ff5c50050efbd185ed76aa8f498 100644 --- a/core/modules/shortcut/tests/src/Functional/ShortcutTranslationUITest.php +++ b/core/modules/shortcut/tests/src/Functional/ShortcutTranslationUITest.php @@ -23,7 +23,7 @@ class ShortcutTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', 'content_translation', 'link', diff --git a/core/modules/shortcut/tests/src/Kernel/Migrate/MigrateShortcutStubTest.php b/core/modules/shortcut/tests/src/Kernel/Migrate/MigrateShortcutStubTest.php index e52b327cd159bddbb3bc45fa4a372083b79028fe..f5b01d98af57bd55ba9f4d2d70b1ffe0eaface6b 100644 --- a/core/modules/shortcut/tests/src/Kernel/Migrate/MigrateShortcutStubTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Migrate/MigrateShortcutStubTest.php @@ -17,7 +17,7 @@ class MigrateShortcutStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut', 'link']; + public static $modules = ['shortcut', 'link']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php index d68c9d8c86a8e1d864ccadddcdc0835991aba640..b6543723db682e9c70776756985c2eabeefed5c4 100644 --- a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetTest.php @@ -18,7 +18,7 @@ class MigrateShortcutSetTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'link', 'field', 'shortcut', diff --git a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetUsersTest.php b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetUsersTest.php index b14788143a05c35044f825cf0db7a8776a39a410..ae939569cfe6086e0d648e914a9da4b132134480 100644 --- a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetUsersTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutSetUsersTest.php @@ -17,7 +17,7 @@ class MigrateShortcutSetUsersTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'link', 'field', 'shortcut', diff --git a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutTest.php b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutTest.php index f81cc2466012cd73329a8743c622952f13bd127a..e685151a5bc358834ca031bfcbc699c5a9f81bc3 100644 --- a/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Migrate/d7/MigrateShortcutTest.php @@ -18,7 +18,7 @@ class MigrateShortcutTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'link', 'field', 'shortcut', diff --git a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php index 302f80dbe6589b85e3059afbe474de3d73ee24b6..e1982de648deef5c1d139983ab2fa38c177ce398 100644 --- a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetTest.php @@ -16,7 +16,7 @@ class ShortcutSetTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut', 'migrate_drupal']; + public static $modules = ['shortcut', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetUsersTest.php b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetUsersTest.php index 5dc83f79ef9bb9323b645ac39796710c0aa0baca..035aec31c909e05d9c83328f27589444aa8372da 100644 --- a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetUsersTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutSetUsersTest.php @@ -16,7 +16,7 @@ class ShortcutSetUsersTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut', 'migrate_drupal']; + public static $modules = ['shortcut', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutTest.php b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutTest.php index afd1e1d9651e14d4ace6f2ef04c9cc5f121a3b2e..4435e81b2fe0f5b3dbcb071f1ccbf007267f6583 100644 --- a/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutTest.php +++ b/core/modules/shortcut/tests/src/Kernel/Plugin/migrate/source/d7/ShortcutTest.php @@ -16,7 +16,7 @@ class ShortcutTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['shortcut', 'migrate_drupal']; + public static $modules = ['shortcut', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php b/core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php index 2e43bf700c2abd707d1301e560a713ff0d3e6ffa..0d58c31659cf91a867bb364355955ce73842df73 100644 --- a/core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php +++ b/core/modules/shortcut/tests/src/Kernel/ShortcutSevenIntegrationTest.php @@ -11,7 +11,7 @@ */ class ShortcutSevenIntegrationTest extends KernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests shortcut_install() and shortcut_uninstall(). diff --git a/core/modules/simpletest/src/KernelTestBase.php b/core/modules/simpletest/src/KernelTestBase.php index e84bb101a99b947c09969d9658ae04064edd5ee5..acf6b3e899884c6bccbf7282828b2ae9be92a491 100644 --- a/core/modules/simpletest/src/KernelTestBase.php +++ b/core/modules/simpletest/src/KernelTestBase.php @@ -87,7 +87,7 @@ abstract class KernelTestBase extends TestBase { * * @var array */ - protected static $modules = []; + public static $modules = []; private $moduleFiles; private $themeFiles; diff --git a/core/modules/simpletest/src/Tests/BrokenSetUpTest.php b/core/modules/simpletest/src/Tests/BrokenSetUpTest.php index 6fb4c312f61f39d87c3947d98091f21e8c228784..febb9cfda75c82dc57af55a02f964ebae8e2b792 100644 --- a/core/modules/simpletest/src/Tests/BrokenSetUpTest.php +++ b/core/modules/simpletest/src/Tests/BrokenSetUpTest.php @@ -22,7 +22,7 @@ class BrokenSetUpTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * The path to the shared trigger file. diff --git a/core/modules/simpletest/src/Tests/BrowserTest.php b/core/modules/simpletest/src/Tests/BrowserTest.php index bbed3de9869ffb4ef54d0cd0e619a1c9ff3ca422..fdfaff851d8fb036b1416897aa0d5ef5fe515e3b 100644 --- a/core/modules/simpletest/src/Tests/BrowserTest.php +++ b/core/modules/simpletest/src/Tests/BrowserTest.php @@ -23,7 +23,7 @@ class BrowserTest extends WebTestBase { * * @var string[] */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php b/core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php index 43b6b9ccc6c54f782e8f5af28635de8084877573..7a7a0367afdd3c36312684ff5fae6031fe62119c 100644 --- a/core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php +++ b/core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php @@ -16,7 +16,7 @@ class InstallationProfileModuleTestsTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * An administrative user with permission to adminsiter unit tests. diff --git a/core/modules/simpletest/src/Tests/KernelTestBaseTest.php b/core/modules/simpletest/src/Tests/KernelTestBaseTest.php index 29077d40e40f531203de83af23024e121f3cd200..fc0d918b8af58ea6bbdf0b8cdbbec89f2e2502ba 100644 --- a/core/modules/simpletest/src/Tests/KernelTestBaseTest.php +++ b/core/modules/simpletest/src/Tests/KernelTestBaseTest.php @@ -20,7 +20,7 @@ class KernelTestBaseTest extends KernelTestBase { * * @var array */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php b/core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php index ae0e664b2805c6da2aa607a144a569b137e54ee5..d6fe19964a09f0eda764906154f7c462fcde1332 100644 --- a/core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php +++ b/core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php @@ -16,7 +16,7 @@ class MissingCheckedRequirementsTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; protected function setUp() { parent::setUp(); diff --git a/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php b/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php index ee3a19cf7b9d22f181df995ad8fe906b390409d1..957391db76c480155eab42d320cc8feddefe5751 100644 --- a/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php +++ b/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php @@ -18,7 +18,7 @@ class SimpleTestBrowserTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest', 'test_page_test']; + public static $modules = ['simpletest', 'test_page_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/simpletest/src/Tests/SimpleTestErrorCollectorTest.php b/core/modules/simpletest/src/Tests/SimpleTestErrorCollectorTest.php index 5bfc74f1ee6cc611781483c80cf919a11932f19b..b401fc999425319335aedf8c2bdd91791dfef97d 100644 --- a/core/modules/simpletest/src/Tests/SimpleTestErrorCollectorTest.php +++ b/core/modules/simpletest/src/Tests/SimpleTestErrorCollectorTest.php @@ -16,7 +16,7 @@ class SimpleTestErrorCollectorTest extends WebTestBase { * * @var array */ - protected static $modules = ['system_test', 'error_test']; + public static $modules = ['system_test', 'error_test']; /** * Errors triggered during the test. diff --git a/core/modules/simpletest/src/Tests/SimpleTestInstallBatchTest.php b/core/modules/simpletest/src/Tests/SimpleTestInstallBatchTest.php index 29da05d28aebc9f13d55c3c5cc6ea01bde1ce026..5663ad9cdc780d096688da3978aa23bdea267fe0 100644 --- a/core/modules/simpletest/src/Tests/SimpleTestInstallBatchTest.php +++ b/core/modules/simpletest/src/Tests/SimpleTestInstallBatchTest.php @@ -20,7 +20,7 @@ class SimpleTestInstallBatchTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest', 'simpletest_test', 'entity_test']; + public static $modules = ['simpletest', 'simpletest_test', 'entity_test']; /** * Tests loading entities created in a batch in simpletest_test_install(). diff --git a/core/modules/simpletest/src/Tests/SimpleTestTest.php b/core/modules/simpletest/src/Tests/SimpleTestTest.php index 1364d3cdf36527b36ffeedca15ca3803ba766024..42759c255ae2d7daaf04b00ce6d4ebf098ac8f77 100644 --- a/core/modules/simpletest/src/Tests/SimpleTestTest.php +++ b/core/modules/simpletest/src/Tests/SimpleTestTest.php @@ -20,7 +20,7 @@ class SimpleTestTest extends WebTestBase { * * @var array */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * The results array that has been parsed by getTestResults(). diff --git a/core/modules/simpletest/src/Tests/UiPhpUnitOutputTest.php b/core/modules/simpletest/src/Tests/UiPhpUnitOutputTest.php index 0b5f1707bcfc40b41ca56a1eff5c9febd75a768a..e032cef9418b45c3eda8a6f1fe4b919da625afdc 100644 --- a/core/modules/simpletest/src/Tests/UiPhpUnitOutputTest.php +++ b/core/modules/simpletest/src/Tests/UiPhpUnitOutputTest.php @@ -19,7 +19,7 @@ class UiPhpUnitOutputTest extends WebTestBase { * * @var string[] */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * Tests that PHPUnit output in the Simpletest UI looks good. diff --git a/core/modules/simpletest/tests/src/Functional/FolderTest.php b/core/modules/simpletest/tests/src/Functional/FolderTest.php index d2c93c54f0eb12d59cca3c0fc0707d9876d06472..e57813fa71c3956efa44fc626d8640c4d48d6f54 100644 --- a/core/modules/simpletest/tests/src/Functional/FolderTest.php +++ b/core/modules/simpletest/tests/src/Functional/FolderTest.php @@ -17,7 +17,7 @@ class FolderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['image']; + public static $modules = ['image']; public function testFolderSetup() { $directory = file_default_scheme() . '://styles'; diff --git a/core/modules/simpletest/tests/src/Functional/OtherInstallationProfileTestsTest.php b/core/modules/simpletest/tests/src/Functional/OtherInstallationProfileTestsTest.php index 3088dc8f2494f7246080c1736229a080dca07b1d..972495f575962b1ac41c22aeb600c7503d82b5d7 100644 --- a/core/modules/simpletest/tests/src/Functional/OtherInstallationProfileTestsTest.php +++ b/core/modules/simpletest/tests/src/Functional/OtherInstallationProfileTestsTest.php @@ -17,7 +17,7 @@ class OtherInstallationProfileTestsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * Use the Minimal profile. diff --git a/core/modules/simpletest/tests/src/Kernel/Cache/Context/TestDiscoveryCacheContextTest.php b/core/modules/simpletest/tests/src/Kernel/Cache/Context/TestDiscoveryCacheContextTest.php index 01aac836dbb7b0a1933f9c1ed46fa2498a4d4f9c..25b2af92e4398aba6c4f7ba6fa96994ccb990409 100644 --- a/core/modules/simpletest/tests/src/Kernel/Cache/Context/TestDiscoveryCacheContextTest.php +++ b/core/modules/simpletest/tests/src/Kernel/Cache/Context/TestDiscoveryCacheContextTest.php @@ -14,7 +14,7 @@ class TestDiscoveryCacheContextTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * Tests that test context hashes are unique. diff --git a/core/modules/simpletest/tests/src/Kernel/Migrate/d6/MigrateSimpletestConfigsTest.php b/core/modules/simpletest/tests/src/Kernel/Migrate/d6/MigrateSimpletestConfigsTest.php index fe70c16b4e61e9a044632146a321dc665f6d730f..f8f9ffb02ceb041f3c5f949b362d357a9899d8c1 100644 --- a/core/modules/simpletest/tests/src/Kernel/Migrate/d6/MigrateSimpletestConfigsTest.php +++ b/core/modules/simpletest/tests/src/Kernel/Migrate/d6/MigrateSimpletestConfigsTest.php @@ -17,7 +17,7 @@ class MigrateSimpletestConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * {@inheritdoc} diff --git a/core/modules/simpletest/tests/src/Kernel/Migrate/d7/MigrateSimpletestSettingsTest.php b/core/modules/simpletest/tests/src/Kernel/Migrate/d7/MigrateSimpletestSettingsTest.php index cc8bd1d2effa79947f8efc73c07c402a89faeffa..6eba6339c840e03f9c3e6d068bf5c006a5557ac6 100644 --- a/core/modules/simpletest/tests/src/Kernel/Migrate/d7/MigrateSimpletestSettingsTest.php +++ b/core/modules/simpletest/tests/src/Kernel/Migrate/d7/MigrateSimpletestSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateSimpletestSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * {@inheritdoc} diff --git a/core/modules/simpletest/tests/src/Kernel/SimpletestDeprecationTest.php b/core/modules/simpletest/tests/src/Kernel/SimpletestDeprecationTest.php index 2a5f0a4a77e7c64b764290c7410a11b45c0995f3..384f8c1b9b36a79d04a379dc05a5303a4edc0255 100644 --- a/core/modules/simpletest/tests/src/Kernel/SimpletestDeprecationTest.php +++ b/core/modules/simpletest/tests/src/Kernel/SimpletestDeprecationTest.php @@ -12,7 +12,7 @@ */ class SimpletestDeprecationTest extends KernelTestBase { - protected static $modules = ['simpletest']; + public static $modules = ['simpletest']; /** * @expectedDeprecation The simpletest_phpunit_configuration_filepath function is deprecated since version 8.4.x and will be removed in 9.0.0. diff --git a/core/modules/simpletest/tests/src/Kernel/TestDiscoveryDeprecationTest.php b/core/modules/simpletest/tests/src/Kernel/TestDiscoveryDeprecationTest.php index c8edb7732f91ee997b3d7559a3c32fd5ce87bb60..6d4f44888a046f8d6dc182d015512c45d2791eff 100644 --- a/core/modules/simpletest/tests/src/Kernel/TestDiscoveryDeprecationTest.php +++ b/core/modules/simpletest/tests/src/Kernel/TestDiscoveryDeprecationTest.php @@ -15,7 +15,7 @@ class TestDiscoveryDeprecationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['simpletest', 'simpletest_deprecation_test']; + public static $modules = ['simpletest', 'simpletest_deprecation_test']; /** * @expectedDeprecation The deprecated alter hook hook_simpletest_alter() is implemented in these functions: simpletest_deprecation_test_simpletest_alter. Convert your test to a PHPUnit-based one and implement test listeners. See: https://www.drupal.org/node/2939892 diff --git a/core/modules/statistics/src/Tests/StatisticsTestBase.php b/core/modules/statistics/src/Tests/StatisticsTestBase.php index 6da2f2cc013ba7d94406ccfc99908c71b1104019..4f530cf9cd48d4edbd7c7f80dc56670b710a1c50 100644 --- a/core/modules/statistics/src/Tests/StatisticsTestBase.php +++ b/core/modules/statistics/src/Tests/StatisticsTestBase.php @@ -17,7 +17,7 @@ abstract class StatisticsTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'block', 'ban', 'statistics']; + public static $modules = ['node', 'block', 'ban', 'statistics']; /** * User with permissions to ban IP's. diff --git a/core/modules/statistics/src/Tests/Views/IntegrationTest.php b/core/modules/statistics/src/Tests/Views/IntegrationTest.php index 0d4088f0aeb455886e9b9669cf40ca426786791d..740ecf5e53f3abf80040c0ec9da21942bff687bf 100644 --- a/core/modules/statistics/src/Tests/Views/IntegrationTest.php +++ b/core/modules/statistics/src/Tests/Views/IntegrationTest.php @@ -19,7 +19,7 @@ class IntegrationTest extends ViewTestBase { * * @var array */ - protected static $modules = ['statistics', 'statistics_test_views', 'node']; + public static $modules = ['statistics', 'statistics_test_views', 'node']; /** * Stores the user object that accesses the page. diff --git a/core/modules/statistics/tests/src/Functional/StatisticsAdminTest.php b/core/modules/statistics/tests/src/Functional/StatisticsAdminTest.php index f43f2789a0c731afb5aef265609456bd57a8050d..1c714dc689ac7747636caa4762d2567194b87bae 100644 --- a/core/modules/statistics/tests/src/Functional/StatisticsAdminTest.php +++ b/core/modules/statistics/tests/src/Functional/StatisticsAdminTest.php @@ -19,7 +19,7 @@ class StatisticsAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'statistics']; + public static $modules = ['node', 'statistics']; /** * A user that has permission to administer statistics. diff --git a/core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php b/core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php index ef734963dbf7de85b8a239b20df8b5e77e4f91f1..90a62093b61da89182d6a2fc729279d3c6144f14 100644 --- a/core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php +++ b/core/modules/statistics/tests/src/Functional/StatisticsAttachedTest.php @@ -17,7 +17,7 @@ class StatisticsAttachedTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'statistics']; + public static $modules = ['node', 'statistics']; /** * {@inheritdoc} diff --git a/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php b/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php index e73fd891958b0f98a6b6ab10a024c70f4ecd9f1e..ea87a7cd4466057419fce96a7fac6708a81384df 100644 --- a/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php +++ b/core/modules/statistics/tests/src/Functional/StatisticsLoggingTest.php @@ -20,7 +20,7 @@ class StatisticsLoggingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'statistics', 'block', 'locale']; + public static $modules = ['node', 'statistics', 'block', 'locale']; /** * User with permissions to create and edit pages. diff --git a/core/modules/statistics/tests/src/Functional/StatisticsTestBase.php b/core/modules/statistics/tests/src/Functional/StatisticsTestBase.php index d55db184598b7119f74d300cb206d52caaccd2f6..3be95e2ab6eec54d19601d2bc39fa7a42bfbcea9 100644 --- a/core/modules/statistics/tests/src/Functional/StatisticsTestBase.php +++ b/core/modules/statistics/tests/src/Functional/StatisticsTestBase.php @@ -14,7 +14,7 @@ abstract class StatisticsTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'block', 'ban', 'statistics']; + public static $modules = ['node', 'block', 'ban', 'statistics']; /** * User with permissions to ban IP's. diff --git a/core/modules/statistics/tests/src/FunctionalJavascript/StatisticsLoggingTest.php b/core/modules/statistics/tests/src/FunctionalJavascript/StatisticsLoggingTest.php index 95d87bfd2a931e522e276d2a0edc3a5c5cd05326..acd103e9f69d47b72cd29427fba85b4310603773 100644 --- a/core/modules/statistics/tests/src/FunctionalJavascript/StatisticsLoggingTest.php +++ b/core/modules/statistics/tests/src/FunctionalJavascript/StatisticsLoggingTest.php @@ -17,7 +17,7 @@ class StatisticsLoggingTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'statistics', 'language']; + public static $modules = ['node', 'statistics', 'language']; /** * Node for tests. diff --git a/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateNodeCounterTest.php b/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateNodeCounterTest.php index f87c7b7439d022506ad7623a36825f59cc2b034c..29a35fb339044d5ce7f6b49e0b9e74eb28e0b7f2 100644 --- a/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateNodeCounterTest.php +++ b/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateNodeCounterTest.php @@ -14,7 +14,7 @@ class MigrateNodeCounterTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateStatisticsConfigsTest.php b/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateStatisticsConfigsTest.php index 18cb50a112c5dcb22bdbcbf4b7e009b34f7180f5..a9c18a733ba430d0a38cdd938519c27b97bf1072 100644 --- a/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateStatisticsConfigsTest.php +++ b/core/modules/statistics/tests/src/Kernel/Migrate/d6/MigrateStatisticsConfigsTest.php @@ -17,7 +17,7 @@ class MigrateStatisticsConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['statistics']; + public static $modules = ['statistics']; /** * {@inheritdoc} diff --git a/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php b/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php index 7a0d3266faa9f0b007e4fa4109593e302366256a..1401e60fd492af65dac290f7a50886e9da57ff4c 100644 --- a/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php +++ b/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateNodeCounterTest.php @@ -14,7 +14,7 @@ class MigrateNodeCounterTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'content_translation', 'language', 'menu_ui', diff --git a/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateStatisticsConfigsTest.php b/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateStatisticsConfigsTest.php index e069b3cfd7bc7f382c58aff82a44df1b67e74149..36e270d8f667b1d4a48becc762cbadb36cb783b2 100644 --- a/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateStatisticsConfigsTest.php +++ b/core/modules/statistics/tests/src/Kernel/Migrate/d7/MigrateStatisticsConfigsTest.php @@ -17,7 +17,7 @@ class MigrateStatisticsConfigsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['statistics']; + public static $modules = ['statistics']; /** * {@inheritdoc} diff --git a/core/modules/statistics/tests/src/Kernel/Plugin/migrate/source/NodeCounterTest.php b/core/modules/statistics/tests/src/Kernel/Plugin/migrate/source/NodeCounterTest.php index f2a64c44161eb45d56f071530d6af4074639ddcd..0cbc76afec3327e694cc2ed02dd32470f8eb3f26 100644 --- a/core/modules/statistics/tests/src/Kernel/Plugin/migrate/source/NodeCounterTest.php +++ b/core/modules/statistics/tests/src/Kernel/Plugin/migrate/source/NodeCounterTest.php @@ -16,7 +16,7 @@ class NodeCounterTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal', 'statistics']; + public static $modules = ['migrate_drupal', 'statistics']; /** * {@inheritdoc} diff --git a/core/modules/syslog/tests/src/Functional/SyslogTest.php b/core/modules/syslog/tests/src/Functional/SyslogTest.php index ba0cf61eb47718c30b326b593cf1d8caccaddfba..11b577f2f2429d51e205f84158296161da17d59f 100644 --- a/core/modules/syslog/tests/src/Functional/SyslogTest.php +++ b/core/modules/syslog/tests/src/Functional/SyslogTest.php @@ -16,7 +16,7 @@ class SyslogTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['syslog']; + public static $modules = ['syslog']; /** * Tests the syslog settings page. diff --git a/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php b/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php index 05526264f3e6980e8af3580caef449b4bea54e7f..935af8d8aa05920d92777f4c0c216c5ae50cde85 100644 --- a/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php +++ b/core/modules/syslog/tests/src/Kernel/Migrate/d6/MigrateSyslogConfigsTest.php @@ -17,7 +17,7 @@ class MigrateSyslogConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['syslog']; + public static $modules = ['syslog']; /** * {@inheritdoc} diff --git a/core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php b/core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php index 4e50cdcd7939a28a2b5dc08c16cbeeb065300be8..ef5d8c305dd205cd1317f4212128e9206119feea 100644 --- a/core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php +++ b/core/modules/syslog/tests/src/Kernel/Migrate/d7/MigrateSyslogConfigsTest.php @@ -19,7 +19,7 @@ class MigrateSyslogConfigsTest extends MigrateDrupal7TestBase { * * @var array */ - protected static $modules = ['syslog']; + public static $modules = ['syslog']; /** * {@inheritdoc} diff --git a/core/modules/syslog/tests/src/Kernel/SyslogTest.php b/core/modules/syslog/tests/src/Kernel/SyslogTest.php index 88a059de21a8ecf4dc63b15a0336fe03e178029e..3b2a587a40d8c4c2e51749f43548e7df42583eef 100644 --- a/core/modules/syslog/tests/src/Kernel/SyslogTest.php +++ b/core/modules/syslog/tests/src/Kernel/SyslogTest.php @@ -13,7 +13,7 @@ */ class SyslogTest extends KernelTestBase { - protected static $modules = ['syslog', 'syslog_test']; + public static $modules = ['syslog', 'syslog_test']; /** * {@inheritdoc} diff --git a/core/modules/system/src/Tests/Ajax/AjaxTestBase.php b/core/modules/system/src/Tests/Ajax/AjaxTestBase.php index 067569242ef97c19ecda7459ac4800614ce55419..66e06c88a467147c0d616b876e186f6d2db1bd42 100644 --- a/core/modules/system/src/Tests/Ajax/AjaxTestBase.php +++ b/core/modules/system/src/Tests/Ajax/AjaxTestBase.php @@ -14,7 +14,7 @@ abstract class AjaxTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'ajax_test', 'ajax_forms_test']; + public static $modules = ['node', 'ajax_test', 'ajax_forms_test']; /** * Asserts the array of Ajax commands contains the searched command. diff --git a/core/modules/system/src/Tests/Ajax/DialogTest.php b/core/modules/system/src/Tests/Ajax/DialogTest.php index 2e35e57606a546365d3cf35160f36131ec82a4a5..76ab6fb160f5bc9b1c97cdf5b82fff61a14896fe 100644 --- a/core/modules/system/src/Tests/Ajax/DialogTest.php +++ b/core/modules/system/src/Tests/Ajax/DialogTest.php @@ -19,7 +19,7 @@ class DialogTest extends AjaxTestBase { * * @var array */ - protected static $modules = ['ajax_test', 'ajax_forms_test', 'contact']; + public static $modules = ['ajax_test', 'ajax_forms_test', 'contact']; /** * Test sending non-JS and AJAX requests to open and manipulate modals. diff --git a/core/modules/system/src/Tests/Ajax/MultiFormTest.php b/core/modules/system/src/Tests/Ajax/MultiFormTest.php index be15c9e97437317be0429634cae876969949f209..96844ed051a1bdd4c4cdd1b06c278173f127983d 100644 --- a/core/modules/system/src/Tests/Ajax/MultiFormTest.php +++ b/core/modules/system/src/Tests/Ajax/MultiFormTest.php @@ -19,7 +19,7 @@ class MultiFormTest extends AjaxTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Condition/ConditionFormTest.php b/core/modules/system/src/Tests/Condition/ConditionFormTest.php index c853798c1e69cdae3da7b89a326951d0313237c2..42945b250a805f6a4f05f490dfe93c91c1cf4df1 100644 --- a/core/modules/system/src/Tests/Condition/ConditionFormTest.php +++ b/core/modules/system/src/Tests/Condition/ConditionFormTest.php @@ -16,7 +16,7 @@ */ class ConditionFormTest extends WebTestBase { - protected static $modules = ['node', 'condition_test']; + public static $modules = ['node', 'condition_test']; /** * Submit the condition_node_type_test_form to test condition forms. diff --git a/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php b/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php index 84f022665ebee64b02af6df5544e759493943cbd..8a250baf358884f2c7dd50531aaf7dcdff1f0a2f 100644 --- a/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php +++ b/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php @@ -20,7 +20,7 @@ abstract class DatabaseWebTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['database_test']; + public static $modules = ['database_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php index 49388dd5bc2c7cd414f924febe2c5f540e8e190b..517e1c670ece810e53f4b5f27af427d0bdbc0be1 100644 --- a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php @@ -31,7 +31,7 @@ abstract class EntityCacheTagsTestBase extends PageCacheTagsTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field_test']; + public static $modules = ['entity_test', 'field_test']; /** * The main entity used for testing. diff --git a/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php b/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php index 9546d40c949d180b531d7b837541535633d0c88f..9997ca5650be5581c7475fdcce05bd3053328fb2 100644 --- a/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php @@ -22,7 +22,7 @@ abstract class EntityUnitTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system', 'field', 'text', 'filter', 'entity_test']; + public static $modules = ['user', 'system', 'field', 'text', 'filter', 'entity_test']; /** * The entity manager service. diff --git a/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php b/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php index 729a5202a1bd52213b5b8229bd23a2315396844a..030526eef9fa42c2ecff07c9416fe28c9b7e641f 100644 --- a/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php +++ b/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php @@ -18,7 +18,7 @@ class ElementsTableSelectTest extends WebTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Test the display of checkboxes when #multiple is TRUE. diff --git a/core/modules/system/src/Tests/Form/RebuildTest.php b/core/modules/system/src/Tests/Form/RebuildTest.php index bd48f04d4c67f80e1afa191f5871749b128dbe17..2e138bdfb322ce200baf9a1a431321569fc04eeb 100644 --- a/core/modules/system/src/Tests/Form/RebuildTest.php +++ b/core/modules/system/src/Tests/Form/RebuildTest.php @@ -21,7 +21,7 @@ class RebuildTest extends WebTestBase { * * @var array */ - protected static $modules = ['node', 'form_test']; + public static $modules = ['node', 'form_test']; /** * A user for testing. diff --git a/core/modules/system/src/Tests/Form/StorageTest.php b/core/modules/system/src/Tests/Form/StorageTest.php index 8f32596216e86520951be7a6927be41441ead9f4..a1f7fee3df5891bf0e5b376b1dafdf89fcdf5186 100644 --- a/core/modules/system/src/Tests/Form/StorageTest.php +++ b/core/modules/system/src/Tests/Form/StorageTest.php @@ -23,7 +23,7 @@ class StorageTest extends WebTestBase { * * @var array */ - protected static $modules = ['form_test', 'dblog']; + public static $modules = ['form_test', 'dblog']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Form/TriggeringElementTest.php b/core/modules/system/src/Tests/Form/TriggeringElementTest.php index 54a403987a887f6785d80bbe6125c077f0708aa6..fb59cb5e8ac6addb837a8fe64ff384881f496544 100644 --- a/core/modules/system/src/Tests/Form/TriggeringElementTest.php +++ b/core/modules/system/src/Tests/Form/TriggeringElementTest.php @@ -16,7 +16,7 @@ class TriggeringElementTest extends WebTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Test the determination of the triggering element when no button diff --git a/core/modules/system/src/Tests/Image/ToolkitTestBase.php b/core/modules/system/src/Tests/Image/ToolkitTestBase.php index 7a3d09cd056d8c3aadd2cfd101d5aab3334897ea..ef85f0c50b7131b9f95cc97dc96345f92b90092d 100644 --- a/core/modules/system/src/Tests/Image/ToolkitTestBase.php +++ b/core/modules/system/src/Tests/Image/ToolkitTestBase.php @@ -22,7 +22,7 @@ abstract class ToolkitTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['image_test']; + public static $modules = ['image_test']; /** * The URI for the file. diff --git a/core/modules/system/src/Tests/Module/ModuleTestBase.php b/core/modules/system/src/Tests/Module/ModuleTestBase.php index 02ee0bd87d39bc286f1395704f3b78c133257e27..257bb879cf77000bfc8d03ae0fb2e10291daf5d5 100644 --- a/core/modules/system/src/Tests/Module/ModuleTestBase.php +++ b/core/modules/system/src/Tests/Module/ModuleTestBase.php @@ -21,7 +21,7 @@ abstract class ModuleTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; protected $adminUser; diff --git a/core/modules/system/src/Tests/Pager/PagerTest.php b/core/modules/system/src/Tests/Pager/PagerTest.php index 511e40e2ad57d183944332f65a628f467b5893fb..71413f283e536951e194031099b10886a9b43dfc 100644 --- a/core/modules/system/src/Tests/Pager/PagerTest.php +++ b/core/modules/system/src/Tests/Pager/PagerTest.php @@ -16,7 +16,7 @@ class PagerTest extends WebTestBase { * * @var array */ - protected static $modules = ['dblog', 'pager_test']; + public static $modules = ['dblog', 'pager_test']; /** * A user with permission to access site reports. diff --git a/core/modules/system/src/Tests/Render/HtmlResponseAttachmentsTest.php b/core/modules/system/src/Tests/Render/HtmlResponseAttachmentsTest.php index 3ef9cf1dc9fafbeb9fd0364e8d130ba7fe0d2571..6060fcc30caf3b78a9060fcd641274b7ff70d7dc 100644 --- a/core/modules/system/src/Tests/Render/HtmlResponseAttachmentsTest.php +++ b/core/modules/system/src/Tests/Render/HtmlResponseAttachmentsTest.php @@ -16,7 +16,7 @@ class HtmlResponseAttachmentsTest extends WebTestBase { * * @var array */ - protected static $modules = ['render_attached_test']; + public static $modules = ['render_attached_test']; /** * Test rendering of ['#attached']. diff --git a/core/modules/system/src/Tests/Render/UrlBubbleableMetadataBubblingTest.php b/core/modules/system/src/Tests/Render/UrlBubbleableMetadataBubblingTest.php index da60ac5d8e5de53c607ac8e0e47ff47197c47f8e..a55037f74b4d53874a2652c8f1796149d0a0a6d4 100644 --- a/core/modules/system/src/Tests/Render/UrlBubbleableMetadataBubblingTest.php +++ b/core/modules/system/src/Tests/Render/UrlBubbleableMetadataBubblingTest.php @@ -17,7 +17,7 @@ class UrlBubbleableMetadataBubblingTest extends WebTestBase { * * @var array */ - protected static $modules = ['cache_test']; + public static $modules = ['cache_test']; /** * {@inheritdoc} diff --git a/core/modules/system/src/Tests/Routing/DestinationTest.php b/core/modules/system/src/Tests/Routing/DestinationTest.php index c6669af0eca3d5a2082db46ff1c0cc8bfb4f97b5..d959c7ad4aad806951357d14aa3d860817ea6ceb 100644 --- a/core/modules/system/src/Tests/Routing/DestinationTest.php +++ b/core/modules/system/src/Tests/Routing/DestinationTest.php @@ -20,7 +20,7 @@ class DestinationTest extends WebTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; /** * Tests that $_GET/$_REQUEST['destination'] only contain internal URLs. diff --git a/core/modules/system/src/Tests/Routing/RouterTest.php b/core/modules/system/src/Tests/Routing/RouterTest.php index 41306da9cde0c28a0d94b5fa41adfaa06f11a2db..83a9c55b39775589e2eeb1640f1b7eb36644df06 100644 --- a/core/modules/system/src/Tests/Routing/RouterTest.php +++ b/core/modules/system/src/Tests/Routing/RouterTest.php @@ -21,7 +21,7 @@ class RouterTest extends WebTestBase { * * @var array */ - protected static $modules = ['router_test']; + public static $modules = ['router_test']; /** * Confirms that our FinishResponseSubscriber logic works properly. diff --git a/core/modules/system/src/Tests/Session/SessionAuthenticationTest.php b/core/modules/system/src/Tests/Session/SessionAuthenticationTest.php index 48f629e274db0f8d089a2eda0d878266c50db560..ffdc08d1928974add2e740f055f51fcae9627615 100644 --- a/core/modules/system/src/Tests/Session/SessionAuthenticationTest.php +++ b/core/modules/system/src/Tests/Session/SessionAuthenticationTest.php @@ -25,7 +25,7 @@ class SessionAuthenticationTest extends WebTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth', 'session_test']; + public static $modules = ['basic_auth', 'session_test']; /** * {@inheritdoc} diff --git a/core/modules/system/src/Tests/Session/SessionHttpsTest.php b/core/modules/system/src/Tests/Session/SessionHttpsTest.php index 81e3b66aafdee460a5583b404be488f0d18d9994..6ba70da52bb52a403502ce4d74e50987f2b2c88a 100644 --- a/core/modules/system/src/Tests/Session/SessionHttpsTest.php +++ b/core/modules/system/src/Tests/Session/SessionHttpsTest.php @@ -33,7 +33,7 @@ class SessionHttpsTest extends WebTestBase { * * @var array */ - protected static $modules = ['session_test']; + public static $modules = ['session_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/src/Tests/Session/SessionTest.php b/core/modules/system/src/Tests/Session/SessionTest.php index f7efea7c934a3c6a5749038362e5878767dd268b..0f219c5036b5c1c162008e0ff8f603cfb70536aa 100644 --- a/core/modules/system/src/Tests/Session/SessionTest.php +++ b/core/modules/system/src/Tests/Session/SessionTest.php @@ -16,7 +16,7 @@ class SessionTest extends WebTestBase { * * @var array */ - protected static $modules = ['session_test']; + public static $modules = ['session_test']; protected $dumpHeaders = TRUE; diff --git a/core/modules/system/src/Tests/Session/StackSessionHandlerIntegrationTest.php b/core/modules/system/src/Tests/Session/StackSessionHandlerIntegrationTest.php index da5736354d0d547d6d21826cacc813d1b55850c7..ac368685db070dc0faa554559e2c0b9674cd6ce2 100644 --- a/core/modules/system/src/Tests/Session/StackSessionHandlerIntegrationTest.php +++ b/core/modules/system/src/Tests/Session/StackSessionHandlerIntegrationTest.php @@ -16,7 +16,7 @@ class StackSessionHandlerIntegrationTest extends WebTestBase { * * @var array */ - protected static $modules = ['session_test']; + public static $modules = ['session_test']; /** * Tests a request. diff --git a/core/modules/system/src/Tests/System/ErrorHandlerTest.php b/core/modules/system/src/Tests/System/ErrorHandlerTest.php index 04cb17526cc5fe19009e50cefdd480bc01e5cfbf..dc661fec914fa73647b4a04f7b88dfff02fda007 100644 --- a/core/modules/system/src/Tests/System/ErrorHandlerTest.php +++ b/core/modules/system/src/Tests/System/ErrorHandlerTest.php @@ -17,7 +17,7 @@ class ErrorHandlerTest extends WebTestBase { * * @var array */ - protected static $modules = ['error_test']; + public static $modules = ['error_test']; /** * Test the error handler. diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonAnonTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonAnonTest.php index 9b577c104bc09d1e80a2f9879e22f12438c7a239..77988aa037a6ea036e614e3b4ea633044557fe89 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonAnonTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonAnonTest.php @@ -17,7 +17,7 @@ class EntityTestBundleHalJsonAnonTest extends EntityTestBundleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonBasicAuthTest.php index d49858b4a736d675e334f9fcc8127e472a4c8cc8..47e44d2d1886006c1be4bee06c46d920c82ad269 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class EntityTestBundleHalJsonBasicAuthTest extends EntityTestBundleResourceTestB /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonCookieTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonCookieTest.php index c5ba2877fbc5cd7316e8411c8e7978c5ae2cc952..3e8b442de7a28ed348af5f2cdbb8a333407b7c90 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonCookieTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestBundleHalJsonCookieTest.php @@ -15,7 +15,7 @@ class EntityTestBundleHalJsonCookieTest extends EntityTestBundleResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonAnonTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonAnonTest.php index 6c77db81ac9f2222698164604a2da35b09a37f08..c272a1aa6fd6894beb581b92a1cada79d24552e3 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonAnonTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonAnonTest.php @@ -20,7 +20,7 @@ class EntityTestHalJsonAnonTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonBasicAuthTest.php index c0d588526357607794769db675e06c8ed2b6bc12..18fad4beede41187d09bd03c2fedc520e68340a9 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityTestHalJsonBasicAuthTest extends EntityTestHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonInternalPropertyNormalizerTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonInternalPropertyNormalizerTest.php index 0739a34517be01ba79317d01c422b28ee0df6d60..73d70d3ff6a2bdbb3c4988d3c191a3c9cc583737 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonInternalPropertyNormalizerTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestHalJsonInternalPropertyNormalizerTest.php @@ -20,7 +20,7 @@ class EntityTestHalJsonInternalPropertyNormalizerTest extends EntityTestHalJsonA /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php index 7e39c8be330e89895d87f2e58be35462b0acaf27..ca6e395351462757fb55983c9d4a40fdf12a4523 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonAnonTest.php @@ -18,7 +18,7 @@ class EntityTestLabelHalJsonAnonTest extends EntityTestLabelResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonBasicAuthTest.php index acbcc198f8f15e4ec2259bcdc7f75f1c726a26d1..dfae2e40243bfab4d3a3bd8c02024a2036444ba7 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Hal/EntityTestLabelHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityTestLabelHalJsonBasicAuthTest extends EntityTestLabelHalJsonAnonTest /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleJsonBasicAuthTest.php index 8a193b9662d83e7d6c3d6018a087c77a063e245d..d1a7adbc9e756c0a618d25f84190226502d50c7b 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityTestBundleJsonBasicAuthTest extends EntityTestBundleResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php index e0b9e0ddaa499ad1e51a23f6f600e2f82c5b76da..cf167bc6eb5683b059494cc59529ff3147ad7a68 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleResourceTestBase.php @@ -13,7 +13,7 @@ abstract class EntityTestBundleResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleXmlBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleXmlBasicAuthTest.php index e39211996b173db4181ee08326a4050bfcfa85c1..701c15ba9f5b0aa670234c34bfa0a1a418c5e8a7 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleXmlBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestBundleXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityTestBundleXmlBasicAuthTest extends EntityTestBundleResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonBasicAuthTest.php index dd2f06f45a71b64cbf8364faa2b9ae78fea9cef7..cd647e8fe3aa09b0b86d73c3e4a10e1aa95b746e 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityTestJsonBasicAuthTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelJsonBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelJsonBasicAuthTest.php index eb43d0293f0a01f8b5088b2f2ff39e40ac458e32..61cfea15b229512ce8f830a66891797829c064c8 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelJsonBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityTestLabelJsonBasicAuthTest extends EntityTestLabelResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php index 121b8ed3bffc20240e117da8a0b2df547baebcec..08a6552f65e63092b36bfb6882e5a2b9b9c3cb0b 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelResourceTestBase.php @@ -14,7 +14,7 @@ abstract class EntityTestLabelResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelXmlBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelXmlBasicAuthTest.php index 6c9030e3ddee8dde24b5bf9453691073366c5893..e671098f2fa328bd8ecccee885ef9fa6a1503e68 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelXmlBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestLabelXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityTestLabelXmlBasicAuthTest extends EntityTestLabelResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php index 1b6428a832c12bc397d28ac9aae0b8fd2b3e59b3..2210f97d6fc6919bad88e906bb8124d7281b5b06 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestResourceTestBase.php @@ -16,7 +16,7 @@ abstract class EntityTestResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php index f094f6f11b2929587e8690bd8df4106a2dd0de72..3ae0044aee4cccdfd72d98fcdf2a2d1e1b3974a7 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php @@ -17,7 +17,7 @@ class EntityTestTextItemNormalizerTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter_test']; + public static $modules = ['filter_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestXmlBasicAuthTest.php b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestXmlBasicAuthTest.php index 66622c587a44e9f8c3283c0fe95b39328a6f55fb..d0501afb97b30facfc1cf09c335ef3214bb322d1 100644 --- a/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestXmlBasicAuthTest.php +++ b/core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityTestXmlBasicAuthTest extends EntityTestResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php b/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php index 3eafbdcf451f9b1448411f9a38b29b023bc7e44f..c7867221231aa2353f5ad522a859f1a7c67544c6 100644 --- a/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php +++ b/core/modules/system/tests/src/Functional/Ajax/OffCanvasDialogTest.php @@ -19,7 +19,7 @@ class OffCanvasDialogTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['ajax_test']; + public static $modules = ['ajax_test']; /** * Test sending AJAX requests to open and manipulate off-canvas dialog. diff --git a/core/modules/system/tests/src/Functional/Batch/PageTest.php b/core/modules/system/tests/src/Functional/Batch/PageTest.php index 957c80226132b2aab9526e516f4488a1023e7c5d..b1e46a2ea5fb8a23da871f5ca9e0e426e35d4af3 100644 --- a/core/modules/system/tests/src/Functional/Batch/PageTest.php +++ b/core/modules/system/tests/src/Functional/Batch/PageTest.php @@ -16,7 +16,7 @@ class PageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['batch_test']; + public static $modules = ['batch_test']; /** * Tests that the batch API progress page uses the correct theme. diff --git a/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php b/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php index 92680a09a49710f2f689891f94d261eed5c66de6..97dc6e7a5f692beae7367c1dba49a75d30fe3b07 100644 --- a/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php +++ b/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php @@ -17,7 +17,7 @@ class ProcessingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['batch_test', 'test_page_test']; + public static $modules = ['batch_test', 'test_page_test']; /** * Tests batches triggered outside of form submission. diff --git a/core/modules/system/tests/src/Functional/Bootstrap/DrupalMessengerServiceTest.php b/core/modules/system/tests/src/Functional/Bootstrap/DrupalMessengerServiceTest.php index f70f4dda2e0a9d772d515036b1f300248a013204..51404ef18d17a9bc61252814918331853a5a90f3 100644 --- a/core/modules/system/tests/src/Functional/Bootstrap/DrupalMessengerServiceTest.php +++ b/core/modules/system/tests/src/Functional/Bootstrap/DrupalMessengerServiceTest.php @@ -17,7 +17,7 @@ class DrupalMessengerServiceTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; /** * Tests Messenger service. diff --git a/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php b/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php index d2ff3d3b74f4c3c5a0fcde1fa721c86755f5533e..78fb983a612cc2156baecf34beac89529aefefc3 100644 --- a/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php +++ b/core/modules/system/tests/src/Functional/Cache/SessionExistsCacheContextTest.php @@ -17,7 +17,7 @@ class SessionExistsCacheContextTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['session_exists_cache_context_test']; + public static $modules = ['session_exists_cache_context_test']; /** * Tests \Drupal\Core\Cache\Context\SessionExistsCacheContext::getContext(). diff --git a/core/modules/system/tests/src/Functional/Common/AlterTest.php b/core/modules/system/tests/src/Functional/Common/AlterTest.php index 981157bf25e8550d756a4050a3c9ffd5dc852222..e529e9d1c2d7fb69e6768da3cef6d4e4c311e87d 100644 --- a/core/modules/system/tests/src/Functional/Common/AlterTest.php +++ b/core/modules/system/tests/src/Functional/Common/AlterTest.php @@ -16,7 +16,7 @@ class AlterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'common_test']; + public static $modules = ['block', 'common_test']; /** * Tests if the theme has been altered. diff --git a/core/modules/system/tests/src/Functional/Common/EarlyRenderingControllerTest.php b/core/modules/system/tests/src/Functional/Common/EarlyRenderingControllerTest.php index 633f09f4e37cefdbffd1680fb0a5fbeac803c7c3..9d6c0af5d10be511791aec72a7e217098f10c40b 100644 --- a/core/modules/system/tests/src/Functional/Common/EarlyRenderingControllerTest.php +++ b/core/modules/system/tests/src/Functional/Common/EarlyRenderingControllerTest.php @@ -20,7 +20,7 @@ class EarlyRenderingControllerTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'early_rendering_controller_test']; + public static $modules = ['system', 'early_rendering_controller_test']; /** * Tests theme preprocess functions being able to attach assets. diff --git a/core/modules/system/tests/src/Functional/Common/RenderWebTest.php b/core/modules/system/tests/src/Functional/Common/RenderWebTest.php index 62ab7be1664ab312ff0142bc5f70012e8c574774..7856f94fb16f63a6eacf943089829392a1f42969 100644 --- a/core/modules/system/tests/src/Functional/Common/RenderWebTest.php +++ b/core/modules/system/tests/src/Functional/Common/RenderWebTest.php @@ -21,7 +21,7 @@ class RenderWebTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['common_test']; + public static $modules = ['common_test']; /** * Asserts the cache context for the wrapper format is always present. diff --git a/core/modules/system/tests/src/Functional/Common/UrlTest.php b/core/modules/system/tests/src/Functional/Common/UrlTest.php index b4ceaedb5ff910eb2bba03d3ef89083721d2a493..8e4d7b121c5852a7d7ca65ebf85d2350f7734d9e 100644 --- a/core/modules/system/tests/src/Functional/Common/UrlTest.php +++ b/core/modules/system/tests/src/Functional/Common/UrlTest.php @@ -20,7 +20,7 @@ */ class UrlTest extends BrowserTestBase { - protected static $modules = ['common_test', 'url_alter_test']; + public static $modules = ['common_test', 'url_alter_test']; /** * Confirms that invalid URLs are filtered in link generating functions. diff --git a/core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php b/core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php index 608c32b1ffa96db273612de34f287a5093b86f52..0bb9016c4819a00e4766da008aa4d156b3041614 100644 --- a/core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php +++ b/core/modules/system/tests/src/Functional/CsrfRequestHeaderTest.php @@ -17,7 +17,7 @@ class CsrfRequestHeaderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system', 'csrf_test']; + public static $modules = ['system', 'csrf_test']; /** * Tests access to routes protected by CSRF request header requirements. diff --git a/core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php b/core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php index 9193ee1032f6e51a201c62c3809e32306309d820..a28c1dba2368faa1c2bc8a050d4c10123f74b1cf 100644 --- a/core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php +++ b/core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php @@ -13,7 +13,7 @@ abstract class DatabaseTestBase extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['database_test']; + public static $modules = ['database_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Database/TemporaryQueryTest.php b/core/modules/system/tests/src/Functional/Database/TemporaryQueryTest.php index 814787e17409b47a2d079bdf819b1ef104e74b7a..e7d08502f3571c1460d8c7bb250a3078db5a1fb0 100644 --- a/core/modules/system/tests/src/Functional/Database/TemporaryQueryTest.php +++ b/core/modules/system/tests/src/Functional/Database/TemporaryQueryTest.php @@ -14,7 +14,7 @@ class TemporaryQueryTest extends DatabaseTestBase { /** * {@inheritdoc} */ - protected static $modules = ['database_test']; + public static $modules = ['database_test']; /** * Returns the number of rows of a table. diff --git a/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php b/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php index bdf24b0d32f5f0d84c5573bb8e8138e17327e160..488fa6ef42ebcbbf538f1285c3840e07223ab064 100644 --- a/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php +++ b/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php @@ -16,7 +16,7 @@ class DrupalDateTimeTest extends BrowserTestBase { /** * Set up required modules. */ - protected static $modules = []; + public static $modules = []; /** * Test setup. diff --git a/core/modules/system/tests/src/Functional/DrupalKernel/ContainerRebuildWebTest.php b/core/modules/system/tests/src/Functional/DrupalKernel/ContainerRebuildWebTest.php index 37e64244ad98e927e429ed248e314f7ecaad413d..828b92f2891341442847d94ceb57a6a4d406faa9 100644 --- a/core/modules/system/tests/src/Functional/DrupalKernel/ContainerRebuildWebTest.php +++ b/core/modules/system/tests/src/Functional/DrupalKernel/ContainerRebuildWebTest.php @@ -14,7 +14,7 @@ class ContainerRebuildWebTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['service_provider_test']; + public static $modules = ['service_provider_test']; /** * Sets a different deployment identifier. diff --git a/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php b/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php index e32e8746c365790621b5c75b30916461abdce79c..88d9bb5d62abe02e5364cd75b446c5311754861c 100644 --- a/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php +++ b/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php @@ -21,7 +21,7 @@ class ConfigEntityImportTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['action', 'block', 'filter', 'image', 'search', 'search_extra_type', 'config_test']; + public static $modules = ['action', 'block', 'filter', 'image', 'search', 'search_extra_type', 'config_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php b/core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php index 756ebb524b9f23b12ab54fb7d510c70655751bdd..a16614f1460fc19400e14d161259a2edce309b2d 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php @@ -17,7 +17,7 @@ class EntityAddUITest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Tests the add page for an entity type using bundle entities. diff --git a/core/modules/system/tests/src/Functional/Entity/EntityCacheTagsTestBase.php b/core/modules/system/tests/src/Functional/Entity/EntityCacheTagsTestBase.php index 460a1bb45102523d46b7958b93793831795c6135..447afbfa769cc20a112f2d6ac7e17129703410e2 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityCacheTagsTestBase.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityCacheTagsTestBase.php @@ -24,7 +24,7 @@ abstract class EntityCacheTagsTestBase extends PageCacheTagsTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field_test']; + public static $modules = ['entity_test', 'field_test']; /** * The main entity used for testing. diff --git a/core/modules/system/tests/src/Functional/Entity/EntityFormTest.php b/core/modules/system/tests/src/Functional/Entity/EntityFormTest.php index 9b85ea41b6637184a7895c7728a5c2d108e4a3cc..4f0b7f0f71fc28ab990c68a8717a95c29ee829d3 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityFormTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityFormTest.php @@ -17,7 +17,7 @@ class EntityFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test', 'language']; + public static $modules = ['entity_test', 'language']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php b/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php index fe6bb2a460d0b077b92401bb7480063fdfecc169..94225f4e97dd52d2f07aecf5821b6c4cee0e6820 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityListBuilderTest.php @@ -16,7 +16,7 @@ class EntityListBuilderTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Entity/EntityOperationsTest.php b/core/modules/system/tests/src/Functional/Entity/EntityOperationsTest.php index fc178506756b2893f1de520440a33934f8bc629d..b020f42870cd01e745bf719e0c03e748fc286ae0 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityOperationsTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityOperationsTest.php @@ -16,7 +16,7 @@ class EntityOperationsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Entity/EntityReferenceSelection/EntityReferenceSelectionAccessTest.php b/core/modules/system/tests/src/Functional/Entity/EntityReferenceSelection/EntityReferenceSelectionAccessTest.php index 27f43ee33fee0206d530bd7c1c5131c85a176d81..c037d12e3f1eff61dd6976db9a72d9c953c7437a 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityReferenceSelection/EntityReferenceSelectionAccessTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityReferenceSelection/EntityReferenceSelectionAccessTest.php @@ -32,7 +32,7 @@ class EntityReferenceSelectionAccessTest extends KernelTestBase { * * @var array */ - protected static $modules = ['comment', 'field', 'node', 'system', 'taxonomy', 'text', 'user']; + public static $modules = ['comment', 'field', 'node', 'system', 'taxonomy', 'text', 'user']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Entity/EntityRevisionsTest.php b/core/modules/system/tests/src/Functional/Entity/EntityRevisionsTest.php index c5cbff21560d63853e371c87ce5201bf724aa19a..bf8bcb337fd2851eb70e480dd43bff5cc31cd1fe 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityRevisionsTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityRevisionsTest.php @@ -21,7 +21,7 @@ class EntityRevisionsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test', 'language']; + public static $modules = ['entity_test', 'language']; /** * A user with permission to administer entity_test content. diff --git a/core/modules/system/tests/src/Functional/Entity/EntityTranslationFormTest.php b/core/modules/system/tests/src/Functional/Entity/EntityTranslationFormTest.php index 4e735812d34294a512e20b9ed226506a8dee813a..e008e71e1f985c9b13d514eaa134ba13eb715814 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityTranslationFormTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityTranslationFormTest.php @@ -19,7 +19,7 @@ class EntityTranslationFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test', 'language', 'node']; + public static $modules = ['entity_test', 'language', 'node']; protected $langcodes; diff --git a/core/modules/system/tests/src/Functional/Entity/EntityViewControllerTest.php b/core/modules/system/tests/src/Functional/Entity/EntityViewControllerTest.php index 2fc1c090cfcb568da941875b165123cdf3a8f888..363736975328b813cc28c3d1ce8b7009121be31c 100644 --- a/core/modules/system/tests/src/Functional/Entity/EntityViewControllerTest.php +++ b/core/modules/system/tests/src/Functional/Entity/EntityViewControllerTest.php @@ -17,7 +17,7 @@ class EntityViewControllerTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Array of test entities. diff --git a/core/modules/system/tests/src/Functional/Form/AlterTest.php b/core/modules/system/tests/src/Functional/Form/AlterTest.php index f857f47f221ee9511e793a005c9ee3f10b0751a0..622a3d1ead105cb72c63435839314db6641acad2 100644 --- a/core/modules/system/tests/src/Functional/Form/AlterTest.php +++ b/core/modules/system/tests/src/Functional/Form/AlterTest.php @@ -17,7 +17,7 @@ class AlterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'form_test']; + public static $modules = ['block', 'form_test']; /** * Tests execution order of hook_form_alter() and hook_form_FORM_ID_alter(). diff --git a/core/modules/system/tests/src/Functional/Form/ArbitraryRebuildTest.php b/core/modules/system/tests/src/Functional/Form/ArbitraryRebuildTest.php index 9d243ba311bd48df5a1b292d95c2d11193ee0ef8..e35ac6d08a3ab6ed0ab251774c278453d85240ac 100644 --- a/core/modules/system/tests/src/Functional/Form/ArbitraryRebuildTest.php +++ b/core/modules/system/tests/src/Functional/Form/ArbitraryRebuildTest.php @@ -18,7 +18,7 @@ class ArbitraryRebuildTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['text', 'form_test']; + public static $modules = ['text', 'form_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Form/CheckboxTest.php b/core/modules/system/tests/src/Functional/Form/CheckboxTest.php index 40eb6a4ae4917bee3edff98c00a5a28a09831f97..60fad6a2e811f9202040616576e1266463c8162e 100644 --- a/core/modules/system/tests/src/Functional/Form/CheckboxTest.php +++ b/core/modules/system/tests/src/Functional/Form/CheckboxTest.php @@ -17,7 +17,7 @@ class CheckboxTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; public function testFormCheckbox() { // Ensure that the checked state is determined and rendered correctly for diff --git a/core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php b/core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php index 976031abf8ca45f5e3de96a079706a6be3bd6a56..ad5a74b691393b7839b0501d64e801e61f5a9380 100644 --- a/core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php +++ b/core/modules/system/tests/src/Functional/Form/ConfirmFormTest.php @@ -18,7 +18,7 @@ class ConfirmFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; public function testConfirmForm() { // Test the building of the form. diff --git a/core/modules/system/tests/src/Functional/Form/ElementTest.php b/core/modules/system/tests/src/Functional/Form/ElementTest.php index 307bc05e3b7514a68fcbadb3e39214bdd71ac1ee..6eefa484bddee173d67b01ae513ccf825aca9f99 100644 --- a/core/modules/system/tests/src/Functional/Form/ElementTest.php +++ b/core/modules/system/tests/src/Functional/Form/ElementTest.php @@ -16,7 +16,7 @@ class ElementTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests placeholder text for elements that support placeholders. diff --git a/core/modules/system/tests/src/Functional/Form/ElementsAccessTest.php b/core/modules/system/tests/src/Functional/Form/ElementsAccessTest.php index 039ada39d9016a4a34bdbd24720c77093aa767b5..1a92893c3929b4ab575b40696e75ce1de91fe857 100644 --- a/core/modules/system/tests/src/Functional/Form/ElementsAccessTest.php +++ b/core/modules/system/tests/src/Functional/Form/ElementsAccessTest.php @@ -16,7 +16,7 @@ class ElementsAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Ensures that child values are still processed when #access = FALSE. diff --git a/core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php b/core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php index 8a555d713f30ab13dfcd95c2317a5a7157a7b08a..a7d404b86be5d7c7d12f5bf4bf6a3c6f92660590 100644 --- a/core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php +++ b/core/modules/system/tests/src/Functional/Form/ElementsContainerTest.php @@ -16,7 +16,7 @@ class ElementsContainerTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests the #optional container property. diff --git a/core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php b/core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php index 6fc9862a3bbb2d18e128707c998af3520050fbe2..91f3ec4a59d47d3d1e35b380ae4a5655c38fd62e 100644 --- a/core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php +++ b/core/modules/system/tests/src/Functional/Form/ElementsLabelsTest.php @@ -17,7 +17,7 @@ class ElementsLabelsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Test form elements, labels, title attributes and required marks output diff --git a/core/modules/system/tests/src/Functional/Form/ElementsVerticalTabsTest.php b/core/modules/system/tests/src/Functional/Form/ElementsVerticalTabsTest.php index 868c5c446402a9cbd7dd332b6f9dba92605b8298..34ca1c9cf81103c0af3188ab834806a4db10eba3 100644 --- a/core/modules/system/tests/src/Functional/Form/ElementsVerticalTabsTest.php +++ b/core/modules/system/tests/src/Functional/Form/ElementsVerticalTabsTest.php @@ -18,7 +18,7 @@ class ElementsVerticalTabsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * A user with permission to access vertical_tab_test_tabs. diff --git a/core/modules/system/tests/src/Functional/Form/EmailTest.php b/core/modules/system/tests/src/Functional/Form/EmailTest.php index 6468a3608022aac6337b1be0136ff557ea2e001e..2fe6ebe9078f2598d9813e418383d4648a927b9b 100644 --- a/core/modules/system/tests/src/Functional/Form/EmailTest.php +++ b/core/modules/system/tests/src/Functional/Form/EmailTest.php @@ -17,7 +17,7 @@ class EmailTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests that #type 'email' fields are properly validated. diff --git a/core/modules/system/tests/src/Functional/Form/FormObjectTest.php b/core/modules/system/tests/src/Functional/Form/FormObjectTest.php index 87a819b5421a8ebc50df88acaa8e0d685f959abd..e2c00f5d17a8734aba9f1d543ff91ae48fb6f468 100644 --- a/core/modules/system/tests/src/Functional/Form/FormObjectTest.php +++ b/core/modules/system/tests/src/Functional/Form/FormObjectTest.php @@ -16,7 +16,7 @@ class FormObjectTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests using an object as the form callback. diff --git a/core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php b/core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php index c5d2357c5ab7d9dda6fb95bdef01315e761f86ee..474a35b55a97a5c4065867ffcc333a2ff86e750e 100644 --- a/core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php +++ b/core/modules/system/tests/src/Functional/Form/FormStoragePageCacheTest.php @@ -14,7 +14,7 @@ class FormStoragePageCacheTest extends BrowserTestBase { /** * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Form/FormTest.php b/core/modules/system/tests/src/Functional/Form/FormTest.php index 4ec6ae9a9bf18075bb3e6b677ec692122e56aef3..2407a3f51a030a98774dd0c51313d01a34c19702 100644 --- a/core/modules/system/tests/src/Functional/Form/FormTest.php +++ b/core/modules/system/tests/src/Functional/Form/FormTest.php @@ -25,7 +25,7 @@ class FormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['filter', 'form_test', 'file', 'datetime']; + public static $modules = ['filter', 'form_test', 'file', 'datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Form/LanguageSelectElementTest.php b/core/modules/system/tests/src/Functional/Form/LanguageSelectElementTest.php index d19bb5e5c72bdb5f2826a94d560d2ed7cada4b34..2262670f2bd0be83d468a37bbb44d615411ff006 100644 --- a/core/modules/system/tests/src/Functional/Form/LanguageSelectElementTest.php +++ b/core/modules/system/tests/src/Functional/Form/LanguageSelectElementTest.php @@ -20,7 +20,7 @@ class LanguageSelectElementTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test', 'language']; + public static $modules = ['form_test', 'language']; /** * Tests that the options printed by the language select element are correct. diff --git a/core/modules/system/tests/src/Functional/Form/ModulesListFormWebTest.php b/core/modules/system/tests/src/Functional/Form/ModulesListFormWebTest.php index 7420ded71aa5279e277584fcce5e1a3021eff1b2..dc63e64d72d8cf623d6202d26f828082dca1c7a6 100644 --- a/core/modules/system/tests/src/Functional/Form/ModulesListFormWebTest.php +++ b/core/modules/system/tests/src/Functional/Form/ModulesListFormWebTest.php @@ -14,7 +14,7 @@ class ModulesListFormWebTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system_test', 'help']; + public static $modules = ['system_test', 'help']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Form/RedirectTest.php b/core/modules/system/tests/src/Functional/Form/RedirectTest.php index 9909f51af126e8785dda3f3b74be75256985c23e..62253a681bb5f78e9ca1f5f04dde21381845ace3 100644 --- a/core/modules/system/tests/src/Functional/Form/RedirectTest.php +++ b/core/modules/system/tests/src/Functional/Form/RedirectTest.php @@ -16,7 +16,7 @@ class RedirectTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test', 'block']; + public static $modules = ['form_test', 'block']; /** * Tests form redirection. diff --git a/core/modules/system/tests/src/Functional/Form/ResponseTest.php b/core/modules/system/tests/src/Functional/Form/ResponseTest.php index a043c46693c15f4949ec04f33f0334a7491d690b..de5d8fd6c7a62483192c992e44f9bb5a6de8465a 100644 --- a/core/modules/system/tests/src/Functional/Form/ResponseTest.php +++ b/core/modules/system/tests/src/Functional/Form/ResponseTest.php @@ -17,7 +17,7 @@ class ResponseTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests that enforced responses propagate through subscribers and middleware. diff --git a/core/modules/system/tests/src/Functional/Form/StateValuesCleanAdvancedTest.php b/core/modules/system/tests/src/Functional/Form/StateValuesCleanAdvancedTest.php index 11746b65036c991d87a137daec80d1c615a5354d..d30b4f110b116b1301e0b5a107649a6571eafa15 100644 --- a/core/modules/system/tests/src/Functional/Form/StateValuesCleanAdvancedTest.php +++ b/core/modules/system/tests/src/Functional/Form/StateValuesCleanAdvancedTest.php @@ -23,7 +23,7 @@ class StateValuesCleanAdvancedTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['file', 'form_test']; + public static $modules = ['file', 'form_test']; /** * An image file path for uploading. diff --git a/core/modules/system/tests/src/Functional/Form/StateValuesCleanTest.php b/core/modules/system/tests/src/Functional/Form/StateValuesCleanTest.php index 5049b0485ce6dcc7518df9e19b7cec3d8a21d916..cae0835b5f820016c962de1137282b48ad1c30b0 100644 --- a/core/modules/system/tests/src/Functional/Form/StateValuesCleanTest.php +++ b/core/modules/system/tests/src/Functional/Form/StateValuesCleanTest.php @@ -19,7 +19,7 @@ class StateValuesCleanTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests \Drupal\Core\Form\FormState::cleanValues(). diff --git a/core/modules/system/tests/src/Functional/Form/SystemConfigFormTest.php b/core/modules/system/tests/src/Functional/Form/SystemConfigFormTest.php index c3304fb33a4e76e76fcba48f0f36f7d90bb37b8a..09ad06ac8c265f2983095d5936d0467b264daad9 100644 --- a/core/modules/system/tests/src/Functional/Form/SystemConfigFormTest.php +++ b/core/modules/system/tests/src/Functional/Form/SystemConfigFormTest.php @@ -16,7 +16,7 @@ class SystemConfigFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests the SystemConfigFormTestBase class. diff --git a/core/modules/system/tests/src/Functional/Form/UrlTest.php b/core/modules/system/tests/src/Functional/Form/UrlTest.php index c4d2c6118908a0b3a13182f67da1b43f9955975a..82d227bbdf95fbdd7de618f2362ad0b7e482d841 100644 --- a/core/modules/system/tests/src/Functional/Form/UrlTest.php +++ b/core/modules/system/tests/src/Functional/Form/UrlTest.php @@ -17,7 +17,7 @@ class UrlTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; protected $profile = 'testing'; diff --git a/core/modules/system/tests/src/Functional/Form/ValidationTest.php b/core/modules/system/tests/src/Functional/Form/ValidationTest.php index 799b2da751aabec0ee42d0ec48e7daaf2063418c..094a0af73c744f58d5d9397d096fe9a71ae845a0 100644 --- a/core/modules/system/tests/src/Functional/Form/ValidationTest.php +++ b/core/modules/system/tests/src/Functional/Form/ValidationTest.php @@ -17,7 +17,7 @@ class ValidationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Tests #element_validate and #validate. diff --git a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonAnonTest.php b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonAnonTest.php index 040cbc98efaf3748ed6e2842cbd0675a231e09be..eb19bac6f12923171602943967ae09102621d5f7 100644 --- a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonAnonTest.php +++ b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ActionHalJsonAnonTest extends ActionResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonBasicAuthTest.php b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonBasicAuthTest.php index 71ec8f0fed41e2c48de41b703dbf9a639500c97c..7441f6ab4bcd4a8db619408433ca69b203d7258b 100644 --- a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ActionHalJsonBasicAuthTest extends ActionResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonCookieTest.php b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonCookieTest.php index 5dbf181626bbef8188ef28bd2f133caddf0b73f7..f013032e85169fb21d2391ca551ba65bec9feb8a 100644 --- a/core/modules/system/tests/src/Functional/Hal/ActionHalJsonCookieTest.php +++ b/core/modules/system/tests/src/Functional/Hal/ActionHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ActionHalJsonCookieTest extends ActionResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonAnonTest.php b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonAnonTest.php index 4a95b9cc630b8b7b19c07317d9b3f962f38057bf..0200624b162c34c0dfad73b73d7a3a42d38d03b0 100644 --- a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonAnonTest.php +++ b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonAnonTest.php @@ -15,7 +15,7 @@ class MenuHalJsonAnonTest extends MenuResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonBasicAuthTest.php b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonBasicAuthTest.php index 7c07b2867e3ff641dce7bd9e3903eb4219d63c96..cce118b1186b09935b50b66985ac07a5811a263d 100644 --- a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class MenuHalJsonBasicAuthTest extends MenuResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonCookieTest.php b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonCookieTest.php index a10b747525b642870c08507c422aa8cac754afd7..9f7346f2592e47c499796ebac85028954d69f6ca 100644 --- a/core/modules/system/tests/src/Functional/Hal/MenuHalJsonCookieTest.php +++ b/core/modules/system/tests/src/Functional/Hal/MenuHalJsonCookieTest.php @@ -15,7 +15,7 @@ class MenuHalJsonCookieTest extends MenuResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Lock/LockFunctionalTest.php b/core/modules/system/tests/src/Functional/Lock/LockFunctionalTest.php index 7af09ad671831c49fe86aa4d3d12c7dc13c52717..0b13f18d6266ace1f22044686939a40202cbc221 100644 --- a/core/modules/system/tests/src/Functional/Lock/LockFunctionalTest.php +++ b/core/modules/system/tests/src/Functional/Lock/LockFunctionalTest.php @@ -16,7 +16,7 @@ class LockFunctionalTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; /** * Confirms that we can acquire and release locks in two parallel requests. diff --git a/core/modules/system/tests/src/Functional/Mail/MailTest.php b/core/modules/system/tests/src/Functional/Mail/MailTest.php index cae6343e3634f4eb9f4f3801854d68abcce81a8c..e8accddb6f4e2f2bd6fbec57e6f082e1a3c4e7f0 100644 --- a/core/modules/system/tests/src/Functional/Mail/MailTest.php +++ b/core/modules/system/tests/src/Functional/Mail/MailTest.php @@ -19,7 +19,7 @@ class MailTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['simpletest', 'system_mail_failure_test']; + public static $modules = ['simpletest', 'system_mail_failure_test']; /** * Assert that the pluggable mail system is functional. diff --git a/core/modules/system/tests/src/Functional/Menu/BreadcrumbTest.php b/core/modules/system/tests/src/Functional/Menu/BreadcrumbTest.php index edcf385c03c20a9aa954a66f75e21ad764eff536..0e493e5d688108d6e56699dce0aacad2a36efa5c 100644 --- a/core/modules/system/tests/src/Functional/Menu/BreadcrumbTest.php +++ b/core/modules/system/tests/src/Functional/Menu/BreadcrumbTest.php @@ -21,7 +21,7 @@ class BreadcrumbTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_test', 'block']; + public static $modules = ['menu_test', 'block']; /** * An administrative user. diff --git a/core/modules/system/tests/src/Functional/Menu/LocalActionTest.php b/core/modules/system/tests/src/Functional/Menu/LocalActionTest.php index 2a78b118d54bdd699022eac6ab5b6d931c58a8e4..f7b9aafae40c6e73b1fa4b1cbd342b91748dd3c7 100644 --- a/core/modules/system/tests/src/Functional/Menu/LocalActionTest.php +++ b/core/modules/system/tests/src/Functional/Menu/LocalActionTest.php @@ -18,7 +18,7 @@ class LocalActionTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['block', 'menu_test']; + public static $modules = ['block', 'menu_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php b/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php index 824112cf948f93b5dccccd9052e90481da65dab9..1a49336777ed8f82939303781a21b86d5404d2a2 100644 --- a/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php +++ b/core/modules/system/tests/src/Functional/Menu/LocalTasksTest.php @@ -18,7 +18,7 @@ class LocalTasksTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['block', 'menu_test', 'entity_test', 'node']; + public static $modules = ['block', 'menu_test', 'entity_test', 'node']; /** * The local tasks block under testing. diff --git a/core/modules/system/tests/src/Functional/Menu/MenuAccessTest.php b/core/modules/system/tests/src/Functional/Menu/MenuAccessTest.php index 2c95315d404f7efeb95f3c07b7a7a1149aabd131..10af396a6d74497d4af5a30e9f2ae752de42d63c 100644 --- a/core/modules/system/tests/src/Functional/Menu/MenuAccessTest.php +++ b/core/modules/system/tests/src/Functional/Menu/MenuAccessTest.php @@ -17,7 +17,7 @@ class MenuAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'menu_test']; + public static $modules = ['block', 'menu_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Menu/MenuLinkSecurityTest.php b/core/modules/system/tests/src/Functional/Menu/MenuLinkSecurityTest.php index 8432a676b14071bcb7dce2be86da1946b05a4acf..c58bf8e504dc805deef52313d1c811d5ca6c64c8 100644 --- a/core/modules/system/tests/src/Functional/Menu/MenuLinkSecurityTest.php +++ b/core/modules/system/tests/src/Functional/Menu/MenuLinkSecurityTest.php @@ -15,7 +15,7 @@ class MenuLinkSecurityTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'block', 'menu_test']; + public static $modules = ['menu_link_content', 'block', 'menu_test']; /** * Ensures that a menu link does not cause an XSS issue. diff --git a/core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php b/core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php index e30eaef9a98a30ec55e72490d9cba245e8381fc4..7669e1875af72d97579d32d8f6863e69844f4659 100644 --- a/core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php +++ b/core/modules/system/tests/src/Functional/Menu/MenuRouterTest.php @@ -17,7 +17,7 @@ class MenuRouterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'menu_test', 'test_page_test']; + public static $modules = ['block', 'menu_test', 'test_page_test']; /** * Name of the administrative theme to use for tests. diff --git a/core/modules/system/tests/src/Functional/Module/InstallTest.php b/core/modules/system/tests/src/Functional/Module/InstallTest.php index 8026549863e38faea82cca740ce0f868564291d6..ccbca6d3126173820a6cf13758561db9bb4821a0 100644 --- a/core/modules/system/tests/src/Functional/Module/InstallTest.php +++ b/core/modules/system/tests/src/Functional/Module/InstallTest.php @@ -17,7 +17,7 @@ class InstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['module_test']; + public static $modules = ['module_test']; /** * Verify that drupal_get_schema() can be used during module installation. diff --git a/core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php b/core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php index ddd62a514afe3754dbf494a1d771e989622c8af2..9ca44078012f912e095e985a7eee411f520ff0e2 100644 --- a/core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php +++ b/core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php @@ -16,7 +16,7 @@ class InstallUninstallTest extends ModuleTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system_test', 'dblog', 'taxonomy', 'update_test_postupdate']; + public static $modules = ['system_test', 'dblog', 'taxonomy', 'update_test_postupdate']; /** * Tests that a fixed set of modules can be installed and uninstalled. diff --git a/core/modules/system/tests/src/Functional/Module/ModuleTestBase.php b/core/modules/system/tests/src/Functional/Module/ModuleTestBase.php index 2d7bc6ef215a6b9b87f051dbc081f4d0ac7ce25a..6cc726326dc3bb98bb679afdf7a9a8cb1549a3bf 100644 --- a/core/modules/system/tests/src/Functional/Module/ModuleTestBase.php +++ b/core/modules/system/tests/src/Functional/Module/ModuleTestBase.php @@ -18,7 +18,7 @@ abstract class ModuleTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; protected $adminUser; diff --git a/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php b/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php index 66e9e8214fedcac09551c0388de16b922147e1ac..5edaf42afe50d9cb316ef09a2d5b8c766994a274 100644 --- a/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php +++ b/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php @@ -33,7 +33,7 @@ class PrepareUninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'taxonomy', 'entity_test']; + public static $modules = ['node', 'taxonomy', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Module/UninstallTest.php b/core/modules/system/tests/src/Functional/Module/UninstallTest.php index 420443eaf9d478ef4c29af6e43aca1dc78e1c086..98b96ee91ef1421deffc542364de7ae5c3cb457b 100644 --- a/core/modules/system/tests/src/Functional/Module/UninstallTest.php +++ b/core/modules/system/tests/src/Functional/Module/UninstallTest.php @@ -21,7 +21,7 @@ class UninstallTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['module_test', 'user', 'views', 'node']; + public static $modules = ['module_test', 'user', 'views', 'node']; /** * Tests the hook_modules_uninstalled() of the user module. diff --git a/core/modules/system/tests/src/Functional/ParamConverter/UpcastingTest.php b/core/modules/system/tests/src/Functional/ParamConverter/UpcastingTest.php index 404137aafae9f64fa9a37cab50bd74a257a472b3..faafe84600ace73c8f31d1d733a3a2dd9a77144a 100644 --- a/core/modules/system/tests/src/Functional/ParamConverter/UpcastingTest.php +++ b/core/modules/system/tests/src/Functional/ParamConverter/UpcastingTest.php @@ -12,7 +12,7 @@ */ class UpcastingTest extends BrowserTestBase { - protected static $modules = ['paramconverter_test', 'node', 'language']; + public static $modules = ['paramconverter_test', 'node', 'language']; /** * Confirms that all parameters are converted as expected. diff --git a/core/modules/system/tests/src/Functional/Path/UrlAlterFunctionalTest.php b/core/modules/system/tests/src/Functional/Path/UrlAlterFunctionalTest.php index 3c1d7e380c0cdee062bd6049babf46463f9e6d03..271774169f0e499f223abc11db43898f7a80b55e 100644 --- a/core/modules/system/tests/src/Functional/Path/UrlAlterFunctionalTest.php +++ b/core/modules/system/tests/src/Functional/Path/UrlAlterFunctionalTest.php @@ -19,7 +19,7 @@ class UrlAlterFunctionalTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['path', 'forum', 'url_alter_test']; + public static $modules = ['path', 'forum', 'url_alter_test']; /** * Test that URL altering works and that it occurs in the correct order. diff --git a/core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php b/core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php index 5cb34269b5fbeb2bfbcbd0a33e684b91177f853f..586b1c93b2bfa885612693a74f7f9f3a3698f708 100644 --- a/core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php +++ b/core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php @@ -16,7 +16,7 @@ class AjaxPageStateTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'views']; + public static $modules = ['node', 'views']; /** * User account with all available permissions diff --git a/core/modules/system/tests/src/Functional/Render/DisplayVariantTest.php b/core/modules/system/tests/src/Functional/Render/DisplayVariantTest.php index 47517ed41cd1bc48e7fe84e9b4739f624fac27c5..2f5415ba7c449280b1e5376929d89dcd245abee9 100644 --- a/core/modules/system/tests/src/Functional/Render/DisplayVariantTest.php +++ b/core/modules/system/tests/src/Functional/Render/DisplayVariantTest.php @@ -16,7 +16,7 @@ class DisplayVariantTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['display_variant_test']; + public static $modules = ['display_variant_test']; /** * Tests selecting the variant and passing configuration. diff --git a/core/modules/system/tests/src/Functional/Render/PlaceholderMessageTest.php b/core/modules/system/tests/src/Functional/Render/PlaceholderMessageTest.php index 0d7a1e9935ad11e005a37746f6ac9484c256a2ef..185ca4985a0cae76861b8a22b88b6de1702cec23 100644 --- a/core/modules/system/tests/src/Functional/Render/PlaceholderMessageTest.php +++ b/core/modules/system/tests/src/Functional/Render/PlaceholderMessageTest.php @@ -17,7 +17,7 @@ class PlaceholderMessageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['render_placeholder_message_test']; + public static $modules = ['render_placeholder_message_test']; /** * Test rendering of message placeholder. diff --git a/core/modules/system/tests/src/Functional/Render/RenderArrayNonHtmlSubscriberTest.php b/core/modules/system/tests/src/Functional/Render/RenderArrayNonHtmlSubscriberTest.php index 08674b829e61429e58d8f09816bd164ad71f9d46..08380dec024e909a13bd64928e50062b7307748a 100644 --- a/core/modules/system/tests/src/Functional/Render/RenderArrayNonHtmlSubscriberTest.php +++ b/core/modules/system/tests/src/Functional/Render/RenderArrayNonHtmlSubscriberTest.php @@ -17,7 +17,7 @@ class RenderArrayNonHtmlSubscriberTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['render_array_non_html_subscriber_test']; + public static $modules = ['render_array_non_html_subscriber_test']; /** * Tests handling of responses by events subscriber. diff --git a/core/modules/system/tests/src/Functional/Rest/ActionJsonBasicAuthTest.php b/core/modules/system/tests/src/Functional/Rest/ActionJsonBasicAuthTest.php index d5b887f8c53a0203dc661d960259d9a9f5a1e0fa..fdc516b9e4abbbea52ade55bbdd5d89728b1fc49 100644 --- a/core/modules/system/tests/src/Functional/Rest/ActionJsonBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Rest/ActionJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ActionJsonBasicAuthTest extends ActionResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Rest/ActionResourceTestBase.php b/core/modules/system/tests/src/Functional/Rest/ActionResourceTestBase.php index bfa962259177fb92c930216b754362eac83cc091..5134e910a6743559b52df96a29a7171b588c5bde 100644 --- a/core/modules/system/tests/src/Functional/Rest/ActionResourceTestBase.php +++ b/core/modules/system/tests/src/Functional/Rest/ActionResourceTestBase.php @@ -11,7 +11,7 @@ abstract class ActionResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Rest/ActionXmlBasicAuthTest.php b/core/modules/system/tests/src/Functional/Rest/ActionXmlBasicAuthTest.php index 9ea85939fe3df4f99959c2d5c32a7d6d366335a6..f11459bc6d0eaed0aa02615ef67768a35dce9a22 100644 --- a/core/modules/system/tests/src/Functional/Rest/ActionXmlBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Rest/ActionXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ActionXmlBasicAuthTest extends ActionResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Rest/MenuJsonBasicAuthTest.php b/core/modules/system/tests/src/Functional/Rest/MenuJsonBasicAuthTest.php index 16f670d9cc3921a3f0657aab90d2cb801323a4d3..1d35d421619d1ef679c55f8609d321a1927a1ca0 100644 --- a/core/modules/system/tests/src/Functional/Rest/MenuJsonBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Rest/MenuJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class MenuJsonBasicAuthTest extends MenuResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Rest/MenuResourceTestBase.php b/core/modules/system/tests/src/Functional/Rest/MenuResourceTestBase.php index 13a74beb3e282c20f72288092dcffa878a889628..91953eb44148ecd916cd3d262c4e149a09b2f46e 100644 --- a/core/modules/system/tests/src/Functional/Rest/MenuResourceTestBase.php +++ b/core/modules/system/tests/src/Functional/Rest/MenuResourceTestBase.php @@ -10,7 +10,7 @@ abstract class MenuResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = []; + public static $modules = []; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Rest/MenuXmlBasicAuthTest.php b/core/modules/system/tests/src/Functional/Rest/MenuXmlBasicAuthTest.php index 63ac36b260fba86b7b2476325f286fcf7e2339c3..0910430042856e1f892f0f3d5cbba8b15bef76eb 100644 --- a/core/modules/system/tests/src/Functional/Rest/MenuXmlBasicAuthTest.php +++ b/core/modules/system/tests/src/Functional/Rest/MenuXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class MenuXmlBasicAuthTest extends MenuResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Routing/RouterPermissionTest.php b/core/modules/system/tests/src/Functional/Routing/RouterPermissionTest.php index 4071d84a1ffa3d85e3e465da921e20ec406f313f..62a511f2e438101d4f60109bc2f2e64c24fce4d7 100644 --- a/core/modules/system/tests/src/Functional/Routing/RouterPermissionTest.php +++ b/core/modules/system/tests/src/Functional/Routing/RouterPermissionTest.php @@ -16,7 +16,7 @@ class RouterPermissionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['router_test']; + public static $modules = ['router_test']; /** * Tests permission requirements on routes. diff --git a/core/modules/system/tests/src/Functional/ServiceProvider/ServiceProviderWebTest.php b/core/modules/system/tests/src/Functional/ServiceProvider/ServiceProviderWebTest.php index 3bd4c0355708bd099dc72295bff11aedc832262c..5e86164f6e6dc2504bac02d91034315b4a9a0d17 100644 --- a/core/modules/system/tests/src/Functional/ServiceProvider/ServiceProviderWebTest.php +++ b/core/modules/system/tests/src/Functional/ServiceProvider/ServiceProviderWebTest.php @@ -16,7 +16,7 @@ class ServiceProviderWebTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['file', 'service_provider_test']; + public static $modules = ['file', 'service_provider_test']; /** * Tests that module service providers get registered to the DIC. diff --git a/core/modules/system/tests/src/Functional/System/AccessDeniedTest.php b/core/modules/system/tests/src/Functional/System/AccessDeniedTest.php index d9f20144cb51edc5203f589a4d3d57e57bd0c9df..6490910bee797dbac765c24f788cb0c631e3efcd 100644 --- a/core/modules/system/tests/src/Functional/System/AccessDeniedTest.php +++ b/core/modules/system/tests/src/Functional/System/AccessDeniedTest.php @@ -21,7 +21,7 @@ class AccessDeniedTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'system_test']; + public static $modules = ['block', 'node', 'system_test']; protected $adminUser; diff --git a/core/modules/system/tests/src/Functional/System/AdminTest.php b/core/modules/system/tests/src/Functional/System/AdminTest.php index ef30042270c82512c301b2df67bd8e4c8ac8a966..7a0b2a3ae6c1af086b8435d9356db6b050f3eb15 100644 --- a/core/modules/system/tests/src/Functional/System/AdminTest.php +++ b/core/modules/system/tests/src/Functional/System/AdminTest.php @@ -31,7 +31,7 @@ class AdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['locale']; + public static $modules = ['locale']; protected function setUp() { // testAdminPages() requires Locale module. diff --git a/core/modules/system/tests/src/Functional/System/CronRunTest.php b/core/modules/system/tests/src/Functional/System/CronRunTest.php index 54f06919fa4a30f1361be65fe0904e586c08dad2..12b86c83e7edbf2acc7b1b9d22a4a392bd9b937f 100644 --- a/core/modules/system/tests/src/Functional/System/CronRunTest.php +++ b/core/modules/system/tests/src/Functional/System/CronRunTest.php @@ -19,7 +19,7 @@ class CronRunTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['common_test', 'common_test_cron_helper', 'automated_cron']; + public static $modules = ['common_test', 'common_test_cron_helper', 'automated_cron']; /** * Test cron runs. diff --git a/core/modules/system/tests/src/Functional/System/DateTimeTest.php b/core/modules/system/tests/src/Functional/System/DateTimeTest.php index 900ada683179dfd23f6e77a9fdf1582ae124ba41..bdecab5d4cdc0ff9fd3f5e248dc86f19d5a3aac5 100644 --- a/core/modules/system/tests/src/Functional/System/DateTimeTest.php +++ b/core/modules/system/tests/src/Functional/System/DateTimeTest.php @@ -19,7 +19,7 @@ class DateTimeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'language', 'field', 'field_ui', 'datetime', 'options']; + public static $modules = ['block', 'node', 'language', 'field', 'field_ui', 'datetime', 'options']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/System/FrontPageTest.php b/core/modules/system/tests/src/Functional/System/FrontPageTest.php index 6d5204b61fdd02ab4bd339e166f18df3884c1329..7f9fc8c1f0711623dafcfe8cbfcd530fc97a7ed3 100644 --- a/core/modules/system/tests/src/Functional/System/FrontPageTest.php +++ b/core/modules/system/tests/src/Functional/System/FrontPageTest.php @@ -17,7 +17,7 @@ class FrontPageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'system_test', 'views']; + public static $modules = ['node', 'system_test', 'views']; /** * The path to a node that is created for testing. diff --git a/core/modules/system/tests/src/Functional/System/HtaccessTest.php b/core/modules/system/tests/src/Functional/System/HtaccessTest.php index bd41b31f6fc6129065879da123825966e1ac59a9..79c4766c4cce9e25aa2d0e398f8492bf141b267d 100644 --- a/core/modules/system/tests/src/Functional/System/HtaccessTest.php +++ b/core/modules/system/tests/src/Functional/System/HtaccessTest.php @@ -16,7 +16,7 @@ class HtaccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'path']; + public static $modules = ['node', 'path']; /** * Get an array of file paths for access testing. diff --git a/core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php b/core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php index d197d4a0c11ead92bc09d30b7b512f0b4b8565d4..931b84ce2422a2ef6d7aa9870319596bcf8a96c2 100644 --- a/core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php +++ b/core/modules/system/tests/src/Functional/System/MainContentFallbackTest.php @@ -16,7 +16,7 @@ class MainContentFallbackTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'system_test']; + public static $modules = ['block', 'system_test']; protected $adminUser; protected $webUser; diff --git a/core/modules/system/tests/src/Functional/System/PageNotFoundTest.php b/core/modules/system/tests/src/Functional/System/PageNotFoundTest.php index 733125c4c80148dd63dbe5ab5a85a686811cdce1..ab9b54b491d03ae9ae960b71525d316078d48371 100644 --- a/core/modules/system/tests/src/Functional/System/PageNotFoundTest.php +++ b/core/modules/system/tests/src/Functional/System/PageNotFoundTest.php @@ -21,7 +21,7 @@ class PageNotFoundTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; protected $adminUser; diff --git a/core/modules/system/tests/src/Functional/System/PageTitleTest.php b/core/modules/system/tests/src/Functional/System/PageTitleTest.php index 53f07bf889d052945a4f324d48769620b63b8c50..8073827fb271a9f51aae8e5ed24d4d1df11b99c2 100644 --- a/core/modules/system/tests/src/Functional/System/PageTitleTest.php +++ b/core/modules/system/tests/src/Functional/System/PageTitleTest.php @@ -19,7 +19,7 @@ class PageTitleTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'test_page_test', 'form_test', 'block']; + public static $modules = ['node', 'test_page_test', 'form_test', 'block']; protected $contentUser; protected $savedTitle; diff --git a/core/modules/system/tests/src/Functional/System/ResponseGeneratorTest.php b/core/modules/system/tests/src/Functional/System/ResponseGeneratorTest.php index 34013d9412467b72e9c3fdfeb5d2682fa6cfd6b6..592364636d954f36159d458f12ae45ace40de25c 100644 --- a/core/modules/system/tests/src/Functional/System/ResponseGeneratorTest.php +++ b/core/modules/system/tests/src/Functional/System/ResponseGeneratorTest.php @@ -17,7 +17,7 @@ class ResponseGeneratorTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['hal', 'rest', 'node', 'basic_auth']; + public static $modules = ['hal', 'rest', 'node', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/System/ShutdownFunctionsTest.php b/core/modules/system/tests/src/Functional/System/ShutdownFunctionsTest.php index 802b9d3fa6bab278dc63637a59042ca27b485831..0859ebd355a6559f5bb8e6f0bb0274eab48dc7d5 100644 --- a/core/modules/system/tests/src/Functional/System/ShutdownFunctionsTest.php +++ b/core/modules/system/tests/src/Functional/System/ShutdownFunctionsTest.php @@ -16,7 +16,7 @@ class ShutdownFunctionsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; protected function tearDown() { // This test intentionally throws an exception in a PHP shutdown function. diff --git a/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php b/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php index eb6202b8ce7adfb714262a1ff25e7017356654ac..389b3f756606c96edc3297012ed15330a56a13f7 100644 --- a/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php +++ b/core/modules/system/tests/src/Functional/System/SiteMaintenanceTest.php @@ -22,7 +22,7 @@ class SiteMaintenanceTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; protected $adminUser; diff --git a/core/modules/system/tests/src/Functional/System/StatusTest.php b/core/modules/system/tests/src/Functional/System/StatusTest.php index 9c99cec069e82f76b9429e2503df30f64693257a..c902a3731f938cf235078b92cfdce060bf2a64aa 100644 --- a/core/modules/system/tests/src/Functional/System/StatusTest.php +++ b/core/modules/system/tests/src/Functional/System/StatusTest.php @@ -17,7 +17,7 @@ class StatusTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['update_test_postupdate']; + public static $modules = ['update_test_postupdate']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php b/core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php index 42af534038b4be0312cfc9c7cb7063a907bb076d..b3f9b310b385dc0d5e5807b677ec80a2362d1d1b 100644 --- a/core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php +++ b/core/modules/system/tests/src/Functional/System/SystemAuthorizeTest.php @@ -16,7 +16,7 @@ class SystemAuthorizeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_test']; + public static $modules = ['system_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/System/ThemeTest.php b/core/modules/system/tests/src/Functional/System/ThemeTest.php index 81377d0a224798e8ac5b315b6d41fd2697dbdbd7..d1d7880c8fdcf1c50b44bc1f0c63af914b08a3af 100644 --- a/core/modules/system/tests/src/Functional/System/ThemeTest.php +++ b/core/modules/system/tests/src/Functional/System/ThemeTest.php @@ -30,7 +30,7 @@ class ThemeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'block', 'file']; + public static $modules = ['node', 'block', 'file']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/System/TokenReplaceWebTest.php b/core/modules/system/tests/src/Functional/System/TokenReplaceWebTest.php index 3c889e8acf1395f89b00309f2b2b91256c2675e2..450f50704552c9a9084e4d953444e949d08fa136 100644 --- a/core/modules/system/tests/src/Functional/System/TokenReplaceWebTest.php +++ b/core/modules/system/tests/src/Functional/System/TokenReplaceWebTest.php @@ -18,7 +18,7 @@ class TokenReplaceWebTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['token_test', 'filter', 'node']; + public static $modules = ['token_test', 'filter', 'node']; /** * Tests a token replacement on an actual website. diff --git a/core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php b/core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php index 0f0c3ef46609ea23c79b44340cb0ade018791e6e..6dca1b38d3cd83df9f3cf6318979394921a3047e 100644 --- a/core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php +++ b/core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php @@ -16,7 +16,7 @@ class EngineNyanCatTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Theme/EngineTwigTest.php b/core/modules/system/tests/src/Functional/Theme/EngineTwigTest.php index 8e3e2b43aab411c2adcb3f7e09c6e7af4d6cf664..07b30ee30ffc49d0e5820f1d1bfbba0994c76c0f 100644 --- a/core/modules/system/tests/src/Functional/Theme/EngineTwigTest.php +++ b/core/modules/system/tests/src/Functional/Theme/EngineTwigTest.php @@ -21,7 +21,7 @@ class EngineTwigTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test', 'twig_theme_test']; + public static $modules = ['theme_test', 'twig_theme_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Theme/FastTest.php b/core/modules/system/tests/src/Functional/Theme/FastTest.php index 188b2361685dcd0bff967573a8ab0d1892c1e352..d8f85f1f4a49c45feeb28f2c137eb14593541c4e 100644 --- a/core/modules/system/tests/src/Functional/Theme/FastTest.php +++ b/core/modules/system/tests/src/Functional/Theme/FastTest.php @@ -16,7 +16,7 @@ class FastTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Theme/HtmlAttributesTest.php b/core/modules/system/tests/src/Functional/Theme/HtmlAttributesTest.php index 4645526ad68c71f682029b7725dcb2fa1b24baa1..5aa4be9cc9d3e7e0bba828043e04f2af02fa8dbb 100644 --- a/core/modules/system/tests/src/Functional/Theme/HtmlAttributesTest.php +++ b/core/modules/system/tests/src/Functional/Theme/HtmlAttributesTest.php @@ -16,7 +16,7 @@ class HtmlAttributesTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; /** * Tests that attributes in the 'html' and 'body' elements can be altered. diff --git a/core/modules/system/tests/src/Functional/Theme/ThemeEarlyInitializationTest.php b/core/modules/system/tests/src/Functional/Theme/ThemeEarlyInitializationTest.php index c95562861460256dcf55b1b40e05a30822559b60..040dfabfce91fee3b72b65db8e52ab431aebaacb 100644 --- a/core/modules/system/tests/src/Functional/Theme/ThemeEarlyInitializationTest.php +++ b/core/modules/system/tests/src/Functional/Theme/ThemeEarlyInitializationTest.php @@ -17,7 +17,7 @@ class ThemeEarlyInitializationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; /** * Test that the theme system can generate output in a request listener. diff --git a/core/modules/system/tests/src/Functional/Theme/ThemeInfoTest.php b/core/modules/system/tests/src/Functional/Theme/ThemeInfoTest.php index 5aa164277a3f2523623b29cb8e420d3f813b3f84..e372bb262a6c7d88dce7b0e11ce44d7fdb4c4ef5 100644 --- a/core/modules/system/tests/src/Functional/Theme/ThemeInfoTest.php +++ b/core/modules/system/tests/src/Functional/Theme/ThemeInfoTest.php @@ -16,7 +16,7 @@ class ThemeInfoTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; /** * The theme handler used in this test for enabling themes. diff --git a/core/modules/system/tests/src/Functional/Theme/ThemeSuggestionsAlterTest.php b/core/modules/system/tests/src/Functional/Theme/ThemeSuggestionsAlterTest.php index ef399cb748b5d8717c80dcf41e149030d48dde9b..5f2668ef0a03678125a0646f62e6064c882e1bd7 100644 --- a/core/modules/system/tests/src/Functional/Theme/ThemeSuggestionsAlterTest.php +++ b/core/modules/system/tests/src/Functional/Theme/ThemeSuggestionsAlterTest.php @@ -17,7 +17,7 @@ class ThemeSuggestionsAlterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Theme/ThemeTest.php b/core/modules/system/tests/src/Functional/Theme/ThemeTest.php index edfce700f2e527db82e05996bdf441735b1684ef..fff7bdfa4e0e1c5e851a1194ef00ef4dfaa739e7 100644 --- a/core/modules/system/tests/src/Functional/Theme/ThemeTest.php +++ b/core/modules/system/tests/src/Functional/Theme/ThemeTest.php @@ -18,7 +18,7 @@ class ThemeTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['theme_test', 'node']; + public static $modules = ['theme_test', 'node']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Theme/ThemeTokenTest.php b/core/modules/system/tests/src/Functional/Theme/ThemeTokenTest.php index 4ecfb10b0d23306d7ddff10d479d795c4ac5d310..1488c5b3e44548388d125e776407a5bc5aef7f2e 100644 --- a/core/modules/system/tests/src/Functional/Theme/ThemeTokenTest.php +++ b/core/modules/system/tests/src/Functional/Theme/ThemeTokenTest.php @@ -16,7 +16,7 @@ class ThemeTokenTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block']; + static public $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Theme/TwigDebugMarkupTest.php b/core/modules/system/tests/src/Functional/Theme/TwigDebugMarkupTest.php index 92c5a4701a81fad8677ed63a58d8f3f6190d2e3f..9fe89fd58b7a99c19589f9e3a6905889d626d534 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigDebugMarkupTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigDebugMarkupTest.php @@ -17,7 +17,7 @@ class TwigDebugMarkupTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test', 'node']; + public static $modules = ['theme_test', 'node']; /** * Tests debug markup added to Twig template output. diff --git a/core/modules/system/tests/src/Functional/Theme/TwigExtensionTest.php b/core/modules/system/tests/src/Functional/Theme/TwigExtensionTest.php index fff60678939ca7a41cf0612a85f0f38834d50563..5e3bc722e3de783fdb50897ccaf77e0a176d6aa9 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigExtensionTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigExtensionTest.php @@ -16,7 +16,7 @@ class TwigExtensionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test', 'twig_extension_test']; + public static $modules = ['theme_test', 'twig_extension_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php b/core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php index af7bea32c53613a656975be73deb1be2de76392f..d2b0b5465d2de5cba354f672aa04e0c260d857b7 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php @@ -16,7 +16,7 @@ class TwigLoaderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['twig_loader_test']; + public static $modules = ['twig_loader_test']; /** * Tests adding an additional twig loader to the loader chain. diff --git a/core/modules/system/tests/src/Functional/Theme/TwigRegistryLoaderTest.php b/core/modules/system/tests/src/Functional/Theme/TwigRegistryLoaderTest.php index d6cd472e61e9eda4ff53424d772b242bc03b1987..2446289984eb5be96bbf13c0f595ac82595c3b9e 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigRegistryLoaderTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigRegistryLoaderTest.php @@ -16,7 +16,7 @@ class TwigRegistryLoaderTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['twig_theme_test', 'block']; + public static $modules = ['twig_theme_test', 'block']; /** * @var \Drupal\Core\Template\TwigEnvironment diff --git a/core/modules/system/tests/src/Functional/Theme/TwigSettingsTest.php b/core/modules/system/tests/src/Functional/Theme/TwigSettingsTest.php index 696e07a63b5dc2b18e5efba52ac56f3c83139bb9..0ad88ce320bb0f5bb528bc5ef83eb093a1a02146 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigSettingsTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigSettingsTest.php @@ -17,7 +17,7 @@ class TwigSettingsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['theme_test']; + public static $modules = ['theme_test']; /** * Ensures Twig template auto reload setting can be overridden. diff --git a/core/modules/system/tests/src/Functional/Theme/TwigTransTest.php b/core/modules/system/tests/src/Functional/Theme/TwigTransTest.php index dba1b7824117bdb5a7040476dc2f5bb831741aef..aeafe7aeb11469f15c47d5a58ed874eb6ac53123 100644 --- a/core/modules/system/tests/src/Functional/Theme/TwigTransTest.php +++ b/core/modules/system/tests/src/Functional/Theme/TwigTransTest.php @@ -17,7 +17,7 @@ class TwigTransTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'theme_test', 'twig_theme_test', 'locale', diff --git a/core/modules/system/tests/src/Functional/Update/DependencyHookInvocationTest.php b/core/modules/system/tests/src/Functional/Update/DependencyHookInvocationTest.php index d6be777acc091c534927b156afac0c4717306199..203d89ef2a70d29219ce6a73bfcabb826fc38a24 100644 --- a/core/modules/system/tests/src/Functional/Update/DependencyHookInvocationTest.php +++ b/core/modules/system/tests/src/Functional/Update/DependencyHookInvocationTest.php @@ -17,7 +17,7 @@ class DependencyHookInvocationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_test_0', 'update_test_1', 'update_test_2']; + public static $modules = ['update_test_0', 'update_test_1', 'update_test_2']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Update/DependencyMissingTest.php b/core/modules/system/tests/src/Functional/Update/DependencyMissingTest.php index b01b82dcc0e12776b88fd10d678b038dd9ea7c59..e11999a46c2312d0a3f5c63cdeec367098398f26 100644 --- a/core/modules/system/tests/src/Functional/Update/DependencyMissingTest.php +++ b/core/modules/system/tests/src/Functional/Update/DependencyMissingTest.php @@ -16,7 +16,7 @@ class DependencyMissingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_test_0', 'update_test_2']; + public static $modules = ['update_test_0', 'update_test_2']; protected function setUp() { // Only install update_test_2.module, even though its updates have a diff --git a/core/modules/system/tests/src/Functional/Update/DependencyOrderingTest.php b/core/modules/system/tests/src/Functional/Update/DependencyOrderingTest.php index 1946b8d88856603321766137fee062a8f1f065b8..0f168aa78f5ca1dc5598e47df74bdee3ef811489 100644 --- a/core/modules/system/tests/src/Functional/Update/DependencyOrderingTest.php +++ b/core/modules/system/tests/src/Functional/Update/DependencyOrderingTest.php @@ -16,7 +16,7 @@ class DependencyOrderingTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_test_0', 'update_test_1', 'update_test_2', 'update_test_3']; + public static $modules = ['update_test_0', 'update_test_1', 'update_test_2', 'update_test_3']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Functional/Update/InvalidUpdateHookTest.php b/core/modules/system/tests/src/Functional/Update/InvalidUpdateHookTest.php index 573be5cbd8f9f72bccda2c897f2c996267275910..85d041e2a48f948ca902cd29d026ca8393ed608e 100644 --- a/core/modules/system/tests/src/Functional/Update/InvalidUpdateHookTest.php +++ b/core/modules/system/tests/src/Functional/Update/InvalidUpdateHookTest.php @@ -17,7 +17,7 @@ class InvalidUpdateHookTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_test_invalid_hook', 'update_script_test', 'dblog']; + public static $modules = ['update_test_invalid_hook', 'update_script_test', 'dblog']; /** * URL for the upgrade script. diff --git a/core/modules/system/tests/src/Functional/Update/UpdateSchemaTest.php b/core/modules/system/tests/src/Functional/Update/UpdateSchemaTest.php index b1e600922bd49ae97f7dd49b2b0c7a3d849047a4..1c2edee065df5391d1780783634fe08b83f3c044 100644 --- a/core/modules/system/tests/src/Functional/Update/UpdateSchemaTest.php +++ b/core/modules/system/tests/src/Functional/Update/UpdateSchemaTest.php @@ -15,7 +15,7 @@ class UpdateSchemaTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['update_test_schema']; + public static $modules = ['update_test_schema']; /** * @var \Drupal\user\UserInterface diff --git a/core/modules/system/tests/src/Functional/Update/UpdateScriptTest.php b/core/modules/system/tests/src/Functional/Update/UpdateScriptTest.php index b723a0980f2f20d666bdfa13b9be69d53fa47215..29d4d08e238b5e720f568517555a6793b2176578 100644 --- a/core/modules/system/tests/src/Functional/Update/UpdateScriptTest.php +++ b/core/modules/system/tests/src/Functional/Update/UpdateScriptTest.php @@ -18,7 +18,7 @@ class UpdateScriptTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_script_test', 'dblog', 'language']; + public static $modules = ['update_script_test', 'dblog', 'language']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Functional/Update/UpdatesWith7xTest.php b/core/modules/system/tests/src/Functional/Update/UpdatesWith7xTest.php index 686ce4f51d67f0f3d051e23a9cf51d143dec89b6..4f536ea5aa4ff3208fc2d14940ba0e4888f8f475 100644 --- a/core/modules/system/tests/src/Functional/Update/UpdatesWith7xTest.php +++ b/core/modules/system/tests/src/Functional/Update/UpdatesWith7xTest.php @@ -17,7 +17,7 @@ class UpdatesWith7xTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['update_test_with_7x']; + public static $modules = ['update_test_with_7x']; /** * The URL for the update page. diff --git a/core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php b/core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php index e4ec16bfe831583af5d3607a4b6725f8142abb27..3597ba46dd2e07ae9429693e1642b78d43141d9a 100644 --- a/core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php +++ b/core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php @@ -14,7 +14,7 @@ class ModalRendererTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'dialog_renderer_test']; + public static $modules = ['system', 'dialog_renderer_test']; /** * Tests that links respect 'data-dialog-renderer' attribute. diff --git a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTest.php b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTest.php index 4537af0dd78752e7166915261b5dc0198e165ddc..c42d777c135eee2bed76ad7b25230752aa25ae9c 100644 --- a/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTest.php +++ b/core/modules/system/tests/src/FunctionalJavascript/OffCanvasTest.php @@ -21,7 +21,7 @@ class OffCanvasTest extends OffCanvasTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'off_canvas_test', ]; diff --git a/core/modules/system/tests/src/FunctionalJavascript/ThemeFormSettingsTest.php b/core/modules/system/tests/src/FunctionalJavascript/ThemeFormSettingsTest.php index e524d24518ae7a649389d2453c1337881a451b31..4f3e9f1d49cbb5233acf95399c7be38ad2fd11ee 100644 --- a/core/modules/system/tests/src/FunctionalJavascript/ThemeFormSettingsTest.php +++ b/core/modules/system/tests/src/FunctionalJavascript/ThemeFormSettingsTest.php @@ -18,7 +18,7 @@ class ThemeFormSettingsTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['file']; + public static $modules = ['file']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Action/ActionTest.php b/core/modules/system/tests/src/Kernel/Action/ActionTest.php index 6a2c7c6120738b251028c5994ef467604339ccbb..6c381d7c80f73bbd3310aff9edd57e625a8411c1 100644 --- a/core/modules/system/tests/src/Kernel/Action/ActionTest.php +++ b/core/modules/system/tests/src/Kernel/Action/ActionTest.php @@ -17,7 +17,7 @@ class ActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'field', 'user', 'action_test']; + public static $modules = ['system', 'field', 'user', 'action_test']; /** * The action manager. diff --git a/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php b/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php index d1a890cbd46064718643ee7023c6dbdf2d984901..7a6d6685e9ed8c0a98209068f4c17bb5189cc4b1 100644 --- a/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php +++ b/core/modules/system/tests/src/Kernel/Block/SystemMenuBlockTest.php @@ -31,7 +31,7 @@ class SystemMenuBlockTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'block', 'menu_test', diff --git a/core/modules/system/tests/src/Kernel/Common/AddFeedTest.php b/core/modules/system/tests/src/Kernel/Common/AddFeedTest.php index 324e6f6709619b881d74186c7dc7298715f6c1fe..1060b30e4a9fa6e6acde861a2ab468e1e3a1cd50 100644 --- a/core/modules/system/tests/src/Kernel/Common/AddFeedTest.php +++ b/core/modules/system/tests/src/Kernel/Common/AddFeedTest.php @@ -15,7 +15,7 @@ class AddFeedTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests attaching feeds with paths, URLs, and titles. diff --git a/core/modules/system/tests/src/Kernel/DateFormatAccessControlHandlerTest.php b/core/modules/system/tests/src/Kernel/DateFormatAccessControlHandlerTest.php index d5767ed579d5a0a0a88a9c986b377e86ed20c21f..01b09dc6bbd4cbb0bd424eb199f7a787f0ea4dcd 100644 --- a/core/modules/system/tests/src/Kernel/DateFormatAccessControlHandlerTest.php +++ b/core/modules/system/tests/src/Kernel/DateFormatAccessControlHandlerTest.php @@ -24,7 +24,7 @@ class DateFormatAccessControlHandlerTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'user', ]; diff --git a/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php b/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php index 33c68cfbce2c246b626063c3feb5c810c3ad7df6..058f83bb933fe2c03724849d80b7da72b9c181c2 100644 --- a/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php +++ b/core/modules/system/tests/src/Kernel/Entity/EntityReferenceSelectionReferenceableTest.php @@ -41,7 +41,7 @@ class EntityReferenceSelectionReferenceableTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'field', 'entity_reference', 'node', 'entity_test']; + public static $modules = ['system', 'user', 'field', 'entity_reference', 'node', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php b/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php index 0eee3185da7d7583aeaae6846b8284a93828e4a4..708d517a321200d83c28e1d1bd5790918fc820c7 100644 --- a/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php +++ b/core/modules/system/tests/src/Kernel/Extension/ModuleHandlerTest.php @@ -17,7 +17,7 @@ class ModuleHandlerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php b/core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php index 5a7992c4963034e6473e6984a23233a02fe85e48..2bc895f8a0276190693c9bc8b1b846381b5e9872 100644 --- a/core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php +++ b/core/modules/system/tests/src/Kernel/Form/FormElementLabelTest.php @@ -15,7 +15,7 @@ class FormElementLabelTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Ensures that attributes can be placed for form element label. diff --git a/core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php b/core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php index 480ccb3b30b180b8433bf3e77723ca21254fcfa0..94026b65414f7f88025e6a81536570bf81f27738 100644 --- a/core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php +++ b/core/modules/system/tests/src/Kernel/Form/FormElementMaxlengthTest.php @@ -18,7 +18,7 @@ class FormElementMaxlengthTest extends KernelTestBase implements FormInterface { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Form/FormObjectTest.php b/core/modules/system/tests/src/Kernel/Form/FormObjectTest.php index 730d1ae4c24e4add1ddd3b9d12829f94c14a0675..36cbb50ca77c4ab0206ea878fd508e15f8291fa3 100644 --- a/core/modules/system/tests/src/Kernel/Form/FormObjectTest.php +++ b/core/modules/system/tests/src/Kernel/Form/FormObjectTest.php @@ -17,7 +17,7 @@ class FormObjectTest extends ConfigFormTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/system/tests/src/Kernel/Form/ProgrammaticTest.php b/core/modules/system/tests/src/Kernel/Form/ProgrammaticTest.php index 58fa338c4f70cef96e8f3cffa2e51dbfec6d28a1..28d056cecd991f1a8b466c9a59d152fdcc3637db 100644 --- a/core/modules/system/tests/src/Kernel/Form/ProgrammaticTest.php +++ b/core/modules/system/tests/src/Kernel/Form/ProgrammaticTest.php @@ -17,7 +17,7 @@ class ProgrammaticTest extends KernelTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * Test the programmatic form submission workflow. diff --git a/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php b/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php index 226c5dc4265718cdea808e3aceaed74e16964feb..052c0afb80028209cb8946a9be4435181f6b2ab6 100644 --- a/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php +++ b/core/modules/system/tests/src/Kernel/Installer/InstallerMissingDependenciesTest.php @@ -14,7 +14,7 @@ class InstallerMissingDependenciesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Verifies that the exception message in the profile step is correct. diff --git a/core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php b/core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php index cc94bc2b5ad5889df883830c18c300b8e5609ec8..f3591538c86c5e453c3fb5df09363f9f9aa012c8 100644 --- a/core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php +++ b/core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php @@ -16,7 +16,7 @@ class UninstallKernelTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'file', 'image', 'media']; + public static $modules = ['system', 'user', 'field', 'file', 'image', 'media']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/MenuAccessControlHandlerTest.php b/core/modules/system/tests/src/Kernel/MenuAccessControlHandlerTest.php index 9291db94f32917b650d1e51d1ddcd579930e48da..6d702c7cb59bc1a406e8565c9c66dfa9a5d819a0 100644 --- a/core/modules/system/tests/src/Kernel/MenuAccessControlHandlerTest.php +++ b/core/modules/system/tests/src/Kernel/MenuAccessControlHandlerTest.php @@ -24,7 +24,7 @@ class MenuAccessControlHandlerTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'user', ]; diff --git a/core/modules/system/tests/src/Kernel/Migrate/d6/MigrateSystemConfigurationTest.php b/core/modules/system/tests/src/Kernel/Migrate/d6/MigrateSystemConfigurationTest.php index c5181de13ed01dd18911be27e256b74f88ff5c05..33c963de3c835c2e582b64f21cfdfbc8a7b2aa5f 100644 --- a/core/modules/system/tests/src/Kernel/Migrate/d6/MigrateSystemConfigurationTest.php +++ b/core/modules/system/tests/src/Kernel/Migrate/d6/MigrateSystemConfigurationTest.php @@ -14,7 +14,7 @@ class MigrateSystemConfigurationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['action', 'file', 'system']; + public static $modules = ['action', 'file', 'system']; protected $expectedConfig = [ 'system.cron' => [ diff --git a/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateGlobalThemeSettingsTest.php b/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateGlobalThemeSettingsTest.php index 73bfef93e1ca780bff3c8c6b0579ce7cad91b905..56ee5b6312f47d12b55264a48915f1407bd658fc 100644 --- a/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateGlobalThemeSettingsTest.php +++ b/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateGlobalThemeSettingsTest.php @@ -14,7 +14,7 @@ class MigrateGlobalThemeSettingsTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateSystemConfigurationTest.php b/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateSystemConfigurationTest.php index dd933317b932eefdf1d46cffdcf0ee8a023f63e3..0216e2dd312eb88e2822804cd2684f9fbc18c9c3 100644 --- a/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateSystemConfigurationTest.php +++ b/core/modules/system/tests/src/Kernel/Migrate/d7/MigrateSystemConfigurationTest.php @@ -11,7 +11,7 @@ */ class MigrateSystemConfigurationTest extends MigrateDrupal7TestBase { - protected static $modules = ['action', 'file', 'system']; + public static $modules = ['action', 'file', 'system']; protected $expectedConfig = [ 'system.authorize' => [ diff --git a/core/modules/system/tests/src/Kernel/PathHooksTest.php b/core/modules/system/tests/src/Kernel/PathHooksTest.php index 497610e3e999265f6b3facd3cc9d6e96fd38fa26..fcbb499979cc261ff78d54080e36bb153d5f1fbb 100644 --- a/core/modules/system/tests/src/Kernel/PathHooksTest.php +++ b/core/modules/system/tests/src/Kernel/PathHooksTest.php @@ -15,7 +15,7 @@ class PathHooksTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + static public $modules = ['system']; /** * Test system_path_*() correctly clears caches. diff --git a/core/modules/system/tests/src/Kernel/PermissionsTest.php b/core/modules/system/tests/src/Kernel/PermissionsTest.php index b423ddb4be4358889ecc0baa6b07a81f144cc554..fdd69f52f5f959b8ca17b42cac49300df74b25ef 100644 --- a/core/modules/system/tests/src/Kernel/PermissionsTest.php +++ b/core/modules/system/tests/src/Kernel/PermissionsTest.php @@ -12,7 +12,7 @@ class PermissionsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'system', 'user', ]; diff --git a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php index 64251b7107cc61bc0877ed635d7409aaacc5e851..c6576019a760d57080b28f32db5c045ac3fc8c5b 100644 --- a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php +++ b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/ExtensionTest.php @@ -15,7 +15,7 @@ class ExtensionTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'migrate_drupal']; + public static $modules = ['system', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php index 3917b37cc0853bf093d5d1d202ad677668859980..0feb9a2b0fe6c2c4784814667f63eae1d855c10a 100644 --- a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php +++ b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/MenuTest.php @@ -16,7 +16,7 @@ class MenuTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'migrate_drupal']; + public static $modules = ['system', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/d7/ThemeSettingsTest.php b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/d7/ThemeSettingsTest.php index 482e4ddf683fa9e254ede70126601e3bd3407cc6..17b54fa1bc21a5e2eb535ad24325f2de5d7ca821 100644 --- a/core/modules/system/tests/src/Kernel/Plugin/migrate/source/d7/ThemeSettingsTest.php +++ b/core/modules/system/tests/src/Kernel/Plugin/migrate/source/d7/ThemeSettingsTest.php @@ -16,7 +16,7 @@ class ThemeSettingsTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'migrate_drupal']; + public static $modules = ['system', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Render/ClassyTest.php b/core/modules/system/tests/src/Kernel/Render/ClassyTest.php index 4708503f2fa460e4bcadcf137a5994a2bcfd61cf..8d1cb854812680b2c5b20f399149516e82bb43a0 100644 --- a/core/modules/system/tests/src/Kernel/Render/ClassyTest.php +++ b/core/modules/system/tests/src/Kernel/Render/ClassyTest.php @@ -14,7 +14,7 @@ class ClassyTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'twig_theme_test']; + public static $modules = ['system', 'twig_theme_test']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Scripts/DbDumpCommandTest.php b/core/modules/system/tests/src/Kernel/Scripts/DbDumpCommandTest.php index 3e6ec4c86c62fbb434d3ca2dda04fc9f6854cdcd..a2ca86486200842a281e82f45901baab3de679a3 100644 --- a/core/modules/system/tests/src/Kernel/Scripts/DbDumpCommandTest.php +++ b/core/modules/system/tests/src/Kernel/Scripts/DbDumpCommandTest.php @@ -17,7 +17,7 @@ class DbDumpCommandTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Scripts/DbImportCommandTest.php b/core/modules/system/tests/src/Kernel/Scripts/DbImportCommandTest.php index e489371db879c384a4ef2a2abe95d8f6253a5ff9..8a292e502d430e0816e6128c1d89041e883ade4d 100644 --- a/core/modules/system/tests/src/Kernel/Scripts/DbImportCommandTest.php +++ b/core/modules/system/tests/src/Kernel/Scripts/DbImportCommandTest.php @@ -17,7 +17,7 @@ class DbImportCommandTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'config', 'dblog', 'menu_link_content', 'link', 'block_content', 'file', 'user']; + public static $modules = ['system', 'config', 'dblog', 'menu_link_content', 'link', 'block_content', 'file', 'user']; /** * Tables that should be part of the exported script. diff --git a/core/modules/system/tests/src/Kernel/System/CronQueueTest.php b/core/modules/system/tests/src/Kernel/System/CronQueueTest.php index f5e13bfe845c4ebc67d97fc912b706ec49c8a53b..649a2c7526581df78e58858a0eee9a1dc0a04fe2 100644 --- a/core/modules/system/tests/src/Kernel/System/CronQueueTest.php +++ b/core/modules/system/tests/src/Kernel/System/CronQueueTest.php @@ -17,7 +17,7 @@ class CronQueueTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'cron_queue_test']; + public static $modules = ['system', 'cron_queue_test']; /** * The database connection. diff --git a/core/modules/system/tests/src/Kernel/System/InfoAlterTest.php b/core/modules/system/tests/src/Kernel/System/InfoAlterTest.php index 3c64d29e6f215938f126a6e7fea1bd4b8322fd43..ebdac3ce0dbf75ce2b97b600ca52d15046a77fe8 100644 --- a/core/modules/system/tests/src/Kernel/System/InfoAlterTest.php +++ b/core/modules/system/tests/src/Kernel/System/InfoAlterTest.php @@ -11,7 +11,7 @@ */ class InfoAlterTest extends KernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests that theme .info.yml data is rebuild after enabling a module. diff --git a/core/modules/system/tests/src/Kernel/System/SystemGetInfoTest.php b/core/modules/system/tests/src/Kernel/System/SystemGetInfoTest.php index e2d79b944d6f2878d7cc9dc242ecac63f9efc67d..cd42fa48707d52214c51312005ac2518e7ffc10a 100644 --- a/core/modules/system/tests/src/Kernel/System/SystemGetInfoTest.php +++ b/core/modules/system/tests/src/Kernel/System/SystemGetInfoTest.php @@ -11,7 +11,7 @@ */ class SystemGetInfoTest extends KernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests system_get_info(). diff --git a/core/modules/system/tests/src/Kernel/Theme/FunctionsTest.php b/core/modules/system/tests/src/Kernel/Theme/FunctionsTest.php index 0d72e4b31a2acc0c2176756ee55d1c6222819290..9b93dff3ff8be77750c667730cf8546d258c2d67 100644 --- a/core/modules/system/tests/src/Kernel/Theme/FunctionsTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/FunctionsTest.php @@ -21,7 +21,7 @@ class FunctionsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['router_test', 'system']; + public static $modules = ['router_test', 'system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php b/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php index 05281901aacc9b09dd412313030bd48e5c6d6866..b9f09ec034bcfd087df0ed0c370eefe1c62fbfbc 100644 --- a/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php @@ -16,7 +16,7 @@ class ThemeTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['theme_test', 'node', 'system']; + public static $modules = ['theme_test', 'node', 'system']; /** * {@inheritdoc} diff --git a/core/modules/system/tests/src/Kernel/Theme/TwigFilterTest.php b/core/modules/system/tests/src/Kernel/Theme/TwigFilterTest.php index c32911ee836508836e2effb4d494c507b2a18754..c1c26dd032ca59afa8e0df9a8cc6539d1c5cfb14 100644 --- a/core/modules/system/tests/src/Kernel/Theme/TwigFilterTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/TwigFilterTest.php @@ -16,7 +16,7 @@ class TwigFilterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['twig_theme_test']; + public static $modules = ['twig_theme_test']; /** * Test Twig "without" filter. diff --git a/core/modules/system/tests/src/Kernel/Theme/TwigNamespaceTest.php b/core/modules/system/tests/src/Kernel/Theme/TwigNamespaceTest.php index 123afb1a628e977ef428bedff6379b689d96f9c0..4ffd2558f0744d5a466f7965453499f8320f9118 100644 --- a/core/modules/system/tests/src/Kernel/Theme/TwigNamespaceTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/TwigNamespaceTest.php @@ -16,7 +16,7 @@ class TwigNamespaceTest extends KernelTestBase { * * @var array */ - protected static $modules = ['twig_theme_test', 'twig_namespace_a', 'twig_namespace_b', 'node']; + public static $modules = ['twig_theme_test', 'twig_namespace_a', 'twig_namespace_b', 'node']; /** * @var \Drupal\Core\Template\TwigEnvironment diff --git a/core/modules/system/tests/src/Kernel/Theme/TwigRawTest.php b/core/modules/system/tests/src/Kernel/Theme/TwigRawTest.php index 5af515115b474c1c637fb9c4fab29e5a12e84aab..970e9d5140431e85d7143fd9b535e862421fc6ba 100644 --- a/core/modules/system/tests/src/Kernel/Theme/TwigRawTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/TwigRawTest.php @@ -16,7 +16,7 @@ class TwigRawTest extends KernelTestBase { * * @var array */ - protected static $modules = ['twig_theme_test']; + public static $modules = ['twig_theme_test']; /** * Tests the raw filter inside an autoescape tag. diff --git a/core/modules/system/tests/src/Kernel/Timezone/TimezoneTest.php b/core/modules/system/tests/src/Kernel/Timezone/TimezoneTest.php index 42ff81c28164377135a7e38947d0c0df48eccd58..8a5385c2fe81e29b9c60860327d86da01e016290 100644 --- a/core/modules/system/tests/src/Kernel/Timezone/TimezoneTest.php +++ b/core/modules/system/tests/src/Kernel/Timezone/TimezoneTest.php @@ -11,7 +11,7 @@ */ class TimezoneTest extends KernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests system_time_zones(). diff --git a/core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php b/core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php index 3ebf35239759e7f964689695f58da1622b1c8f7d..2c8339060486644d75fb359c365153c610633fd1 100644 --- a/core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php +++ b/core/modules/system/tests/src/Kernel/Token/TokenReplaceKernelTestBase.php @@ -28,7 +28,7 @@ abstract class TokenReplaceKernelTestBase extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/src/Tests/RssTest.php b/core/modules/taxonomy/src/Tests/RssTest.php index 5aa212cfa0b2c6ed2ec6e6e113943f43d7fa446b..c4f48846b436e6f2911f25f988cef7fa67143d7d 100644 --- a/core/modules/taxonomy/src/Tests/RssTest.php +++ b/core/modules/taxonomy/src/Tests/RssTest.php @@ -18,7 +18,7 @@ class RssTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['node', 'field_ui', 'views']; + public static $modules = ['node', 'field_ui', 'views']; /** * Vocabulary for testing. diff --git a/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php b/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php index 6701e53cc43ed1246546aa7155a520ba4313a50e..599b6fb2c7a790244aa18e90ba71017c0a23337e 100644 --- a/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php +++ b/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php @@ -14,7 +14,7 @@ class TaxonomyTermIndentationTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Vocabulary for testing. diff --git a/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php b/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php index 4ca7868f7bd1f4ecf4ef9e89d762ed609343ce6e..b4f941da5b666d7f62dc15e9ebaea37b9224f4f3 100644 --- a/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php +++ b/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php @@ -24,7 +24,7 @@ abstract class TaxonomyTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'block']; + public static $modules = ['taxonomy', 'block']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/src/Tests/TermTest.php b/core/modules/taxonomy/src/Tests/TermTest.php index e408adfe25b3ba980bb010568c7a8cbdf04e4a7f..54309c4237e2a8f5089c93fc2c1aea53880a7eaf 100644 --- a/core/modules/taxonomy/src/Tests/TermTest.php +++ b/core/modules/taxonomy/src/Tests/TermTest.php @@ -34,7 +34,7 @@ class TermTest extends TaxonomyTestBase { * * @var string[] */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/src/Tests/TermTranslationTest.php b/core/modules/taxonomy/src/Tests/TermTranslationTest.php index 8e32362a8a17767c431d0d1c8f970126ebf691ef..ccb16f611db5b7471a9252b4d8ca1ab58c16cf3a 100644 --- a/core/modules/taxonomy/src/Tests/TermTranslationTest.php +++ b/core/modules/taxonomy/src/Tests/TermTranslationTest.php @@ -36,7 +36,7 @@ class TermTranslationTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'language', 'content_translation']; + public static $modules = ['taxonomy', 'language', 'content_translation']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/EarlyDateTest.php b/core/modules/taxonomy/tests/src/Functional/EarlyDateTest.php index 0132ab726594fc48a97c02f3b896fbba0a4fef5f..e4490f3431aa778ef91e4f98dc40471f5b2195b6 100644 --- a/core/modules/taxonomy/tests/src/Functional/EarlyDateTest.php +++ b/core/modules/taxonomy/tests/src/Functional/EarlyDateTest.php @@ -18,7 +18,7 @@ class EarlyDateTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['node', 'datetime']; + public static $modules = ['node', 'datetime']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonAnonTest.php b/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonAnonTest.php index 4544f70d9bec93b1107b56d0560bbba3a8f2a963..ee3effc572a23fbb21e26f28c13cafa522eb5807 100644 --- a/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonAnonTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonAnonTest.php @@ -18,7 +18,7 @@ class TermHalJsonAnonTest extends TermResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonBasicAuthTest.php index 574c68f0f6e801f5fd34280c8120c635c12802fa..576615607239298c6332ab0d99c85d64a3456d89 100644 --- a/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Hal/TermHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class TermHalJsonBasicAuthTest extends TermHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonAnonTest.php b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonAnonTest.php index 9ab5e23cc57baf8d53c2f5e583dfcd8a000b39df..e2c1bc86bd90549a80a446756fb856dbef6285c2 100644 --- a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonAnonTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonAnonTest.php @@ -15,7 +15,7 @@ class VocabularyHalJsonAnonTest extends VocabularyResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonBasicAuthTest.php index cf105d0bd28a2bc8cb73d9ad45c41e09a9dc9e6e..d8c17e6d3a0f234a07efa2f28894af783f3a1dcf 100644 --- a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class VocabularyHalJsonBasicAuthTest extends VocabularyResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonCookieTest.php b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonCookieTest.php index dfa861cfd20ec52129bf4d5357149291e6a74c47..13a44dbb93e5960dd4bac2f519da1803f4feffca 100644 --- a/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonCookieTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Hal/VocabularyHalJsonCookieTest.php @@ -15,7 +15,7 @@ class VocabularyHalJsonCookieTest extends VocabularyResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/TermJsonBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Rest/TermJsonBasicAuthTest.php index 21ef548de0da7c6547bb5101efec7c07c42ef994..959e2bb187a9e99eecd6d82b7d75e1e4e9d878d8 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/TermJsonBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/TermJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class TermJsonBasicAuthTest extends TermResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/TermResourceTestBase.php b/core/modules/taxonomy/tests/src/Functional/Rest/TermResourceTestBase.php index 681cef374de83911616fa893c357220d39894d99..3a1a5a241d033153188b8afb6c2cb448abc59456 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/TermResourceTestBase.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/TermResourceTestBase.php @@ -16,7 +16,7 @@ abstract class TermResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'path']; + public static $modules = ['taxonomy', 'path']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/TermXmlBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Rest/TermXmlBasicAuthTest.php index 97abbc7b425cc285603fea78cf914ab636b89781..8eacb85c1c08499a88f5dfc5973c17bcb6922503 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/TermXmlBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/TermXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class TermXmlBasicAuthTest extends TermResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyJsonBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyJsonBasicAuthTest.php index bab82437048ad1adfb4ef09cc997f69aee31787d..ec0d67e2b2ed650f0184f18d3c545685718db203 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyJsonBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class VocabularyJsonBasicAuthTest extends VocabularyResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyResourceTestBase.php b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyResourceTestBase.php index 90781ae5eb9c0bb4618a2393b0ee4fe7dd0b0118..b1e87d986e210f5b08bd6c09ddb5c0e36ffd1148 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyResourceTestBase.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyResourceTestBase.php @@ -10,7 +10,7 @@ abstract class VocabularyResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyXmlBasicAuthTest.php b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyXmlBasicAuthTest.php index 25b4bad952a32465d8f1493019b16a0243d58336..52b3741a9aff8c1bea0e85ad01fdb22dbcf0630c 100644 --- a/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyXmlBasicAuthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Rest/VocabularyXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class VocabularyXmlBasicAuthTest extends VocabularyResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyImageTest.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyImageTest.php index 8d83097a6c0a21e6d187553ad35e32f7ef4815e4..fc2fe6243232ee9958a401cf6e297aecac4f5dbf 100644 --- a/core/modules/taxonomy/tests/src/Functional/TaxonomyImageTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyImageTest.php @@ -32,7 +32,7 @@ class TaxonomyImageTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['image']; + public static $modules = ['image']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyQueryAlterTest.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyQueryAlterTest.php index b18ad9ff699b76ff41f1482625d3f907934cd914..81bd6796b53d4b6a117ab16232a296cfbd44d1f5 100644 --- a/core/modules/taxonomy/tests/src/Functional/TaxonomyQueryAlterTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyQueryAlterTest.php @@ -18,7 +18,7 @@ class TaxonomyQueryAlterTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'taxonomy_test']; + public static $modules = ['taxonomy', 'taxonomy_test']; /** * Tests that appropriate tags are added when querying the database. diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyTermPagerTest.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyTermPagerTest.php index 0a72651fa7548b57244ef9ea50ecb20af0523a99..66782f3e7ab910354ee964ec556374d7b470078a 100644 --- a/core/modules/taxonomy/tests/src/Functional/TaxonomyTermPagerTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyTermPagerTest.php @@ -14,7 +14,7 @@ class TaxonomyTermPagerTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Vocabulary for testing. diff --git a/core/modules/taxonomy/tests/src/Functional/TaxonomyTestBase.php b/core/modules/taxonomy/tests/src/Functional/TaxonomyTestBase.php index 51df0af52ff61119b054f553f5345132b85c4273..fdbfccd30341c1badd0624b0f0f28023f71f37be 100644 --- a/core/modules/taxonomy/tests/src/Functional/TaxonomyTestBase.php +++ b/core/modules/taxonomy/tests/src/Functional/TaxonomyTestBase.php @@ -18,7 +18,7 @@ abstract class TaxonomyTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'block']; + public static $modules = ['taxonomy', 'block']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php b/core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php index 7b52311ed2e63e4a240d4f49360af0fd3f999000..378d02c755f0790aa0aeaac52b255a3c00719162 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermCacheTagsTest.php @@ -16,7 +16,7 @@ class TermCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php b/core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php index 0581b090a940001ed63dd21d5386c55519c01d0f..997e698b9eff62a431c3edbaf6e2eed1627f763e 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php @@ -12,7 +12,7 @@ class TermContextualLinksTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'contextual', ]; diff --git a/core/modules/taxonomy/tests/src/Functional/TermEntityReferenceTest.php b/core/modules/taxonomy/tests/src/Functional/TermEntityReferenceTest.php index 350982271ec7fdc36404072028892768f31d6a5f..9d4522ec71edee1833880b562ed779053ca5b718 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermEntityReferenceTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermEntityReferenceTest.php @@ -17,7 +17,7 @@ class TermEntityReferenceTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['entity_reference_test', 'entity_test']; + public static $modules = ['entity_reference_test', 'entity_test']; /** * Tests an entity reference field restricted to a single vocabulary. diff --git a/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php b/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php index 5aca546d0974d47396dfcaa95976165e53510fad..83ab04d5e13ef19b82fd106295d44cdd1600a454 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermIndexTest.php @@ -16,7 +16,7 @@ class TermIndexTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * Vocabulary for testing. diff --git a/core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php b/core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php index 8de70dcaa98dbd4e80cdc1d3244f5b54d84e7226..f60e77e534a644d5ae1975d73b648511aec225e7 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermLanguageTest.php @@ -12,7 +12,7 @@ */ class TermLanguageTest extends TaxonomyTestBase { - protected static $modules = ['language']; + public static $modules = ['language']; /** * Vocabulary for testing. diff --git a/core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php b/core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php index bb18e3159c414799da8cc7a48adf7dbc8e314bde..236ac70553353903ce0cad4b45ad0533533ac8ba 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermTranslationFieldViewTest.php @@ -39,7 +39,7 @@ class TermTranslationFieldViewTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'taxonomy']; + public static $modules = ['language', 'content_translation', 'taxonomy']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php b/core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php index f0681734c714487b30a85939e8a3b2a061435f13..0d24b6990e7bf9af33618ff5f3cedafbba3a6970 100644 --- a/core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php +++ b/core/modules/taxonomy/tests/src/Functional/TermTranslationUITest.php @@ -25,7 +25,7 @@ class TermTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'taxonomy']; + public static $modules = ['language', 'content_translation', 'taxonomy']; protected function setUp() { $this->entityTypeId = 'taxonomy_term'; diff --git a/core/modules/taxonomy/tests/src/Functional/Views/ArgumentValidatorTermTest.php b/core/modules/taxonomy/tests/src/Functional/Views/ArgumentValidatorTermTest.php index 16d1a2b923d91450d46c9669b99d79d7c90e89e9..8260565e36c6ff399210ea99fe086779847ddce8 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/ArgumentValidatorTermTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/ArgumentValidatorTermTest.php @@ -38,7 +38,7 @@ class ArgumentValidatorTermTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'views_test_config']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'views_test_config']; /** * Views used by this test. diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php index c68817801a06a37cf774043ecddb8741920b3579..1b8bbcaa517e9af1dbb38d4db2f97ea9a73bf32a 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyFieldFilterTest.php @@ -22,7 +22,7 @@ class TaxonomyFieldFilterTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'taxonomy', 'taxonomy_test_views', 'text', 'views', 'node']; + public static $modules = ['language', 'taxonomy', 'taxonomy_test_views', 'text', 'views', 'node']; /** * Views used by this test. diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidFilterTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidFilterTest.php index b459304dae5bbcac5971475461209aecfa24a9be..6fd1eba865874c3b2544b8717a70824dfbfd0a05 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidFilterTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidFilterTest.php @@ -19,7 +19,7 @@ class TaxonomyIndexTidFilterTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php index c7874b5b271d42087f80becb03b314957f10800d..992e5bee18ccd3aefaf90241851f81789b8c68a4 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyIndexTidUiTest.php @@ -31,7 +31,7 @@ class TaxonomyIndexTidUiTest extends UITestBase { * * @var array */ - protected static $modules = ['node', 'taxonomy', 'views', 'views_ui', 'taxonomy_test_views']; + public static $modules = ['node', 'taxonomy', 'views', 'views_ui', 'taxonomy_test_views']; /** * A nested array of \Drupal\taxonomy\TermInterface objects. diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyParentUITest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyParentUITest.php index 40985e7cebafba82d196349463e33dc8b048d29f..d8ab8ea121165cd4a3b72a0123d2aa5d57ce0044 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyParentUITest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyParentUITest.php @@ -25,7 +25,7 @@ class TaxonomyParentUITest extends UITestBase { * * @var array */ - protected static $modules = ['taxonomy', 'taxonomy_test_views']; + public static $modules = ['taxonomy', 'taxonomy_test_views']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermArgumentDepthTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermArgumentDepthTest.php index c37b9a527de243bb4488329e1a0247165e4b1fd5..3505784a078599c9455b31dbb5e06280ed982ff9 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermArgumentDepthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermArgumentDepthTest.php @@ -12,7 +12,7 @@ class TaxonomyTermArgumentDepthTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php index 3b065314b7dbcdb30acb39f88a38d50d884f6dcd..4d7a4fdf03c69cab15c92409f959c88f4cd1cb2f 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermFilterDepthTest.php @@ -14,7 +14,7 @@ class TaxonomyTermFilterDepthTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'views', 'node']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php index e3df7ad6c85468317b631d993e4bd5bd7cf9bf20..fc0cddce484b6c4f45ad959d53fa4ad9acbb864d 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTermViewTest.php @@ -21,7 +21,7 @@ class TaxonomyTermViewTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'views']; + public static $modules = ['taxonomy', 'views']; /** * An user with permissions to administer taxonomy. diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTestBase.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTestBase.php index 0eb4cbf46b89ecfd671fb4d863390aabd18e3dd2..a2d8ec14a380545f77b3c81c98bfdd5122b9a215 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTestBase.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyTestBase.php @@ -22,7 +22,7 @@ abstract class TaxonomyTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'taxonomy_test_views']; + public static $modules = ['taxonomy', 'taxonomy_test_views']; /** * Stores the nodes used for the different tests. diff --git a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyVocabularyArgumentTest.php b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyVocabularyArgumentTest.php index 721df17d7b5774b8e90cba16893c9414eaa30a0d..8b1d58cf29e6c706478b85586c88f257fb40a98f 100644 --- a/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyVocabularyArgumentTest.php +++ b/core/modules/taxonomy/tests/src/Functional/Views/TaxonomyVocabularyArgumentTest.php @@ -14,7 +14,7 @@ class TaxonomyVocabularyArgumentTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'views']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'views']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularyCrudTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularyCrudTest.php index 0243e209fc32bb289db59d2d1f9f5685c3eb43ca..1fb01630bf67790746c5cf05171c56500e213b66 100644 --- a/core/modules/taxonomy/tests/src/Functional/VocabularyCrudTest.php +++ b/core/modules/taxonomy/tests/src/Functional/VocabularyCrudTest.php @@ -18,7 +18,7 @@ class VocabularyCrudTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['field_test', 'taxonomy_crud']; + public static $modules = ['field_test', 'taxonomy_crud']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularyLanguageTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularyLanguageTest.php index fd607aba71f32011ac814e5e206a70c0ceb2a923..c94d64e287d80ce3edb31d0f7f2c141332f05b65 100644 --- a/core/modules/taxonomy/tests/src/Functional/VocabularyLanguageTest.php +++ b/core/modules/taxonomy/tests/src/Functional/VocabularyLanguageTest.php @@ -12,7 +12,7 @@ */ class VocabularyLanguageTest extends TaxonomyTestBase { - protected static $modules = ['language']; + public static $modules = ['language']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularyPermissionsTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularyPermissionsTest.php index 8690cfbe1eb9fd214507ac8297c00934bf87aea2..bb94a96da67a50761c6e71b82dd26d58f399d740 100644 --- a/core/modules/taxonomy/tests/src/Functional/VocabularyPermissionsTest.php +++ b/core/modules/taxonomy/tests/src/Functional/VocabularyPermissionsTest.php @@ -16,7 +16,7 @@ class VocabularyPermissionsTest extends TaxonomyTestBase { * * @var array */ - protected static $modules = ['help']; + public static $modules = ['help']; protected function setUp() { parent::setUp(); diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularySerializationTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularySerializationTest.php index 16621b3390dbc188b16feab00dfdf05d5fcf61e5..b9aba8a7989e1509ff42ed273c57bd34a88252d6 100644 --- a/core/modules/taxonomy/tests/src/Functional/VocabularySerializationTest.php +++ b/core/modules/taxonomy/tests/src/Functional/VocabularySerializationTest.php @@ -21,7 +21,7 @@ class VocabularySerializationTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'vocabulary_serialization_test']; + public static $modules = ['taxonomy', 'vocabulary_serialization_test']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php b/core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php index 6807297238130976626998c8367bbbf3e49a0df9..aa98ac33300b6b83b304b7d3f1c744666297c328 100644 --- a/core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Functional/VocabularyTranslationTest.php @@ -12,7 +12,7 @@ class VocabularyTranslationTest extends TaxonomyTestBase { /** * {@inheritdoc} */ - protected static $modules = ['content_translation', 'language']; + public static $modules = ['content_translation', 'language']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyConfigsTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyConfigsTest.php index e0480170b1424ee729c0e72ebac0b78c6667b52e..92ebe5926ae09363c77eb97402d4f033ca36b88a 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyConfigsTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyConfigsTest.php @@ -17,7 +17,7 @@ class MigrateTaxonomyConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyTermStubTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyTermStubTest.php index 1d340fc155b98302a8887ca1411b11498be38197..2da51e4a43933d5ee5e3721c35d5b04fda84d5ad 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyTermStubTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/MigrateTaxonomyTermStubTest.php @@ -20,7 +20,7 @@ class MigrateTaxonomyTermStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'text', 'taxonomy_term_stub_test']; + public static $modules = ['taxonomy', 'text', 'taxonomy_term_stub_test']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php index c14f39859cace72339cfd8330d179499037ea022..75c79241e0c8eeed939f7cc60dcf9cebbb39be58 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyTermTest.php @@ -15,7 +15,7 @@ class MigrateTaxonomyTermTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php index cf2a353536ac6df7e16ff86baa4d5485d0ac6127..1584c5cc738afbea0ce6f0a6c16e36ea990e4083 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTest.php @@ -15,7 +15,7 @@ class MigrateTaxonomyVocabularyTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php index 176344b36ffafae92015e9bab84f61594502728b..9d7176c4975841cfa6bee2ee8f4fbafa7f23c230 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTaxonomyVocabularyTranslationTest.php @@ -14,7 +14,7 @@ class MigrateTaxonomyVocabularyTranslationTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'config_translation', 'language', 'taxonomy', diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeRevisionTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeRevisionTest.php index 4f98ed3b65011726bebddc0a7e6063848ca416e7..25544486ab2862e5f72f49f030b2928c6084ba33 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeRevisionTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeRevisionTest.php @@ -14,7 +14,7 @@ class MigrateTermNodeRevisionTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'menu_ui']; + public static $modules = ['taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php index eb8e0922bbcc0d267693567f61d1c0e59c232bf0..8e7d13de0e30d051a4198cb02333d3c407759d53 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateTermNodeTest.php @@ -15,7 +15,7 @@ class MigrateTermNodeTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'menu_ui']; + public static $modules = ['taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php index 74de1b630d6758374413858d1b826cb4e2f266a1..6b6ee945c6acb9d3cdb6719aea9dc3bef8d5e5e9 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityDisplayTest.php @@ -15,7 +15,7 @@ class MigrateVocabularyEntityDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'taxonomy', 'menu_ui']; + public static $modules = ['field', 'taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php index 1e332ca8219f2af3e251fcd0d4acf5de693b7b79..7cfc306a98cd397571a634ee24bd545296974467 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyEntityFormDisplayTest.php @@ -15,7 +15,7 @@ class MigrateVocabularyEntityFormDisplayTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'menu_ui']; + public static $modules = ['taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php index fdbdb46c9f3193cbc7752e69b1e45e99f748287c..77cb3e9069d8f5a3a12770994a5891cec730aced 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldInstanceTest.php @@ -15,7 +15,7 @@ class MigrateVocabularyFieldInstanceTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'menu_ui']; + public static $modules = ['taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php index 9cdb0c323b5df3676e1705f93ac603ddf719429a..fa5c7f3a16461df7769e5e7413b09f736fdaa661 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d6/MigrateVocabularyFieldTest.php @@ -15,7 +15,7 @@ class MigrateVocabularyFieldTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'menu_ui']; + public static $modules = ['taxonomy', 'menu_ui']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php index c7b5738149b63dd2403087756181d8b9414b7e24..e8c6fefa8b2fd3f03d45fbb154587c7b72061deb 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateNodeTaxonomyTest.php @@ -14,7 +14,7 @@ */ class MigrateNodeTaxonomyTest extends MigrateDrupal7TestBase { - protected static $modules = [ + public static $modules = [ 'datetime', 'field', 'filter', diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php index 269a8a12d9c38e0bbc81e4c5a97122a7e3185439..e4246594a91d48ff37ec49b3331027702aad3dcd 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyTermTest.php @@ -13,7 +13,7 @@ */ class MigrateTaxonomyTermTest extends MigrateDrupal7TestBase { - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'forum', diff --git a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php index 10220bd34dd223cc49f0ec08c1d38fe02ec93f64..5663ea6cda61666516c76f221342d77c5e60b6c0 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Migrate/d7/MigrateTaxonomyVocabularyTest.php @@ -16,7 +16,7 @@ class MigrateTaxonomyVocabularyTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/PendingRevisionTest.php b/core/modules/taxonomy/tests/src/Kernel/PendingRevisionTest.php index ed9acf609bd5053a38082e3f440a525c91c9492d..e4b2cc051c8886c8306777704b4a1d7b7df24c85 100644 --- a/core/modules/taxonomy/tests/src/Kernel/PendingRevisionTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/PendingRevisionTest.php @@ -20,7 +20,7 @@ class PendingRevisionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'node', 'user', 'text', 'field', 'system']; + public static $modules = ['taxonomy', 'node', 'user', 'text', 'field', 'system']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermNodeTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermNodeTest.php index 16a365a2afad88abb7b344f10dda1fc9936ae96b..3084acffae6de0079fb6177b9eafcb549c03c314 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermNodeTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermNodeTest.php @@ -15,7 +15,7 @@ class TermNodeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermSourceWithVocabularyFilterTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermSourceWithVocabularyFilterTest.php index bb60f9c4b9f6c9bc503d7a4bda1185cbcb06c983..42fa75d0fff2cab4f8fccd88a8db0f76a5de69c4 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermSourceWithVocabularyFilterTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermSourceWithVocabularyFilterTest.php @@ -13,7 +13,7 @@ class TermSourceWithVocabularyFilterTest extends TermTest { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php index c0b50cb0f670f762ac1c170eaf21fb2b9d97a50b..d1ac238ae26fdf4bff348c1ede6c7b9a1433f8d0 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTest.php @@ -15,7 +15,7 @@ class TermTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTranslationTest.php index cafbc813b95f0b3e2b22127891233cb797d4e25a..af69e30e3740b69bbc33993150419b4eb50daadd 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/TermTranslationTest.php @@ -15,7 +15,7 @@ class TermTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTest.php index 4b81b6c3fb87dcbc175142d81018dd840fc80c55..a98b2985ed587a417478b2f5678999e99daaf5ec 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTest.php @@ -16,7 +16,7 @@ class VocabularyTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTranslationTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTranslationTest.php index 1c5522c5fee0d8bfb2dbd17bd439a551c0026176..e54eb6ee3f7c309dd3773d1cef69784d10658df6 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTranslationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyTranslationTest.php @@ -15,7 +15,7 @@ class VocabularyTranslationTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermSourceWithVocabularyFilterTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermSourceWithVocabularyFilterTest.php index 274d586d741961ec1451da80a86b88897d1f932e..671bb554ed533e74fa71c31232e0f9b426254faa 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermSourceWithVocabularyFilterTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermSourceWithVocabularyFilterTest.php @@ -13,7 +13,7 @@ class TermSourceWithVocabularyFilterTest extends TermTest { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php index ab2cb58d51cd8d4af8c3412a86b2c9e931946df0..ef002cfec89b3270d9e7a4522d17e0f8e4e0985a 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/TermTest.php @@ -15,7 +15,7 @@ class TermTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/VocabularyTest.php b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/VocabularyTest.php index fb78c547d738ac2a93992303ad9fc8db4d421cfc..4d1975ceb418c5a4e779048c126f9dc72a24d876 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/VocabularyTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d7/VocabularyTest.php @@ -15,7 +15,7 @@ class VocabularyTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'migrate_drupal']; + public static $modules = ['taxonomy', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/TermKernelTest.php b/core/modules/taxonomy/tests/src/Kernel/TermKernelTest.php index a9b1f5df20dbdb7d9098c26d8329692fef9fe07c..3d8bff80a3771405236418b1ba96ce931bbc647b 100644 --- a/core/modules/taxonomy/tests/src/Kernel/TermKernelTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/TermKernelTest.php @@ -18,7 +18,7 @@ class TermKernelTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['filter', 'taxonomy', 'text', 'user']; + public static $modules = ['filter', 'taxonomy', 'text', 'user']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/TermValidationTest.php b/core/modules/taxonomy/tests/src/Kernel/TermValidationTest.php index 97784673dde0c9bd7b667d2f24202c1fc830de72..437a305f6f567a5de3f0af7c7df8226de8a5edad 100644 --- a/core/modules/taxonomy/tests/src/Kernel/TermValidationTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/TermValidationTest.php @@ -16,7 +16,7 @@ class TermValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldVidTest.php b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldVidTest.php index 2bd6005d2014ba3b1c3325b6d765f8e1a0245adb..2fde283e32512efd5b342c6903e04293b7d92335 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldVidTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyFieldVidTest.php @@ -24,7 +24,7 @@ class TaxonomyFieldVidTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'taxonomy_test_views', 'text', 'filter']; + public static $modules = ['taxonomy', 'taxonomy_test_views', 'text', 'filter']; /** * Views used by this test. diff --git a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTestBase.php b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTestBase.php index a1a310b7aa9aedfef3e434a6e5dc1a0df0334629..a9f4c474be1cd322c7d76357c33b76264b140cec 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTestBase.php +++ b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyTestBase.php @@ -32,7 +32,7 @@ abstract class TaxonomyTestBase extends ViewsKernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'taxonomy', 'taxonomy_test_views', 'text', diff --git a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyViewsFieldAccessTest.php b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyViewsFieldAccessTest.php index 2d7b960e39542f70df6f6bb95a7151d0a862bd26..e62232befd190ea750ceebc719045fe7867f2201 100644 --- a/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyViewsFieldAccessTest.php +++ b/core/modules/taxonomy/tests/src/Kernel/Views/TaxonomyViewsFieldAccessTest.php @@ -16,7 +16,7 @@ class TaxonomyViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['taxonomy', 'text', 'entity_test']; + public static $modules = ['taxonomy', 'text', 'entity_test']; /** * {@inheritdoc} diff --git a/core/modules/telephone/tests/src/Functional/TelephoneFieldTest.php b/core/modules/telephone/tests/src/Functional/TelephoneFieldTest.php index b1f52471d78818aae5a1ef434fd6bad2bb5ef7c1..75e626f66dd5c3b6f592b4705fc70cc7bea9f7c1 100644 --- a/core/modules/telephone/tests/src/Functional/TelephoneFieldTest.php +++ b/core/modules/telephone/tests/src/Functional/TelephoneFieldTest.php @@ -18,7 +18,7 @@ class TelephoneFieldTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'field', 'node', 'telephone', diff --git a/core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php b/core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php index 11b65120daf16857d0330115e92c83a9fba1c38f..72269409e4387b6e6c6e08ef964cac5c7d2193f8 100644 --- a/core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php +++ b/core/modules/telephone/tests/src/Kernel/TelephoneItemTest.php @@ -21,7 +21,7 @@ class TelephoneItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['telephone']; + public static $modules = ['telephone']; protected function setUp() { parent::setUp(); diff --git a/core/modules/text/tests/src/FunctionalJavascript/TextareaWithSummaryTest.php b/core/modules/text/tests/src/FunctionalJavascript/TextareaWithSummaryTest.php index 5ce2083b54d55d21975679b1184e504309df8397..88153abce5b43787694b5352d99e8b3fb8fb90bd 100644 --- a/core/modules/text/tests/src/FunctionalJavascript/TextareaWithSummaryTest.php +++ b/core/modules/text/tests/src/FunctionalJavascript/TextareaWithSummaryTest.php @@ -15,7 +15,7 @@ class TextareaWithSummaryTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['text', 'node']; + public static $modules = ['text', 'node']; /** * {@inheritdoc} diff --git a/core/modules/text/tests/src/Kernel/TextFormatterTest.php b/core/modules/text/tests/src/Kernel/TextFormatterTest.php index d75bcc40c6d5abd4e8098bb8c6a7390cb2c61d9a..c75ac34bc439bcf692261e3208b5f85acff8eb10 100644 --- a/core/modules/text/tests/src/Kernel/TextFormatterTest.php +++ b/core/modules/text/tests/src/Kernel/TextFormatterTest.php @@ -33,7 +33,7 @@ class TextFormatterTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['text']; + public static $modules = ['text']; /** * {@inheritdoc} diff --git a/core/modules/text/tests/src/Kernel/TextSummaryTest.php b/core/modules/text/tests/src/Kernel/TextSummaryTest.php index 25641b419787116759c61dfa85cb5c2c13fdbb28..2eeaf2de0be6aaf0eaae158bf6eafa3c22c89af3 100644 --- a/core/modules/text/tests/src/Kernel/TextSummaryTest.php +++ b/core/modules/text/tests/src/Kernel/TextSummaryTest.php @@ -12,7 +12,7 @@ */ class TextSummaryTest extends KernelTestBase { - protected static $modules = ['system', 'user', 'filter', 'text']; + public static $modules = ['system', 'user', 'filter', 'text']; protected function setUp() { parent::setUp(); diff --git a/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php b/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php index 70c2af1a9904e1a8c13a321983e5d41ddd5f1af0..195250abb9063aaa190a9e335fc5d2e960ba6a85 100644 --- a/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php +++ b/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php @@ -21,7 +21,7 @@ class TextWithSummaryItemTest extends FieldKernelTestBase { * * @var array */ - protected static $modules = ['filter']; + public static $modules = ['filter']; /** * Field storage entity. diff --git a/core/modules/toolbar/tests/src/Functional/ToolbarAdminMenuTest.php b/core/modules/toolbar/tests/src/Functional/ToolbarAdminMenuTest.php index 400cb974ba6127c7928537f55ae38a33a3a3ad01..9585c86eb4a18475202b7b5335b86faaa3f86e14 100644 --- a/core/modules/toolbar/tests/src/Functional/ToolbarAdminMenuTest.php +++ b/core/modules/toolbar/tests/src/Functional/ToolbarAdminMenuTest.php @@ -54,7 +54,7 @@ class ToolbarAdminMenuTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'block', 'menu_ui', 'user', 'taxonomy', 'toolbar', 'language', 'test_page_test', 'locale']; + public static $modules = ['node', 'block', 'menu_ui', 'user', 'taxonomy', 'toolbar', 'language', 'test_page_test', 'locale']; protected function setUp() { parent::setUp(); diff --git a/core/modules/toolbar/tests/src/Functional/ToolbarCacheContextsTest.php b/core/modules/toolbar/tests/src/Functional/ToolbarCacheContextsTest.php index c114978d7b018bdfac41e23a0c87f9860b4c4653..0232545473217c8d7fa4f5c3f34db24161b86fac 100644 --- a/core/modules/toolbar/tests/src/Functional/ToolbarCacheContextsTest.php +++ b/core/modules/toolbar/tests/src/Functional/ToolbarCacheContextsTest.php @@ -21,7 +21,7 @@ class ToolbarCacheContextsTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['toolbar', 'test_page_test']; + public static $modules = ['toolbar', 'test_page_test']; /** * An authenticated user to use for testing. diff --git a/core/modules/toolbar/tests/src/Functional/ToolbarHookToolbarTest.php b/core/modules/toolbar/tests/src/Functional/ToolbarHookToolbarTest.php index 19ebfc62e37646aa5c6aaa7bdfa72a77f8869871..f3d3ce6118db27e2dac1d28dfc5f1fd07f7cdbd8 100644 --- a/core/modules/toolbar/tests/src/Functional/ToolbarHookToolbarTest.php +++ b/core/modules/toolbar/tests/src/Functional/ToolbarHookToolbarTest.php @@ -23,7 +23,7 @@ class ToolbarHookToolbarTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['toolbar', 'toolbar_test', 'test_page_test']; + public static $modules = ['toolbar', 'toolbar_test', 'test_page_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/toolbar/tests/src/Functional/ToolbarMenuTranslationTest.php b/core/modules/toolbar/tests/src/Functional/ToolbarMenuTranslationTest.php index a954a85c3fdb4e644f97e4ae5ce9248f7c73821f..995d49ee386991a9ced937ac1cf64e007c679e07 100644 --- a/core/modules/toolbar/tests/src/Functional/ToolbarMenuTranslationTest.php +++ b/core/modules/toolbar/tests/src/Functional/ToolbarMenuTranslationTest.php @@ -23,7 +23,7 @@ class ToolbarMenuTranslationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['toolbar', 'toolbar_test', 'locale', 'locale_test']; + public static $modules = ['toolbar', 'toolbar_test', 'locale', 'locale_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php b/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php index 1ed7b6cb114efd7ffddadb076c4a9fcbf6c8c777..fd163985e75068ffcde1865bae949ea11d8bccd4 100644 --- a/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php +++ b/core/modules/toolbar/tests/src/FunctionalJavascript/ToolbarIntegrationTest.php @@ -14,7 +14,7 @@ class ToolbarIntegrationTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['toolbar', 'node']; + public static $modules = ['toolbar', 'node']; /** * Tests if the toolbar can be toggled with JavaScript. diff --git a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonAnonTest.php b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonAnonTest.php index cf112a2fa8083ca2ad810fe3b4e9e7ea49cbcc91..1461fc1a88d9ba0847c65b558f4d087d0feb352c 100644 --- a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonAnonTest.php +++ b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonAnonTest.php @@ -15,7 +15,7 @@ class TourHalJsonAnonTest extends TourResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonBasicAuthTest.php b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonBasicAuthTest.php index 8d65c30e3f805ac3fc0afa138b6ed69120fd77de..c79f55e48e671bfaafb8ce1a759c9f793a95833b 100644 --- a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonBasicAuthTest.php +++ b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class TourHalJsonBasicAuthTest extends TourResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonCookieTest.php b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonCookieTest.php index e808503f2f63996f9eacd7ba10245faa9fbef935..6a7737db0810e53edd8bd225599226f60b2d6537 100644 --- a/core/modules/tour/tests/src/Functional/Hal/TourHalJsonCookieTest.php +++ b/core/modules/tour/tests/src/Functional/Hal/TourHalJsonCookieTest.php @@ -15,7 +15,7 @@ class TourHalJsonCookieTest extends TourResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/Rest/TourJsonBasicAuthTest.php b/core/modules/tour/tests/src/Functional/Rest/TourJsonBasicAuthTest.php index 3a1215e5c1aa45ae808f127abdae7554b0de75d4..fb1ff6995c4b9a4463e2e5f785128cb06271a245 100644 --- a/core/modules/tour/tests/src/Functional/Rest/TourJsonBasicAuthTest.php +++ b/core/modules/tour/tests/src/Functional/Rest/TourJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class TourJsonBasicAuthTest extends TourResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/Rest/TourResourceTestBase.php b/core/modules/tour/tests/src/Functional/Rest/TourResourceTestBase.php index 157dbd4ad67dd147f2c757bb3f258ddac26c93d8..a0f35f5316aa96b5b363a7b3657d39632166c666 100644 --- a/core/modules/tour/tests/src/Functional/Rest/TourResourceTestBase.php +++ b/core/modules/tour/tests/src/Functional/Rest/TourResourceTestBase.php @@ -10,7 +10,7 @@ abstract class TourResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['tour']; + public static $modules = ['tour']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/Rest/TourXmlBasicAuthTest.php b/core/modules/tour/tests/src/Functional/Rest/TourXmlBasicAuthTest.php index 617530e69c20e02562bfecdfa8931d2329a17426..618b41defdd7df7bede0b0b5a1e256816e01b64a 100644 --- a/core/modules/tour/tests/src/Functional/Rest/TourXmlBasicAuthTest.php +++ b/core/modules/tour/tests/src/Functional/Rest/TourXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class TourXmlBasicAuthTest extends TourResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/TourCacheTagsTest.php b/core/modules/tour/tests/src/Functional/TourCacheTagsTest.php index 32621bc50c521fe2208f71b5c8fdc71821580177..daed6fa292b3904d14479e80489cc36efd2b456d 100644 --- a/core/modules/tour/tests/src/Functional/TourCacheTagsTest.php +++ b/core/modules/tour/tests/src/Functional/TourCacheTagsTest.php @@ -18,7 +18,7 @@ class TourCacheTagsTest extends PageCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['tour', 'tour_test']; + public static $modules = ['tour', 'tour_test']; /** * {@inheritdoc} diff --git a/core/modules/tour/tests/src/Functional/TourHelpPageTest.php b/core/modules/tour/tests/src/Functional/TourHelpPageTest.php index de8fb3023ea7228950689c391e39829809a5dc23..ad60df104f207b4034e8a83c56a13cef87c24413 100644 --- a/core/modules/tour/tests/src/Functional/TourHelpPageTest.php +++ b/core/modules/tour/tests/src/Functional/TourHelpPageTest.php @@ -16,7 +16,7 @@ class TourHelpPageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['help', 'tour', 'locale', 'language']; + public static $modules = ['help', 'tour', 'locale', 'language']; /** * User that can access tours and help. diff --git a/core/modules/tour/tests/src/Functional/TourTest.php b/core/modules/tour/tests/src/Functional/TourTest.php index b4101dda5de17f479fdeaacfe870719ec9cbf0a9..1db1bb8cae5044f05ebde3c8d4672af0b73d5bf4 100644 --- a/core/modules/tour/tests/src/Functional/TourTest.php +++ b/core/modules/tour/tests/src/Functional/TourTest.php @@ -17,7 +17,7 @@ class TourTest extends TourTestBasic { * * @var array */ - protected static $modules = ['block', 'tour', 'locale', 'language', 'tour_test']; + public static $modules = ['block', 'tour', 'locale', 'language', 'tour_test']; /** * The permissions required for a logged in user to test tour tips. diff --git a/core/modules/tour/tests/src/Kernel/TourPluginTest.php b/core/modules/tour/tests/src/Kernel/TourPluginTest.php index 732f9127ea1d4c1d07598eee620dd45481c514d8..ce47467df714971194cbece3359acd4ae32794f1 100644 --- a/core/modules/tour/tests/src/Kernel/TourPluginTest.php +++ b/core/modules/tour/tests/src/Kernel/TourPluginTest.php @@ -16,7 +16,7 @@ class TourPluginTest extends KernelTestBase { * * @var array */ - protected static $modules = ['tour']; + public static $modules = ['tour']; /** * Stores the tour plugin manager. diff --git a/core/modules/tracker/src/Tests/Views/TrackerTestBase.php b/core/modules/tracker/src/Tests/Views/TrackerTestBase.php index 7c7e8f6e4d3464a91d76ee10228e425094f8f9a9..4dfaab03bc4f1ebfbbbda2186c92423110f66dbb 100644 --- a/core/modules/tracker/src/Tests/Views/TrackerTestBase.php +++ b/core/modules/tracker/src/Tests/Views/TrackerTestBase.php @@ -25,7 +25,7 @@ abstract class TrackerTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['comment', 'tracker', 'tracker_test_views']; + public static $modules = ['comment', 'tracker', 'tracker_test_views']; /** * The node used for testing. diff --git a/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php index 8fa2b89fd8d76a0dc557cfc1c23b9236c3cb5bef..2b320ae4b6dfde17118310d8128ee9b3d45b7a71 100644 --- a/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php +++ b/core/modules/tracker/tests/src/Functional/TrackerNodeAccessTest.php @@ -21,7 +21,7 @@ class TrackerNodeAccessTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'tracker', 'node_access_test']; + public static $modules = ['node', 'comment', 'tracker', 'node_access_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/tracker/tests/src/Functional/TrackerTest.php b/core/modules/tracker/tests/src/Functional/TrackerTest.php index 957b206c70de06213fba896168302dc94418d6c3..75b7b5cde797a64bd0ee7b5357287d72a6ced6b7 100644 --- a/core/modules/tracker/tests/src/Functional/TrackerTest.php +++ b/core/modules/tracker/tests/src/Functional/TrackerTest.php @@ -27,7 +27,7 @@ class TrackerTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['block', 'comment', 'tracker', 'history', 'node_test']; + public static $modules = ['block', 'comment', 'tracker', 'history', 'node_test']; /** * The main user for testing. diff --git a/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php b/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php index 0c7ebdd75c8269fa7f49e82d4068a135586b4220..d70684378c57deb6f51a2fdc68df9821a1660641 100644 --- a/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php +++ b/core/modules/tracker/tests/src/Functional/Views/TrackerTestBase.php @@ -20,7 +20,7 @@ abstract class TrackerTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['comment', 'tracker', 'tracker_test_views']; + public static $modules = ['comment', 'tracker', 'tracker_test_views']; /** * The node used for testing. diff --git a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerNodeTest.php b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerNodeTest.php index fa0674f431fdaedea2423f7744801d3bc190903b..d37050269f6a8cd79fc4a120c0a38d752e75103a 100644 --- a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerNodeTest.php +++ b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerNodeTest.php @@ -15,7 +15,7 @@ class MigrateTrackerNodeTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_ui', 'node', 'text', diff --git a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerSettingsTest.php b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerSettingsTest.php index 552774b298c544678df85d0c3885cc4a0693cf74..ea9732221a9128d77ae76073531e0c62c4798965 100644 --- a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerSettingsTest.php +++ b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerSettingsTest.php @@ -11,7 +11,7 @@ */ class MigrateTrackerSettingsTest extends MigrateDrupal7TestBase { - protected static $modules = ['tracker']; + public static $modules = ['tracker']; /** * {@inheritdoc} diff --git a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php index 2282070668c90b44d092d848a09e138390a6a8ae..3b0c11bb32388656363315d656f4f5763fc324b9 100644 --- a/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php +++ b/core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php @@ -15,7 +15,7 @@ class MigrateTrackerUserTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_ui', 'node', 'text', diff --git a/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerNodeTest.php b/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerNodeTest.php index 9f1c0978a0a6138f2471db5e4b8a30fe23364ec8..28d377261498fcf1bfb582dc9d4d370d27a43730 100644 --- a/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerNodeTest.php +++ b/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerNodeTest.php @@ -16,7 +16,7 @@ class TrackerNodeTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['tracker', 'migrate_drupal']; + public static $modules = ['tracker', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerUserTest.php b/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerUserTest.php index d609d0d1e3a1e2f7e9712b92ce39b4080cffd08a..293e559a20580cb5653dd16ca5c5788dd8ebb3dc 100644 --- a/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerUserTest.php +++ b/core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerUserTest.php @@ -16,7 +16,7 @@ class TrackerUserTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['tracker', 'migrate_drupal']; + public static $modules = ['tracker', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php b/core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php index cac85123ac81c24d7ed5478a3349f0b24de08f84..d768b06d81839a80d10a52b29f5bceebf6b48a37 100644 --- a/core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php +++ b/core/modules/update/tests/src/Functional/FileTransferAuthorizeFormTest.php @@ -14,7 +14,7 @@ class FileTransferAuthorizeFormTest extends UpdateTestBase { * * @var array */ - protected static $modules = ['update', 'update_test']; + public static $modules = ['update', 'update_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/update/tests/src/Functional/UpdateContribTest.php b/core/modules/update/tests/src/Functional/UpdateContribTest.php index a9c7c53f6c1568c34dca3801eeb0f342028526e8..20d397cd48288dbb70ef219ecd69a4f2d0b1ed8a 100644 --- a/core/modules/update/tests/src/Functional/UpdateContribTest.php +++ b/core/modules/update/tests/src/Functional/UpdateContribTest.php @@ -18,7 +18,7 @@ class UpdateContribTest extends UpdateTestBase { * * @var array */ - protected static $modules = ['update_test', 'update', 'aaa_update_test', 'bbb_update_test', 'ccc_update_test']; + public static $modules = ['update_test', 'update', 'aaa_update_test', 'bbb_update_test', 'ccc_update_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/update/tests/src/Functional/UpdateCoreTest.php b/core/modules/update/tests/src/Functional/UpdateCoreTest.php index 8c069600536592a2ab28adbadf84337ab46a97e4..222d568580272bed0bbc9dffbc4f3c45de8d76f5 100644 --- a/core/modules/update/tests/src/Functional/UpdateCoreTest.php +++ b/core/modules/update/tests/src/Functional/UpdateCoreTest.php @@ -20,7 +20,7 @@ class UpdateCoreTest extends UpdateTestBase { * * @var array */ - protected static $modules = ['update_test', 'update', 'language', 'block']; + public static $modules = ['update_test', 'update', 'language', 'block']; protected function setUp() { parent::setUp(); diff --git a/core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php b/core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php index c1487d69381285d95ec37646abc1a6a71c6209be..33c4ed3f0fe2246c5af5fc63fcdf82bbb9af5e61 100644 --- a/core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php +++ b/core/modules/update/tests/src/Functional/UpdateDeleteFileIfStaleTest.php @@ -14,7 +14,7 @@ class UpdateDeleteFileIfStaleTest extends UpdateTestBase { * * @var array */ - protected static $modules = ['update']; + public static $modules = ['update']; /** * {@inheritdoc} diff --git a/core/modules/update/tests/src/Functional/UpdateUploadTest.php b/core/modules/update/tests/src/Functional/UpdateUploadTest.php index 9a03e7a3353acccde7297b55d6c7a295244150e2..e86dff54981eac8128e589eda9da69e239be118c 100644 --- a/core/modules/update/tests/src/Functional/UpdateUploadTest.php +++ b/core/modules/update/tests/src/Functional/UpdateUploadTest.php @@ -23,7 +23,7 @@ class UpdateUploadTest extends UpdateTestBase { * * @var array */ - protected static $modules = ['update', 'update_test']; + public static $modules = ['update', 'update_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/update/tests/src/Kernel/Migrate/d6/MigrateUpdateConfigsTest.php b/core/modules/update/tests/src/Kernel/Migrate/d6/MigrateUpdateConfigsTest.php index a7d2349f2a6ada2478286c235c38d53fd875da05..aa3563c60857933737fa81d2cec16574a36e6b0f 100644 --- a/core/modules/update/tests/src/Kernel/Migrate/d6/MigrateUpdateConfigsTest.php +++ b/core/modules/update/tests/src/Kernel/Migrate/d6/MigrateUpdateConfigsTest.php @@ -17,7 +17,7 @@ class MigrateUpdateConfigsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['update']; + public static $modules = ['update']; /** * {@inheritdoc} diff --git a/core/modules/user/src/Tests/Functional/UserPasswordResetTest.php b/core/modules/user/src/Tests/Functional/UserPasswordResetTest.php index b56bc1b604687397468dcd9e68200fc12c2b9ce4..11d0691350acd4c7d66910acd4bc3f155c209373 100644 --- a/core/modules/user/src/Tests/Functional/UserPasswordResetTest.php +++ b/core/modules/user/src/Tests/Functional/UserPasswordResetTest.php @@ -31,7 +31,7 @@ class UserPasswordResetTest extends PageCacheTagsTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/user/src/Tests/FunctionalJavascript/UserPasswordResetTest.php b/core/modules/user/src/Tests/FunctionalJavascript/UserPasswordResetTest.php index d30f2d81c7510469e8bb7353eeadd997aab99015..caad739175ef4c22749724cb47787e47df24f455 100644 --- a/core/modules/user/src/Tests/FunctionalJavascript/UserPasswordResetTest.php +++ b/core/modules/user/src/Tests/FunctionalJavascript/UserPasswordResetTest.php @@ -44,7 +44,7 @@ class UserPasswordResetTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/user/src/Tests/RestRegisterUserTest.php b/core/modules/user/src/Tests/RestRegisterUserTest.php index 6b574083f0790c1234b254db96890ee69a461f4d..31bcce4d295c96a5b3d606c3e7fa47a31d2b5f81 100644 --- a/core/modules/user/src/Tests/RestRegisterUserTest.php +++ b/core/modules/user/src/Tests/RestRegisterUserTest.php @@ -17,7 +17,7 @@ class RestRegisterUserTest extends RESTTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/user/src/Tests/UserAdminLanguageTest.php b/core/modules/user/src/Tests/UserAdminLanguageTest.php index be5453d1b6536bb6e269e6e95b5a44d8825961b7..cd6cc657bf0d2a071ac80f54376448487fbfc1f7 100644 --- a/core/modules/user/src/Tests/UserAdminLanguageTest.php +++ b/core/modules/user/src/Tests/UserAdminLanguageTest.php @@ -31,7 +31,7 @@ class UserAdminLanguageTest extends WebTestBase { * * @var array */ - protected static $modules = ['user', 'language', 'language_test']; + public static $modules = ['user', 'language', 'language_test']; protected function setUp() { parent::setUp(); diff --git a/core/modules/user/src/Tests/UserAdminSettingsFormTest.php b/core/modules/user/src/Tests/UserAdminSettingsFormTest.php index 375f41a588570f2892033e781ff4f788d5f16091..784d5e1e62e1978e243d6cb4fb73cfa7889364ca 100644 --- a/core/modules/user/src/Tests/UserAdminSettingsFormTest.php +++ b/core/modules/user/src/Tests/UserAdminSettingsFormTest.php @@ -15,7 +15,7 @@ class UserAdminSettingsFormTest extends ConfigFormTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * {@inheritdoc} diff --git a/core/modules/user/src/Tests/UserBlocksTest.php b/core/modules/user/src/Tests/UserBlocksTest.php index 09b641b407efd89a545f98635fbb5de411dc126a..b7e6cad7e32b80bf5ae2a52242751b39020c7aa8 100644 --- a/core/modules/user/src/Tests/UserBlocksTest.php +++ b/core/modules/user/src/Tests/UserBlocksTest.php @@ -17,7 +17,7 @@ class UserBlocksTest extends WebTestBase { * * @var array */ - protected static $modules = ['block', 'views']; + public static $modules = ['block', 'views']; /** * A user with the 'administer blocks' permission. diff --git a/core/modules/user/src/Tests/UserCreateTest.php b/core/modules/user/src/Tests/UserCreateTest.php index 049019e206eb748c181904dee8b06f4437669c2a..7b534435a0c2c068f44fb7308700f372f5f97ac4 100644 --- a/core/modules/user/src/Tests/UserCreateTest.php +++ b/core/modules/user/src/Tests/UserCreateTest.php @@ -18,7 +18,7 @@ class UserCreateTest extends WebTestBase { * * @var array */ - protected static $modules = ['image']; + public static $modules = ['image']; /** * Create a user through the administration interface and ensure that it diff --git a/core/modules/user/src/Tests/UserRegistrationTest.php b/core/modules/user/src/Tests/UserRegistrationTest.php index fc73d53a20b6e532d6a887ca27c3cc8157096cac..95fd7a0999d5c2c4c2b368596c76c4c54c323640 100644 --- a/core/modules/user/src/Tests/UserRegistrationTest.php +++ b/core/modules/user/src/Tests/UserRegistrationTest.php @@ -21,7 +21,7 @@ class UserRegistrationTest extends WebTestBase { * * @var array */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; public function testRegistrationWithEmailVerification() { $config = $this->config('user.settings'); diff --git a/core/modules/user/tests/src/Functional/AccessRoleUITest.php b/core/modules/user/tests/src/Functional/AccessRoleUITest.php index e33d9b532a8de70bcac42f2bcd98151ce793305a..6c1004c9d432e7063f7e12b2053ca5b2782e362d 100644 --- a/core/modules/user/tests/src/Functional/AccessRoleUITest.php +++ b/core/modules/user/tests/src/Functional/AccessRoleUITest.php @@ -25,7 +25,7 @@ class AccessRoleUITest extends UITestBase { * * @var array */ - protected static $modules = ['user', 'user_test_views']; + public static $modules = ['user', 'user_test_views']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonAnonTest.php b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonAnonTest.php index 697417bb458464c6892b58e83b4ef0a6d315e298..a08a1d094a89e3b2cc66e14c3ecb63bfb0f33403 100644 --- a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonAnonTest.php +++ b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonAnonTest.php @@ -15,7 +15,7 @@ class RoleHalJsonAnonTest extends RoleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonBasicAuthTest.php b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonBasicAuthTest.php index f5c1e8c73e8b1b86ef53f68f0a6667eeb9e8bc39..1e613e5d73fc9e9d77d34f220949d9df25f444ec 100644 --- a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class RoleHalJsonBasicAuthTest extends RoleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonCookieTest.php b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonCookieTest.php index 9b2c833d505110af4bc9b28c18243852b0c9f932..0074e0516cb1be905693381f2c41fda95300fb49 100644 --- a/core/modules/user/tests/src/Functional/Hal/RoleHalJsonCookieTest.php +++ b/core/modules/user/tests/src/Functional/Hal/RoleHalJsonCookieTest.php @@ -15,7 +15,7 @@ class RoleHalJsonCookieTest extends RoleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php b/core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php index 48be944ebd03876a4e6632b5871b0a645d101089..b33c6868bcbed3758a7681fc9b85f4ed93cfe089 100644 --- a/core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php +++ b/core/modules/user/tests/src/Functional/Hal/UserHalJsonAnonTest.php @@ -17,7 +17,7 @@ class UserHalJsonAnonTest extends UserResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Hal/UserHalJsonBasicAuthTest.php b/core/modules/user/tests/src/Functional/Hal/UserHalJsonBasicAuthTest.php index 97e3038f58ec79970a90966a1dba8b1561dc9875..7da859e0608905dc301cf29c369225db27b78e63 100644 --- a/core/modules/user/tests/src/Functional/Hal/UserHalJsonBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Hal/UserHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class UserHalJsonBasicAuthTest extends UserHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/RoleJsonBasicAuthTest.php b/core/modules/user/tests/src/Functional/Rest/RoleJsonBasicAuthTest.php index c0d572855aeefe272d16c99dff747128a6a9d4d9..79d16cb90b76b12643de94c337484179b27b23e6 100644 --- a/core/modules/user/tests/src/Functional/Rest/RoleJsonBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Rest/RoleJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class RoleJsonBasicAuthTest extends RoleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/RoleResourceTestBase.php b/core/modules/user/tests/src/Functional/Rest/RoleResourceTestBase.php index 1bb24b676e2284ab017d13fa98239577beeb104a..18ff4842a91fffd4da5384f2389a26f4d0a3a2e1 100644 --- a/core/modules/user/tests/src/Functional/Rest/RoleResourceTestBase.php +++ b/core/modules/user/tests/src/Functional/Rest/RoleResourceTestBase.php @@ -10,7 +10,7 @@ abstract class RoleResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/RoleXmlBasicAuthTest.php b/core/modules/user/tests/src/Functional/Rest/RoleXmlBasicAuthTest.php index bc661a49c8c424d01bc690324827eb7c97d207f1..fa98edd47c01492af08db0bc726ecc3d0cd3b04b 100644 --- a/core/modules/user/tests/src/Functional/Rest/RoleXmlBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Rest/RoleXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class RoleXmlBasicAuthTest extends RoleResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/UserJsonBasicAuthTest.php b/core/modules/user/tests/src/Functional/Rest/UserJsonBasicAuthTest.php index 80aa29722d3e456d3be6b5452cfef28c5da8d6c9..7a1ea2674e5feab3f9505ecb209e13db4842d39e 100644 --- a/core/modules/user/tests/src/Functional/Rest/UserJsonBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Rest/UserJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class UserJsonBasicAuthTest extends UserResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php b/core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php index 0b0f9124189c390b3b61103bb3523e6b0499359c..d8fe60e40c120267b6faace1e6ad10ce5f2777c6 100644 --- a/core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php +++ b/core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php @@ -15,7 +15,7 @@ abstract class UserResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/Rest/UserXmlBasicAuthTest.php b/core/modules/user/tests/src/Functional/Rest/UserXmlBasicAuthTest.php index d5065ff860d9aee32116a7ce77dbe3a94b0b072c..fc985980c3f4c8a18769e0746cbf2f1840cfcc31 100644 --- a/core/modules/user/tests/src/Functional/Rest/UserXmlBasicAuthTest.php +++ b/core/modules/user/tests/src/Functional/Rest/UserXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class UserXmlBasicAuthTest extends UserResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/UserAccountLinksTest.php b/core/modules/user/tests/src/Functional/UserAccountLinksTest.php index 678dfc5e86f6e111ffb3f08f9bfbfce431d682ad..c09fc34daffce51ddb3c34c6611456cdd255d187 100644 --- a/core/modules/user/tests/src/Functional/UserAccountLinksTest.php +++ b/core/modules/user/tests/src/Functional/UserAccountLinksTest.php @@ -16,7 +16,7 @@ class UserAccountLinksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'block', 'test_page_test']; + public static $modules = ['menu_ui', 'block', 'test_page_test']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/UserAdminTest.php b/core/modules/user/tests/src/Functional/UserAdminTest.php index 022569b0d668787c639e912635d4eee4854e61b5..82e5df807c1e2d48f49950baa195787670f82899 100644 --- a/core/modules/user/tests/src/Functional/UserAdminTest.php +++ b/core/modules/user/tests/src/Functional/UserAdminTest.php @@ -22,7 +22,7 @@ class UserAdminTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'views']; + public static $modules = ['taxonomy', 'views']; /** * Registers a user and deletes it. diff --git a/core/modules/user/tests/src/Functional/UserCacheTagsTest.php b/core/modules/user/tests/src/Functional/UserCacheTagsTest.php index a2eb5427342a1b705094d146db14e5d162c7fcbe..c9ab91fac71a82851713587045ae30306611c369 100644 --- a/core/modules/user/tests/src/Functional/UserCacheTagsTest.php +++ b/core/modules/user/tests/src/Functional/UserCacheTagsTest.php @@ -17,7 +17,7 @@ class UserCacheTagsTest extends EntityWithUriCacheTagsTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/UserCancelTest.php b/core/modules/user/tests/src/Functional/UserCancelTest.php index 3b10197d4cb6dabb8e74a369adc7f1ee25d72ea5..869cd37bdd5af4125042b8ae0e197adb8342904d 100644 --- a/core/modules/user/tests/src/Functional/UserCancelTest.php +++ b/core/modules/user/tests/src/Functional/UserCancelTest.php @@ -22,7 +22,7 @@ class UserCancelTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'comment']; + public static $modules = ['node', 'comment']; protected function setUp() { parent::setUp(); diff --git a/core/modules/user/tests/src/Functional/UserCreateFailMailTest.php b/core/modules/user/tests/src/Functional/UserCreateFailMailTest.php index 5c23f4ba00251b83bdba492a465ac46a1730d836..38f2514a496f52f32d4d520aa3da72042681bf28 100644 --- a/core/modules/user/tests/src/Functional/UserCreateFailMailTest.php +++ b/core/modules/user/tests/src/Functional/UserCreateFailMailTest.php @@ -16,7 +16,7 @@ class UserCreateFailMailTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system_mail_failure_test']; + public static $modules = ['system_mail_failure_test']; /** * Tests the create user administration page. diff --git a/core/modules/user/tests/src/Functional/UserEntityCallbacksTest.php b/core/modules/user/tests/src/Functional/UserEntityCallbacksTest.php index e3626a94dddebf25a35d561a69714954fc6cf07f..feea805afd1146bf3e3bb445db837a188011a688 100644 --- a/core/modules/user/tests/src/Functional/UserEntityCallbacksTest.php +++ b/core/modules/user/tests/src/Functional/UserEntityCallbacksTest.php @@ -18,7 +18,7 @@ class UserEntityCallbacksTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['user', 'user_hooks_test']; + public static $modules = ['user', 'user_hooks_test']; /** * An authenticated user to use for testing. diff --git a/core/modules/user/tests/src/Functional/UserLanguageCreationTest.php b/core/modules/user/tests/src/Functional/UserLanguageCreationTest.php index 2c736c8496f1a99d5939e5b39de2bc3b64329945..6f493418b2082417e81f0d2c23605534772d9344 100644 --- a/core/modules/user/tests/src/Functional/UserLanguageCreationTest.php +++ b/core/modules/user/tests/src/Functional/UserLanguageCreationTest.php @@ -18,7 +18,7 @@ class UserLanguageCreationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['user', 'language']; + public static $modules = ['user', 'language']; /** * Functional test for language handling during user creation. diff --git a/core/modules/user/tests/src/Functional/UserLanguageTest.php b/core/modules/user/tests/src/Functional/UserLanguageTest.php index 8553017d1dd51fbe98c35d7466863bb818b855ec..0e6c0f1a75db0836329b064a2e04fc0df25f1fd8 100644 --- a/core/modules/user/tests/src/Functional/UserLanguageTest.php +++ b/core/modules/user/tests/src/Functional/UserLanguageTest.php @@ -17,7 +17,7 @@ class UserLanguageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['user', 'language']; + public static $modules = ['user', 'language']; /** * Test if user can change their default language. diff --git a/core/modules/user/tests/src/Functional/UserLoginHttpTest.php b/core/modules/user/tests/src/Functional/UserLoginHttpTest.php index 0e8a9078c72649cffc0b54e999baa6ed3953ccb2..b12a72b58e8c4d4aee5f095b11576608fffed932 100644 --- a/core/modules/user/tests/src/Functional/UserLoginHttpTest.php +++ b/core/modules/user/tests/src/Functional/UserLoginHttpTest.php @@ -28,7 +28,7 @@ class UserLoginHttpTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * The cookie jar. diff --git a/core/modules/user/tests/src/Functional/UserRoleAdminTest.php b/core/modules/user/tests/src/Functional/UserRoleAdminTest.php index 4af9dd31251ba75ff91f2476a2cb6473a3ee72ea..24dc0849fc378fd5458271e0f627cd51e101e0cd 100644 --- a/core/modules/user/tests/src/Functional/UserRoleAdminTest.php +++ b/core/modules/user/tests/src/Functional/UserRoleAdminTest.php @@ -25,7 +25,7 @@ class UserRoleAdminTest extends BrowserTestBase { * * @var string[] */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/UserSearchTest.php b/core/modules/user/tests/src/Functional/UserSearchTest.php index ef7cd22005bf35311ad33641cd08fa94baa162d1..8ce0319bf623b46580b08662656e35a295893e88 100644 --- a/core/modules/user/tests/src/Functional/UserSearchTest.php +++ b/core/modules/user/tests/src/Functional/UserSearchTest.php @@ -17,7 +17,7 @@ class UserSearchTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['search']; + public static $modules = ['search']; public function testUserSearch() { // Verify that a user without 'administer users' permission cannot search diff --git a/core/modules/user/tests/src/Functional/UserTimeZoneTest.php b/core/modules/user/tests/src/Functional/UserTimeZoneTest.php index 335a5592ab1112c38c24fcd687151902b51fe97a..ccf43253def6e4dae8e59fcb4ce5311ad05cf860 100644 --- a/core/modules/user/tests/src/Functional/UserTimeZoneTest.php +++ b/core/modules/user/tests/src/Functional/UserTimeZoneTest.php @@ -17,7 +17,7 @@ class UserTimeZoneTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['node', 'system_test']; + public static $modules = ['node', 'system_test']; /** * Tests the display of dates and time when user-configurable time zones are set. diff --git a/core/modules/user/tests/src/Functional/UserTokenReplaceTest.php b/core/modules/user/tests/src/Functional/UserTokenReplaceTest.php index 9cf2202a8ec2e53990c64b234f2e553eb58de3cd..e272b60732524716751149708d8681e4b4008764 100644 --- a/core/modules/user/tests/src/Functional/UserTokenReplaceTest.php +++ b/core/modules/user/tests/src/Functional/UserTokenReplaceTest.php @@ -21,7 +21,7 @@ class UserTokenReplaceTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'user_hooks_test']; + public static $modules = ['language', 'user_hooks_test']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Functional/UserTranslationUITest.php b/core/modules/user/tests/src/Functional/UserTranslationUITest.php index 657515e4eff81809238921357be78bfaa5483086..630e58586c5531e2b9922ef6f85042cde0b7a088 100644 --- a/core/modules/user/tests/src/Functional/UserTranslationUITest.php +++ b/core/modules/user/tests/src/Functional/UserTranslationUITest.php @@ -23,7 +23,7 @@ class UserTranslationUITest extends ContentTranslationUITestBase { * * @var array */ - protected static $modules = ['language', 'content_translation', 'user', 'views']; + public static $modules = ['language', 'content_translation', 'user', 'views']; protected function setUp() { $this->entityTypeId = 'user'; diff --git a/core/modules/user/tests/src/Functional/Views/AccessTestBase.php b/core/modules/user/tests/src/Functional/Views/AccessTestBase.php index 350dfc7553626dfb80759fab116549bdec217277..36f2334f1166a5d71550ae5f14625399494e1016 100644 --- a/core/modules/user/tests/src/Functional/Views/AccessTestBase.php +++ b/core/modules/user/tests/src/Functional/Views/AccessTestBase.php @@ -12,7 +12,7 @@ abstract class AccessTestBase extends UserTestBase { * * @var array */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Contains a user object that has no special permissions. diff --git a/core/modules/user/tests/src/Functional/Views/BulkFormAccessTest.php b/core/modules/user/tests/src/Functional/Views/BulkFormAccessTest.php index e8c4831003cca7723b610b7f1e79a4cd1f035e29..5f613f3b16840c27e61188bae6f3649417373241 100644 --- a/core/modules/user/tests/src/Functional/Views/BulkFormAccessTest.php +++ b/core/modules/user/tests/src/Functional/Views/BulkFormAccessTest.php @@ -19,7 +19,7 @@ class BulkFormAccessTest extends UserTestBase { * * @var array */ - protected static $modules = ['user_access_test']; + public static $modules = ['user_access_test']; /** * Views used by this test. diff --git a/core/modules/user/tests/src/Functional/Views/BulkFormTest.php b/core/modules/user/tests/src/Functional/Views/BulkFormTest.php index b3baff7d31217ddef27fefb0765fabc38cb4356b..29c0e83e6b9da2ea4c1dbef05a7c53c0d473a8ea 100644 --- a/core/modules/user/tests/src/Functional/Views/BulkFormTest.php +++ b/core/modules/user/tests/src/Functional/Views/BulkFormTest.php @@ -19,7 +19,7 @@ class BulkFormTest extends UserTestBase { * * @var array */ - protected static $modules = ['views_ui']; + public static $modules = ['views_ui']; /** * Views used by this test. diff --git a/core/modules/user/tests/src/Functional/Views/FilterPermissionUiTest.php b/core/modules/user/tests/src/Functional/Views/FilterPermissionUiTest.php index d8eba694984d2a4392a38ba80d319c6d79bfff80..d08c2f31695fa01bb21e8262585a9ca9da4e18a3 100644 --- a/core/modules/user/tests/src/Functional/Views/FilterPermissionUiTest.php +++ b/core/modules/user/tests/src/Functional/Views/FilterPermissionUiTest.php @@ -25,7 +25,7 @@ class FilterPermissionUiTest extends ViewTestBase { * * @var array */ - protected static $modules = ['user', 'user_test_views', 'views_ui']; + public static $modules = ['user', 'user_test_views', 'views_ui']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php b/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php index a50eeebc44ea4c19d48449ec57d866ff5f411b8c..a5d271092a0213de42a746b7e0372204e99f6bfd 100644 --- a/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php +++ b/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php @@ -19,7 +19,7 @@ class HandlerFilterUserNameTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'user_test_views']; + public static $modules = ['views_ui', 'user_test_views']; /** * Views used by this test. diff --git a/core/modules/user/tests/src/Functional/Views/UserChangedTest.php b/core/modules/user/tests/src/Functional/Views/UserChangedTest.php index c31d4c359a12f9f4041b42a648e922ec383566fc..2271c0ce0726ba5d2c4ac8f0371c9c18c7c9fc7d 100644 --- a/core/modules/user/tests/src/Functional/Views/UserChangedTest.php +++ b/core/modules/user/tests/src/Functional/Views/UserChangedTest.php @@ -17,7 +17,7 @@ class UserChangedTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'user_test_views']; + public static $modules = ['views_ui', 'user_test_views']; /** * Views used by this test. diff --git a/core/modules/user/tests/src/Functional/Views/UserFieldsAccessChangeTest.php b/core/modules/user/tests/src/Functional/Views/UserFieldsAccessChangeTest.php index 1a5601424c049ace9950c7db579c83a9570d7aa1..1a238579c91c697137d8e9aede722d992f1b5581 100644 --- a/core/modules/user/tests/src/Functional/Views/UserFieldsAccessChangeTest.php +++ b/core/modules/user/tests/src/Functional/Views/UserFieldsAccessChangeTest.php @@ -14,7 +14,7 @@ class UserFieldsAccessChangeTest extends UserTestBase { * * @var array */ - protected static $modules = ['user_access_test']; + public static $modules = ['user_access_test']; /** * Views used by this test. diff --git a/core/modules/user/tests/src/Functional/Views/UserTestBase.php b/core/modules/user/tests/src/Functional/Views/UserTestBase.php index 83f0ab297de46c54976a21bc255d1f17783d86bf..49de6f793fd136bb424035fe73de0c895a4d9683 100644 --- a/core/modules/user/tests/src/Functional/Views/UserTestBase.php +++ b/core/modules/user/tests/src/Functional/Views/UserTestBase.php @@ -16,7 +16,7 @@ abstract class UserTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['user_test_views', 'node']; + public static $modules = ['user_test_views', 'node']; /** * Users to use during this test. diff --git a/core/modules/user/tests/src/FunctionalJavascript/RegistrationWithUserFieldsTest.php b/core/modules/user/tests/src/FunctionalJavascript/RegistrationWithUserFieldsTest.php index 8eda2405881669ee718c70d34653f7f799d7e4f8..29306cd4d168f5ae348bc559cd3d60024981919e 100644 --- a/core/modules/user/tests/src/FunctionalJavascript/RegistrationWithUserFieldsTest.php +++ b/core/modules/user/tests/src/FunctionalJavascript/RegistrationWithUserFieldsTest.php @@ -31,7 +31,7 @@ class RegistrationWithUserFieldsTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field_test']; + public static $modules = ['field_test']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Condition/UserRoleConditionTest.php b/core/modules/user/tests/src/Kernel/Condition/UserRoleConditionTest.php index 64a12a7ce6e0b2b0f20f39c326fe85cceeff60b7..d6923faf976294446f43bedecce1f244e8da1d8f 100644 --- a/core/modules/user/tests/src/Kernel/Condition/UserRoleConditionTest.php +++ b/core/modules/user/tests/src/Kernel/Condition/UserRoleConditionTest.php @@ -48,7 +48,7 @@ class UserRoleConditionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Field/UserNameFormatterTest.php b/core/modules/user/tests/src/Kernel/Field/UserNameFormatterTest.php index e91f4fe7aa121d4ed7ff2d13dbbce6703b9f62c0..6beecb88d3d6073cfe28f54e66f045a32f73f9fb 100644 --- a/core/modules/user/tests/src/Kernel/Field/UserNameFormatterTest.php +++ b/core/modules/user/tests/src/Kernel/Field/UserNameFormatterTest.php @@ -19,7 +19,7 @@ class UserNameFormatterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'user', 'system']; + public static $modules = ['field', 'user', 'system']; /** * @var string diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserAdminPassTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserAdminPassTest.php index a54f797555ed1ffe893135a50fe2055e200a600f..85cd761bc3ec31d6d91bf257d0c8c067dc40e7f7 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserAdminPassTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserAdminPassTest.php @@ -24,7 +24,7 @@ class MigrateUserAdminPassTest extends MigrateTestBase { * * @var string[] */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityDisplayTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityDisplayTest.php index 8a4f1a16b8fa0a6d1e8d278cf3394a1b0017cd10..0d3bb7c20607842e622a1d7603685e26506cf365 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityDisplayTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityDisplayTest.php @@ -15,7 +15,7 @@ class MigrateUserPictureEntityDisplayTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = ['file', 'image']; + public static $modules = ['file', 'image']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityFormDisplayTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityFormDisplayTest.php index f501012fccf7576bf4d987f4f3284259078ee244..f75382496feda9ccfe79bf4d1ce4991eea27e8d5 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityFormDisplayTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureEntityFormDisplayTest.php @@ -12,7 +12,7 @@ */ class MigrateUserPictureEntityFormDisplayTest extends MigrateDrupal7TestBase { - protected static $modules = ['image', 'file']; + public static $modules = ['image', 'file']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldInstanceTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldInstanceTest.php index e9a8e6276978b03bdb0e1c974a2e4bfe3282fe42..9b3829e06d55e05500282bb0e779cca1421233a4 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldInstanceTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldInstanceTest.php @@ -13,7 +13,7 @@ */ class MigrateUserPictureFieldInstanceTest extends MigrateDrupal7TestBase { - protected static $modules = ['image', 'file']; + public static $modules = ['image', 'file']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldTest.php index fac8122c72bfa97b1ee2d493e33dab196396b635..1389693024474b171899cbe05e29458fa5a98479 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserPictureFieldTest.php @@ -13,7 +13,7 @@ */ class MigrateUserPictureFieldTest extends MigrateDrupal7TestBase { - protected static $modules = ['image', 'file']; + public static $modules = ['image', 'file']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserProfileFieldInstanceTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserProfileFieldInstanceTest.php index c2a5bd5b36256fc6e6587ed102e09c2c65b4b96e..ecc9bc9651f1d2252e0d2fb0f295bf4a4513cd3f 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserProfileFieldInstanceTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserProfileFieldInstanceTest.php @@ -15,7 +15,7 @@ class MigrateUserProfileFieldInstanceTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['field']; + public static $modules = ['field']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserStubTest.php b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserStubTest.php index 3c25c70cda3b4439a2c268cbad716ded336b83b2..768f5d72c8957596f4797ea743b23d6697ec2751 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/MigrateUserStubTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/MigrateUserStubTest.php @@ -17,7 +17,7 @@ class MigrateUserStubTest extends MigrateDrupalTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserContactSettingsTest.php b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserContactSettingsTest.php index b1e3ac11e1bc896bec34bdaf5c409701ee63e644..fcdaa2542670981ae351203c7a80c08e12025d23 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserContactSettingsTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserContactSettingsTest.php @@ -14,7 +14,7 @@ class MigrateUserContactSettingsTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['contact']; + public static $modules = ['contact']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileValuesTest.php b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileValuesTest.php index df807fe63dae1077f59fb6a2e8d1b5e8f82e8895..71acad69f2f36ed48b83bc24c83468ba4b94c4ec 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileValuesTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserProfileValuesTest.php @@ -15,7 +15,7 @@ class MigrateUserProfileValuesTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserTest.php b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserTest.php index b87708d3ce4c3472b2e6e09dd6f7f28a53ce2539..ed287770ae7e03f83551f44aaa1a6b8b100c438e 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserTest.php @@ -22,7 +22,7 @@ class MigrateUserTest extends MigrateDrupal6TestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php b/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php index a25b27511d7318f282d0dece28bb18bd9953b820..bbfc41d77d5f2e3b66c09aac2af263a3be4fb95b 100644 --- a/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php +++ b/core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserTest.php @@ -22,7 +22,7 @@ class MigrateUserTest extends MigrateDrupal7TestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'comment', 'datetime', 'file', diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/ProfileFieldTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/ProfileFieldTest.php index c24a0a79e26768d475bd8d000378f219a0f2bbaf..99c61fd491081407219da386308649bbd8e67721 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/ProfileFieldTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/ProfileFieldTest.php @@ -15,7 +15,7 @@ class ProfileFieldTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php index a87ede1f7ad3c7135eaef5b24187045f491c7575..d9e77edde03a2c6944b335f198482bf5c7879ea6 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php @@ -15,7 +15,7 @@ class UserPictureInstanceTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldValuesTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldValuesTest.php index 2e3aba422435405714f2a010dd7860f91adabca9..26c2ed55f8d865dd955149040bc0adae7f3ed86a 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldValuesTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/ProfileFieldValuesTest.php @@ -15,7 +15,7 @@ class ProfileFieldValuesTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/RoleTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/RoleTest.php index d37659b4f8b6597d5c63fc68f99a0962f307564a..1a841d32dfa53a97c063f5ed53dab1a99cb8512c 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/RoleTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/RoleTest.php @@ -15,7 +15,7 @@ class RoleTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureFileTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureFileTest.php index c77b45cc6f04271821fd690df9a881e762844fc0..2724d35f59f6692028337d9b7c274f4c8443598b 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureFileTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureFileTest.php @@ -15,7 +15,7 @@ class UserPictureFileTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureTest.php index 2eb61d84c1e16c3a6e80906384fef79432b8d03f..aea6afa7c90ff39a48412557e7a667c352807f9a 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserPictureTest.php @@ -15,7 +15,7 @@ class UserPictureTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php index 19f85be63a8ce22499a2db6a9ae73ec454618801..1dc34a7cd6018907ff6de1879e902c2468d48341 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php @@ -15,7 +15,7 @@ class UserTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/RoleTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/RoleTest.php index 885894c780903704ee1d43a35343cbeb8df78b55..d2d43a44c94a47f5f0ca7d25193c7fe9fb48fe87 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/RoleTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/RoleTest.php @@ -15,7 +15,7 @@ class RoleTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['migrate_drupal', 'user']; + public static $modules = ['migrate_drupal', 'user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php index 09cdce70aeb255b99c3fa34aa18372720e4ad06a..80935715eb31a00463a44af79f5f1ebb2a2b37ae 100644 --- a/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php +++ b/core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php @@ -15,7 +15,7 @@ class UserTest extends MigrateSqlSourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'migrate_drupal']; + public static $modules = ['user', 'migrate_drupal']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/TempStoreDatabaseTest.php b/core/modules/user/tests/src/Kernel/TempStoreDatabaseTest.php index 6a7aed7e08d545dbbbf5a30dddd36fbab597af0a..ae9d4cb13eec5e39f15600c11d2267fdd1c399c4 100644 --- a/core/modules/user/tests/src/Kernel/TempStoreDatabaseTest.php +++ b/core/modules/user/tests/src/Kernel/TempStoreDatabaseTest.php @@ -22,7 +22,7 @@ class TempStoreDatabaseTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * A key/value store factory. diff --git a/core/modules/user/tests/src/Kernel/UserAccountFormFieldsTest.php b/core/modules/user/tests/src/Kernel/UserAccountFormFieldsTest.php index 1ce92f0d6623a23ba123b8d091826d2356f7c227..fe967b2d9f6f12b11b01c5f41cd96ab25ba9d19f 100644 --- a/core/modules/user/tests/src/Kernel/UserAccountFormFieldsTest.php +++ b/core/modules/user/tests/src/Kernel/UserAccountFormFieldsTest.php @@ -18,7 +18,7 @@ class UserAccountFormFieldsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; /** * Tests the root user account form section in the "Configure site" form. diff --git a/core/modules/user/tests/src/Kernel/UserActionConfigSchemaTest.php b/core/modules/user/tests/src/Kernel/UserActionConfigSchemaTest.php index d6e5c353c07069c63b0b2194522ae6153c8ce199..dfafb1d5368be79048c892e4174876d0f1cd1449 100644 --- a/core/modules/user/tests/src/Kernel/UserActionConfigSchemaTest.php +++ b/core/modules/user/tests/src/Kernel/UserActionConfigSchemaTest.php @@ -21,7 +21,7 @@ class UserActionConfigSchemaTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * Tests whether the user action config schema are valid. diff --git a/core/modules/user/tests/src/Kernel/UserEntityTest.php b/core/modules/user/tests/src/Kernel/UserEntityTest.php index a05c6484b0bcba4ea46e5b7a6a66d5f9083c6de2..73fe869ec3d41bdfeb38858db1282b523507780e 100644 --- a/core/modules/user/tests/src/Kernel/UserEntityTest.php +++ b/core/modules/user/tests/src/Kernel/UserEntityTest.php @@ -19,7 +19,7 @@ class UserEntityTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/UserFieldsTest.php b/core/modules/user/tests/src/Kernel/UserFieldsTest.php index ee5bf39598c55a30b33c1b8f19c55d69d51e5326..672ddb065e033e40b2c1f6e767bbe9f2708ac4a7 100644 --- a/core/modules/user/tests/src/Kernel/UserFieldsTest.php +++ b/core/modules/user/tests/src/Kernel/UserFieldsTest.php @@ -17,7 +17,7 @@ class UserFieldsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/UserInstallTest.php b/core/modules/user/tests/src/Kernel/UserInstallTest.php index b95094736b1eb82b14f3eabf96dc3938844572aa..be3336f78027845d637e013dc9c190582b060ef2 100644 --- a/core/modules/user/tests/src/Kernel/UserInstallTest.php +++ b/core/modules/user/tests/src/Kernel/UserInstallTest.php @@ -16,7 +16,7 @@ class UserInstallTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/UserRoleDeleteTest.php b/core/modules/user/tests/src/Kernel/UserRoleDeleteTest.php index ee7f881d11a3a70064725c0ea5e72f4a83147943..cac470aaab84a5f5b530bfed6b44bce73da4fed1 100644 --- a/core/modules/user/tests/src/Kernel/UserRoleDeleteTest.php +++ b/core/modules/user/tests/src/Kernel/UserRoleDeleteTest.php @@ -17,7 +17,7 @@ class UserRoleDeleteTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; protected function setUp() { parent::setUp(); diff --git a/core/modules/user/tests/src/Kernel/UserRoleEntityTest.php b/core/modules/user/tests/src/Kernel/UserRoleEntityTest.php index b597c3ddae8202975dac0ca5a7bf317c28acdbba..562ada11f237e0fb9bd6257395c3c74e5bf48d2c 100644 --- a/core/modules/user/tests/src/Kernel/UserRoleEntityTest.php +++ b/core/modules/user/tests/src/Kernel/UserRoleEntityTest.php @@ -10,7 +10,7 @@ */ class UserRoleEntityTest extends KernelTestBase { - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; public function testOrderOfPermissions() { $role = Role::create(['id' => 'test_role']); diff --git a/core/modules/user/tests/src/Kernel/UserSaveStatusTest.php b/core/modules/user/tests/src/Kernel/UserSaveStatusTest.php index 093c6bf67eac2d1d38356b2935bb56aebff9c233..17364c059de297bbf88853154e55e7d450b94150 100644 --- a/core/modules/user/tests/src/Kernel/UserSaveStatusTest.php +++ b/core/modules/user/tests/src/Kernel/UserSaveStatusTest.php @@ -17,7 +17,7 @@ class UserSaveStatusTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; protected function setUp() { parent::setUp(); diff --git a/core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php b/core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php index e5cbf27806ff94b57136c6aadf9564432b920b64..78ab454981ad10b5e0dd1033b4a23e157d66f16d 100644 --- a/core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php +++ b/core/modules/user/tests/src/Kernel/UserServiceProviderFallbackTest.php @@ -18,7 +18,7 @@ class UserServiceProviderFallbackTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * Tests that user.tempstore.expire equals tempstore.expire if not customized. diff --git a/core/modules/user/tests/src/Kernel/UserServiceProviderTest.php b/core/modules/user/tests/src/Kernel/UserServiceProviderTest.php index 07f76c676d46169ac6d3997ba86c96457a6cf0c6..38f1af1d4817f11253f1e73b960dcd728646d707 100644 --- a/core/modules/user/tests/src/Kernel/UserServiceProviderTest.php +++ b/core/modules/user/tests/src/Kernel/UserServiceProviderTest.php @@ -18,7 +18,7 @@ class UserServiceProviderTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * Tests that tempstore.expire is set to user.tempstore.expire. diff --git a/core/modules/user/tests/src/Kernel/UserValidationTest.php b/core/modules/user/tests/src/Kernel/UserValidationTest.php index 144fa838116160f7fc9f05b1f9af66291d747b5c..98065f36b48ac2476505bb8118c78a41133cc32b 100644 --- a/core/modules/user/tests/src/Kernel/UserValidationTest.php +++ b/core/modules/user/tests/src/Kernel/UserValidationTest.php @@ -21,7 +21,7 @@ class UserValidationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['field', 'user', 'system']; + public static $modules = ['field', 'user', 'system']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/Views/UserKernelTestBase.php b/core/modules/user/tests/src/Kernel/Views/UserKernelTestBase.php index dc6cd31879cc09650498375c9faab273ca2b381c..0e862c86b89730d1920b40d1473e09edac640618 100644 --- a/core/modules/user/tests/src/Kernel/Views/UserKernelTestBase.php +++ b/core/modules/user/tests/src/Kernel/Views/UserKernelTestBase.php @@ -15,7 +15,7 @@ abstract class UserKernelTestBase extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user_test_views', 'user', 'system', 'field']; + public static $modules = ['user_test_views', 'user', 'system', 'field']; /** * Users to use during this test. diff --git a/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php index e20a01ba337bfb2569e6e4f1da9f47d69d20b440..f14779e26be5c6f79d27b86bdae65701493723bc 100644 --- a/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php +++ b/core/modules/user/tests/src/Kernel/Views/UserViewsFieldAccessTest.php @@ -16,7 +16,7 @@ class UserViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'entity_test', 'language']; + public static $modules = ['user', 'entity_test', 'language']; /** * {@inheritdoc} diff --git a/core/modules/user/tests/src/Kernel/WhosOnlineBlockTest.php b/core/modules/user/tests/src/Kernel/WhosOnlineBlockTest.php index 60403f966c9614aae165e50d8ed918379ee5b285..02844a1610f42bca8f0596864f9d0203a791ff78 100644 --- a/core/modules/user/tests/src/Kernel/WhosOnlineBlockTest.php +++ b/core/modules/user/tests/src/Kernel/WhosOnlineBlockTest.php @@ -16,7 +16,7 @@ class WhosOnlineBlockTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'block', 'views']; + public static $modules = ['system', 'user', 'block', 'views']; /** * The block being tested. diff --git a/core/modules/views/src/Tests/FieldApiDataTest.php b/core/modules/views/src/Tests/FieldApiDataTest.php index 287adff73254d8d633217efcf3d3fb554ee6c6fd..b20a8712e615eb05ef3e0416c8ed7cbfe97ffc55 100644 --- a/core/modules/views/src/Tests/FieldApiDataTest.php +++ b/core/modules/views/src/Tests/FieldApiDataTest.php @@ -21,7 +21,7 @@ class FieldApiDataTest extends FieldTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * {@inheritdoc} diff --git a/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php b/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php index 5d162355e1f6dc0624bb996ad7dfba6d930e20bb..04ba4cab993eeeef1594f39eef2304a7a534aacd 100644 --- a/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php +++ b/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php @@ -24,7 +24,7 @@ class DisplayFeedTest extends PluginTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'views']; + public static $modules = ['block', 'node', 'views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/src/Tests/Plugin/StyleOpmlTest.php b/core/modules/views/src/Tests/Plugin/StyleOpmlTest.php index 5516df3d05461753ffa3a1f75a9d65b2bf2025b6..66a8bc826be43cb9ffef0adc95530ca24ad22af5 100644 --- a/core/modules/views/src/Tests/Plugin/StyleOpmlTest.php +++ b/core/modules/views/src/Tests/Plugin/StyleOpmlTest.php @@ -22,7 +22,7 @@ class StyleOpmlTest extends PluginTestBase { * * @var array */ - protected static $modules = ['aggregator']; + public static $modules = ['aggregator']; /** * {@inheritdoc} diff --git a/core/modules/views/src/Tests/ViewKernelTestBase.php b/core/modules/views/src/Tests/ViewKernelTestBase.php index 452d24ea2db6201e7bedd6128df8f6eea6a7794e..5a232859183607f4e492bac1d5398c83b4d1f78c 100644 --- a/core/modules/views/src/Tests/ViewKernelTestBase.php +++ b/core/modules/views/src/Tests/ViewKernelTestBase.php @@ -26,7 +26,7 @@ abstract class ViewKernelTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'views', 'views_test_config', 'views_test_data', 'user']; + public static $modules = ['system', 'views', 'views_test_config', 'views_test_data', 'user']; /** * {@inheritdoc} diff --git a/core/modules/views/src/Tests/ViewTestBase.php b/core/modules/views/src/Tests/ViewTestBase.php index 9db2136e7882fb270e23e85a8f817ce944d5e725..e1e5190f5932369727866a39e586473c016d80d1 100644 --- a/core/modules/views/src/Tests/ViewTestBase.php +++ b/core/modules/views/src/Tests/ViewTestBase.php @@ -30,7 +30,7 @@ abstract class ViewTestBase extends WebTestBase { * * @var array */ - protected static $modules = ['views', 'views_test_config']; + public static $modules = ['views', 'views_test_config']; protected function setUp($import_test_views = TRUE) { parent::setUp(); diff --git a/core/modules/views/src/Tests/Wizard/WizardTestBase.php b/core/modules/views/src/Tests/Wizard/WizardTestBase.php index 404af4d6e4d7118ef09a9fc775400ec0b1b707c9..29b96d38c198159f948764aa9a37084d4e3d7f7b 100644 --- a/core/modules/views/src/Tests/Wizard/WizardTestBase.php +++ b/core/modules/views/src/Tests/Wizard/WizardTestBase.php @@ -19,7 +19,7 @@ abstract class WizardTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block', 'rest']; + public static $modules = ['node', 'views_ui', 'block', 'rest']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/DefaultViewsTest.php b/core/modules/views/tests/src/Functional/DefaultViewsTest.php index 8a591d3122ef20274289843321f0fda530d6419d..b6120707d98c629fad5fe2e577be5fd037e441cd 100644 --- a/core/modules/views/tests/src/Functional/DefaultViewsTest.php +++ b/core/modules/views/tests/src/Functional/DefaultViewsTest.php @@ -28,7 +28,7 @@ class DefaultViewsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views', 'node', 'search', 'comment', 'taxonomy', 'block', 'user']; + public static $modules = ['views', 'node', 'search', 'comment', 'taxonomy', 'block', 'user']; /** * An array of argument arrays to use for default views. diff --git a/core/modules/views/tests/src/Functional/Entity/BaseFieldAccessTest.php b/core/modules/views/tests/src/Functional/Entity/BaseFieldAccessTest.php index 876d1aba8a1b44259a5ecc82b472c6fe42871cde..19aa191e1413b11d2aff7c661e95205cab3af7c6 100644 --- a/core/modules/views/tests/src/Functional/Entity/BaseFieldAccessTest.php +++ b/core/modules/views/tests/src/Functional/Entity/BaseFieldAccessTest.php @@ -25,7 +25,7 @@ class BaseFieldAccessTest extends ViewTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'views', 'views_test_config', 'entity_test', 'node', 'views_entity_test', ]; diff --git a/core/modules/views/tests/src/Functional/Entity/FieldEntityTest.php b/core/modules/views/tests/src/Functional/Entity/FieldEntityTest.php index e9cdf2c9c4ea3729471439a56bd3fe1429055c8b..2393b6d2699390a035c1ff7d126062d63b00b882 100644 --- a/core/modules/views/tests/src/Functional/Entity/FieldEntityTest.php +++ b/core/modules/views/tests/src/Functional/Entity/FieldEntityTest.php @@ -31,7 +31,7 @@ class FieldEntityTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'comment']; + public static $modules = ['node', 'comment']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php b/core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php index 3d62103a538762d1184ef147c444e269adae222a..2a227c543373b7c04f08e1d6dc9aece9493766d5 100644 --- a/core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php +++ b/core/modules/views/tests/src/Functional/Entity/FieldEntityTranslationTest.php @@ -19,7 +19,7 @@ class FieldEntityTranslationTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'locale', 'content_translation', 'node']; + public static $modules = ['language', 'locale', 'content_translation', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Entity/FilterEntityBundleTest.php b/core/modules/views/tests/src/Functional/Entity/FilterEntityBundleTest.php index 80a7e125849086e2bb46008602a4a306e834ea74..22bb6435c87df83f94a8510e5ea01feeb35c09f6 100644 --- a/core/modules/views/tests/src/Functional/Entity/FilterEntityBundleTest.php +++ b/core/modules/views/tests/src/Functional/Entity/FilterEntityBundleTest.php @@ -26,7 +26,7 @@ class FilterEntityBundleTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Entity bundle data. diff --git a/core/modules/views/tests/src/Functional/Entity/LatestRevisionFilterTest.php b/core/modules/views/tests/src/Functional/Entity/LatestRevisionFilterTest.php index 3d978001cf63532dd17420247c048e31ccb0f6af..d73a11793bc23913aa973e912968bcc4633f7742 100644 --- a/core/modules/views/tests/src/Functional/Entity/LatestRevisionFilterTest.php +++ b/core/modules/views/tests/src/Functional/Entity/LatestRevisionFilterTest.php @@ -40,7 +40,7 @@ class LatestRevisionFilterTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Entity/ViewNonTranslatableEntityTest.php b/core/modules/views/tests/src/Functional/Entity/ViewNonTranslatableEntityTest.php index 0b9d0116089ff954371ade3ff2116f1792e5211b..911cd61e66a5c04bfb701824f00372dc1273794b 100644 --- a/core/modules/views/tests/src/Functional/Entity/ViewNonTranslatableEntityTest.php +++ b/core/modules/views/tests/src/Functional/Entity/ViewNonTranslatableEntityTest.php @@ -18,7 +18,7 @@ class ViewNonTranslatableEntityTest extends BrowserTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'content_translation', 'language_test', diff --git a/core/modules/views/tests/src/Functional/GlossaryTest.php b/core/modules/views/tests/src/Functional/GlossaryTest.php index aed04d6285247cc4c0a8847c7c6ab910db861965..ed247f1829bc1de8cb0968d4d6b68a1513053735 100644 --- a/core/modules/views/tests/src/Functional/GlossaryTest.php +++ b/core/modules/views/tests/src/Functional/GlossaryTest.php @@ -21,7 +21,7 @@ class GlossaryTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Tests the default glossary view. diff --git a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonAnonTest.php b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonAnonTest.php index e02ce83a9b4cf9adff9157aea939ff30b1cab2bd..134b00f223bda62381b327ba39994044dcfcf57b 100644 --- a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonAnonTest.php +++ b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonAnonTest.php @@ -15,7 +15,7 @@ class ViewHalJsonAnonTest extends ViewResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonBasicAuthTest.php b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonBasicAuthTest.php index bf353b19f61fdefdd9fd3e4e9c01fcb05b293e66..87c39852cff537138a3be311673a84575fe9623f 100644 --- a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonBasicAuthTest.php +++ b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class ViewHalJsonBasicAuthTest extends ViewResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonCookieTest.php b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonCookieTest.php index f0b87c2423a65e70582ca2f9f1ee9641d46ba435..aa5aa4f6b7ad71794212f2a64b95ece915297435 100644 --- a/core/modules/views/tests/src/Functional/Hal/ViewHalJsonCookieTest.php +++ b/core/modules/views/tests/src/Functional/Hal/ViewHalJsonCookieTest.php @@ -15,7 +15,7 @@ class ViewHalJsonCookieTest extends ViewResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php b/core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php index 82923c9b2b479e82cd696c9f101d135083b7b26d..dc914ce219e6d0f8aeb575b647faf5e366d2771c 100644 --- a/core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php +++ b/core/modules/views/tests/src/Functional/Handler/AreaHTTPStatusCodeTest.php @@ -25,7 +25,7 @@ class AreaHTTPStatusCodeTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Tests the area handler. diff --git a/core/modules/views/tests/src/Functional/Handler/AreaTest.php b/core/modules/views/tests/src/Functional/Handler/AreaTest.php index 2a24374764598492d1ab268d8efacb53a47234ce..1827319bbd05d48a6181cd788ed8d143d09d33d4 100644 --- a/core/modules/views/tests/src/Functional/Handler/AreaTest.php +++ b/core/modules/views/tests/src/Functional/Handler/AreaTest.php @@ -27,7 +27,7 @@ class AreaTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui']; + public static $modules = ['node', 'views_ui']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Handler/ArgumentStringTest.php b/core/modules/views/tests/src/Functional/Handler/ArgumentStringTest.php index a1a57f719ff973fa11793e37932655a1f4a0cde0..17ece944c5cd9eb8cd3516775d9fbda469bf6169 100644 --- a/core/modules/views/tests/src/Functional/Handler/ArgumentStringTest.php +++ b/core/modules/views/tests/src/Functional/Handler/ArgumentStringTest.php @@ -24,7 +24,7 @@ class ArgumentStringTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Tests the glossary feature. diff --git a/core/modules/views/tests/src/Functional/Handler/FieldDropButtonTest.php b/core/modules/views/tests/src/Functional/Handler/FieldDropButtonTest.php index b3c2b8051efc165a0f7431fb7907be038f03cd20..e0e380b0f8d68eefec6387705643a75f68a92474 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldDropButtonTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldDropButtonTest.php @@ -24,7 +24,7 @@ class FieldDropButtonTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Handler/FieldEntityOperationsTest.php b/core/modules/views/tests/src/Functional/Handler/FieldEntityOperationsTest.php index 028973c4a762300a105b4fd59be438f11076de7c..7ced4f7071e0ac7b553251c55c86975872b4258f 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldEntityOperationsTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldEntityOperationsTest.php @@ -26,7 +26,7 @@ class FieldEntityOperationsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'language', 'views_ui']; + public static $modules = ['node', 'language', 'views_ui']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsTest.php b/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsTest.php index b2d96adf50a49fa099ef4f817f6a116d4bf9c85a..d38ba41792bac35df11e849c10c26bef37008599 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsTest.php @@ -30,7 +30,7 @@ class FieldGroupRowsTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'field_test']; + public static $modules = ['node', 'field_test']; /** * Field that will be created to test the group/ungroup rows functionality diff --git a/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsWebTest.php b/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsWebTest.php index 0efbd5166b22109d9f6b016adec4929348ba6e03..275960cb0d4a9162cd43c890eff0e019cea9a2f1 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsWebTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldGroupRowsWebTest.php @@ -26,7 +26,7 @@ class FieldGroupRowsWebTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * The page node type. diff --git a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php index a5d0fb9093d0d95f74aef0b376b1fc042e81bb16..eda5b81abe1f4ae8c1220f1b21d1a881de39a461 100644 --- a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php @@ -30,7 +30,7 @@ class FieldWebTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Maps between the key in the expected result and the query result. diff --git a/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php b/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php index 6e52bac4d6f7e46503293b4706626ab6eb6766ac..ec3b52385fb6389b605b617fac1567586f683a66 100644 --- a/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FilterDateTest.php @@ -29,7 +29,7 @@ class FilterDateTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'datetime']; + public static $modules = ['node', 'views_ui', 'datetime']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Handler/FilterPlaceholderTextTest.php b/core/modules/views/tests/src/Functional/Handler/FilterPlaceholderTextTest.php index 81f6826adddc4f8870c9a11fd8f45626978fcb0e..7d852f7c87003378789354c130ed09dde7e84bff 100644 --- a/core/modules/views/tests/src/Functional/Handler/FilterPlaceholderTextTest.php +++ b/core/modules/views/tests/src/Functional/Handler/FilterPlaceholderTextTest.php @@ -21,7 +21,7 @@ class FilterPlaceholderTextTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Tests that HTML placeholders are added, when appropriate. diff --git a/core/modules/views/tests/src/Functional/Handler/HandlerAllTest.php b/core/modules/views/tests/src/Functional/Handler/HandlerAllTest.php index b81ef29af22b14e0920c95274e3fc9612b8b6f3b..1a37ce830703eb76686e13d9d980bfde8d4c108d 100644 --- a/core/modules/views/tests/src/Functional/Handler/HandlerAllTest.php +++ b/core/modules/views/tests/src/Functional/Handler/HandlerAllTest.php @@ -23,7 +23,7 @@ class HandlerAllTest extends ViewTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'aggregator', 'book', 'block', diff --git a/core/modules/views/tests/src/Functional/Handler/HandlerTest.php b/core/modules/views/tests/src/Functional/Handler/HandlerTest.php index 1522f8d76f49151bdc1fba2ec563267804f621ff..cffe6d1402628934691481f415d11f0dd77c65b8 100644 --- a/core/modules/views/tests/src/Functional/Handler/HandlerTest.php +++ b/core/modules/views/tests/src/Functional/Handler/HandlerTest.php @@ -30,7 +30,7 @@ class HandlerTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'comment', 'node']; + public static $modules = ['views_ui', 'comment', 'node']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/AccessTest.php b/core/modules/views/tests/src/Functional/Plugin/AccessTest.php index 31ab4abcfa2be99b4f7dd20e6e12da7562cd99d1..31a64cc1cf108d0b182c93d88b2f60771ada624c 100644 --- a/core/modules/views/tests/src/Functional/Plugin/AccessTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/AccessTest.php @@ -27,7 +27,7 @@ class AccessTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Web user for testing. diff --git a/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php b/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php index bde1361999c92157449749fff4ff40633038581c..b12e43e857c26d89b84994afa530746686dcea86 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php @@ -35,7 +35,7 @@ class ArgumentDefaultTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block']; + public static $modules = ['node', 'views_ui', 'block']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/CacheTagTest.php b/core/modules/views/tests/src/Functional/Plugin/CacheTagTest.php index 79273d0c2618ac8611dc02ed4f67faefd8a85a8e..1d78204db9a93022e97ef1555806bc8c6dbaccc7 100644 --- a/core/modules/views/tests/src/Functional/Plugin/CacheTagTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/CacheTagTest.php @@ -27,7 +27,7 @@ class CacheTagTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * The node storage. diff --git a/core/modules/views/tests/src/Functional/Plugin/CacheWebTest.php b/core/modules/views/tests/src/Functional/Plugin/CacheWebTest.php index 67996aa852c6c2e6b9b8c3ac2b59710d30dbc762..c919bcb8312fdb6693739b0b07071020b3408298 100644 --- a/core/modules/views/tests/src/Functional/Plugin/CacheWebTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/CacheWebTest.php @@ -29,7 +29,7 @@ class CacheWebTest extends ViewTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php b/core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php index 722fc8293571af1b4b94c9f53eeb9bb1551ff125..41356b69c76fc34db5abe31db0a28270ded603ec 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ContextualFiltersBlockContextTest.php @@ -21,7 +21,7 @@ class ContextualFiltersBlockContextTest extends ViewTestBase { * * @var array */ - protected static $modules = ['block', 'block_test_views', 'views_ui', 'node']; + public static $modules = ['block', 'block_test_views', 'views_ui', 'node']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Functional/Plugin/DisabledDisplayTest.php b/core/modules/views/tests/src/Functional/Plugin/DisabledDisplayTest.php index 7b00ea53fc522e26374736589469abccb7bca41a..708ac5503037f5dc3924e73544bdbd1a1e23e46f 100644 --- a/core/modules/views/tests/src/Functional/Plugin/DisabledDisplayTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/DisabledDisplayTest.php @@ -24,7 +24,7 @@ class DisabledDisplayTest extends ViewTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'views']; + public static $modules = ['block', 'node', 'views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php index a8d3153b040ffb0fd9b7650ebbe0be685a032ba4..44668447c783c16347e4e169d0bb55b28159b6b5 100644 --- a/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php @@ -25,7 +25,7 @@ class DisplayAttachmentTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views']; + public static $modules = ['node', 'views']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php index 8b757dc69494451e1aabdf4eb08d16b6f14cda71..499d1b2c8abf1ef723b3b97a25b0bd8bfc69b073 100644 --- a/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/DisplayEntityReferenceTest.php @@ -32,7 +32,7 @@ class DisplayEntityReferenceTest extends ViewTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field', 'views_ui']; + public static $modules = ['entity_test', 'field', 'views_ui']; /** * The used field name in the test. diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php index c31698a1b1fbcb6b7bf598ea78f88f93144fce79..501d9226eedab7977c5dd5cb9dd24a6164e46742 100644 --- a/core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/DisplayPageWebTest.php @@ -27,7 +27,7 @@ class DisplayPageWebTest extends ViewTestBase { * * @var array */ - protected static $modules = ['menu_ui', 'block', 'views_ui']; + public static $modules = ['menu_ui', 'block', 'views_ui']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php index c0a99576c33a0c60d6ea01e206631ae29ddb9be7..d8deaa598b860e1daf4e0363fd97b80b3ecdc91b 100644 --- a/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/DisplayTest.php @@ -26,7 +26,7 @@ class DisplayTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'node', 'block']; + public static $modules = ['views_ui', 'node', 'block']; protected function setUp($import_test_views = TRUE) { parent::setUp(); diff --git a/core/modules/views/tests/src/Functional/Plugin/ExposedFormCheckboxesTest.php b/core/modules/views/tests/src/Functional/Plugin/ExposedFormCheckboxesTest.php index 5546d86c64e115554678885044a9867bfd9b05f9..f5901a080d155dc5bb07109efa43f9823e297cd3 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ExposedFormCheckboxesTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ExposedFormCheckboxesTest.php @@ -27,7 +27,7 @@ class ExposedFormCheckboxesTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views_ui', 'taxonomy']; + public static $modules = ['node', 'views_ui', 'taxonomy']; /** * Test terms. diff --git a/core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php b/core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php index eff3af036c14c5ef3f7aa4cfdbeffb5759fd94ea..4cd81d2891c289ba6f8546deff349fa0298e6556 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ExposedFormTest.php @@ -31,7 +31,7 @@ class ExposedFormTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block', 'entity_test']; + public static $modules = ['node', 'views_ui', 'block', 'entity_test']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/FilterTest.php b/core/modules/views/tests/src/Functional/Plugin/FilterTest.php index 6cf285e3e324414d2330c7a44afe624b9b23429f..60424108f5fab0ace2cec009e405ec5881365dc9 100644 --- a/core/modules/views/tests/src/Functional/Plugin/FilterTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/FilterTest.php @@ -26,7 +26,7 @@ class FilterTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'node']; + public static $modules = ['views_ui', 'node']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/MenuLinkTest.php b/core/modules/views/tests/src/Functional/Plugin/MenuLinkTest.php index c45208430017a476c357dd6a77f599a6b8192ce1..8afbb57b8c8cfe46eafd5ae176b5532e5b7dbc9a 100644 --- a/core/modules/views/tests/src/Functional/Plugin/MenuLinkTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/MenuLinkTest.php @@ -24,7 +24,7 @@ class MenuLinkTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views', 'views_ui', 'user', 'node', 'menu_ui', 'block']; + public static $modules = ['views', 'views_ui', 'user', 'node', 'menu_ui', 'block']; /** * A user with permission to administer views, menus and view content. diff --git a/core/modules/views/tests/src/Functional/Plugin/MiniPagerTest.php b/core/modules/views/tests/src/Functional/Plugin/MiniPagerTest.php index d8d7507b26c1a5ff1c201b175c45ad277348d312..492d22f987979695678bd7e5e07db9bb2ab06a1e 100644 --- a/core/modules/views/tests/src/Functional/Plugin/MiniPagerTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/MiniPagerTest.php @@ -25,7 +25,7 @@ class MiniPagerTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * Nodes used by the test. diff --git a/core/modules/views/tests/src/Functional/Plugin/NumericFormatPluralTest.php b/core/modules/views/tests/src/Functional/Plugin/NumericFormatPluralTest.php index e72a2b2b58799622939d0bdab6ba52fd2610c9f0..08f2504c54ea92ed07ebb3627d90ebc250e202c6 100644 --- a/core/modules/views/tests/src/Functional/Plugin/NumericFormatPluralTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/NumericFormatPluralTest.php @@ -18,7 +18,7 @@ class NumericFormatPluralTest extends ViewTestBase { * * @var array */ - protected static $modules = ['views_ui', 'file', 'language', 'locale']; + public static $modules = ['views_ui', 'file', 'language', 'locale']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Functional/Plugin/PagerTest.php b/core/modules/views/tests/src/Functional/Plugin/PagerTest.php index cc64b6ef1d04f9fa2f459048963eb5a7c434b875..272a3f073dfdc42e300b21c2244444e38f84fd03 100644 --- a/core/modules/views/tests/src/Functional/Plugin/PagerTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/PagerTest.php @@ -28,7 +28,7 @@ class PagerTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui']; + public static $modules = ['node', 'views_ui']; /** * String translation storage object. diff --git a/core/modules/views/tests/src/Functional/Plugin/StyleSummaryTest.php b/core/modules/views/tests/src/Functional/Plugin/StyleSummaryTest.php index 77674e2ff407a4eed09d40977160761312f5834c..a2359b97344e974d19e63a5dc2b114727687df5c 100644 --- a/core/modules/views/tests/src/Functional/Plugin/StyleSummaryTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/StyleSummaryTest.php @@ -15,7 +15,7 @@ class StyleSummaryTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'views_ui']; + public static $modules = ['entity_test', 'views_ui']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php b/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php index ae0d5cbc5fe049b19704e2001c79d3f987d333c8..e3faa88405fd8cbb5fa8eb017b9b56f9658873ba 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ViewsBulkTest.php @@ -23,7 +23,7 @@ class ViewsBulkTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views']; + public static $modules = ['node', 'views']; public function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/Functional/Plugin/ViewsFormTest.php b/core/modules/views/tests/src/Functional/Plugin/ViewsFormTest.php index 9ad5e43918e903c92d654568f39cb5799c81e2a5..3f6e1eca5fd52b573a05d63c4ed36cabdd6f244d 100644 --- a/core/modules/views/tests/src/Functional/Plugin/ViewsFormTest.php +++ b/core/modules/views/tests/src/Functional/Plugin/ViewsFormTest.php @@ -16,7 +16,7 @@ class ViewsFormTest extends ViewTestBase { * * @var array */ - protected static $modules = ['action_bulk_test']; + public static $modules = ['action_bulk_test']; /** * Tests the Views form wrapper. diff --git a/core/modules/views/tests/src/Functional/RenderCacheWebTest.php b/core/modules/views/tests/src/Functional/RenderCacheWebTest.php index c297b7ea85700a1c0c893c423cd8558e6839ff38..f8dfdd810da26b8abd7532f6a0161b07cf75f0e6 100644 --- a/core/modules/views/tests/src/Functional/RenderCacheWebTest.php +++ b/core/modules/views/tests/src/Functional/RenderCacheWebTest.php @@ -14,7 +14,7 @@ class RenderCacheWebTest extends ViewTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'block']; + public static $modules = ['node', 'block']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Rest/ViewJsonBasicAuthTest.php b/core/modules/views/tests/src/Functional/Rest/ViewJsonBasicAuthTest.php index 80f96132a349a0f4e164bd5094174845e14f8f3d..4ebe08c3367cc5a7dbe99c1f21f46f58c5493463 100644 --- a/core/modules/views/tests/src/Functional/Rest/ViewJsonBasicAuthTest.php +++ b/core/modules/views/tests/src/Functional/Rest/ViewJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class ViewJsonBasicAuthTest extends ViewResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Rest/ViewResourceTestBase.php b/core/modules/views/tests/src/Functional/Rest/ViewResourceTestBase.php index f5dcf3e623639e32303c49b5a4b1b99d3641fe76..b57256365e3d28d4ce669b4a7d368e7b4b536407 100644 --- a/core/modules/views/tests/src/Functional/Rest/ViewResourceTestBase.php +++ b/core/modules/views/tests/src/Functional/Rest/ViewResourceTestBase.php @@ -10,7 +10,7 @@ abstract class ViewResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['views']; + public static $modules = ['views']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Rest/ViewXmlBasicAuthTest.php b/core/modules/views/tests/src/Functional/Rest/ViewXmlBasicAuthTest.php index a3af943dabb0bc18d65856d35e87b45bb8bdff40..ba9e58b3e6b1c56e010ca124b3348eaa7b2d481a 100644 --- a/core/modules/views/tests/src/Functional/Rest/ViewXmlBasicAuthTest.php +++ b/core/modules/views/tests/src/Functional/Rest/ViewXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class ViewXmlBasicAuthTest extends ViewResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/SearchIntegrationTest.php b/core/modules/views/tests/src/Functional/SearchIntegrationTest.php index 479581b75d848b321ddbceda1cd55dc219af030c..fbbc96582b72efa6fa4d0758f3b210c70d26784b 100644 --- a/core/modules/views/tests/src/Functional/SearchIntegrationTest.php +++ b/core/modules/views/tests/src/Functional/SearchIntegrationTest.php @@ -19,7 +19,7 @@ class SearchIntegrationTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'search']; + public static $modules = ['node', 'search']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Functional/SearchMultilingualTest.php b/core/modules/views/tests/src/Functional/SearchMultilingualTest.php index 1849306fa8fbd4eb0b7245dc30c8a07fe5db9623..d6a72bf8cdfb1f8e1cc53f996ef53c554f404a72 100644 --- a/core/modules/views/tests/src/Functional/SearchMultilingualTest.php +++ b/core/modules/views/tests/src/Functional/SearchMultilingualTest.php @@ -20,7 +20,7 @@ class SearchMultilingualTest extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'search', 'language', 'content_translation']; + public static $modules = ['node', 'search', 'language', 'content_translation']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Functional/TaxonomyGlossaryTest.php b/core/modules/views/tests/src/Functional/TaxonomyGlossaryTest.php index 1f7a4c630aa313c5dd15cf327df66c4d14ccec35..fbf5f414588f9cdffe5a982c5556338153ddac04 100644 --- a/core/modules/views/tests/src/Functional/TaxonomyGlossaryTest.php +++ b/core/modules/views/tests/src/Functional/TaxonomyGlossaryTest.php @@ -18,7 +18,7 @@ class TaxonomyGlossaryTest extends ViewTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Functional/ViewTestBase.php b/core/modules/views/tests/src/Functional/ViewTestBase.php index ec499ae369ef583e1576dbdb8070d6baab11af03..10bc5d48bcbcd271106eb0404eafbfcf5efa694d 100644 --- a/core/modules/views/tests/src/Functional/ViewTestBase.php +++ b/core/modules/views/tests/src/Functional/ViewTestBase.php @@ -28,7 +28,7 @@ abstract class ViewTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['views', 'views_test_config']; + public static $modules = ['views', 'views_test_config']; protected function setUp($import_test_views = TRUE) { parent::setUp(); diff --git a/core/modules/views/tests/src/Functional/ViewsEscapingTest.php b/core/modules/views/tests/src/Functional/ViewsEscapingTest.php index 90443ba36ded58bfa8e2e8e639079bed9ef7acfc..80a83987222640c56c46263636c5d911b93949d7 100644 --- a/core/modules/views/tests/src/Functional/ViewsEscapingTest.php +++ b/core/modules/views/tests/src/Functional/ViewsEscapingTest.php @@ -25,7 +25,7 @@ class ViewsEscapingTest extends ViewTestBase { * * @see \Drupal\simpletest\WebTestBase::setup() */ - protected static $modules = ['views', 'theme_test']; + public static $modules = ['views', 'theme_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php b/core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php index 4db8a0f027c105396e4e370f43c58b3cc8733767..9bdb405b86fdea5b5ee9afc64810a116bfd05657 100644 --- a/core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php +++ b/core/modules/views/tests/src/Functional/ViewsThemeIntegrationTest.php @@ -28,7 +28,7 @@ class ViewsThemeIntegrationTest extends ViewTestBase { * * @see \Drupal\simpletest\WebTestBase::setup() */ - protected static $modules = ['views', 'theme_test']; + public static $modules = ['views', 'theme_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php index 7067a6bcd10717bb757b731558b511e772766e31..680d64496edc5b1cb93402ebd0bbbfad70cd441d 100644 --- a/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php +++ b/core/modules/views/tests/src/Functional/Wizard/TaggedWithTest.php @@ -21,7 +21,7 @@ class TaggedWithTest extends WizardTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Node type with an autocomplete tagging field. diff --git a/core/modules/views/tests/src/Functional/Wizard/WizardTestBase.php b/core/modules/views/tests/src/Functional/Wizard/WizardTestBase.php index 924db29c604173097bf62cc530c59d002061b2a1..0178c08c25e9314a95e5ef9050c42e0f33041083 100644 --- a/core/modules/views/tests/src/Functional/Wizard/WizardTestBase.php +++ b/core/modules/views/tests/src/Functional/Wizard/WizardTestBase.php @@ -14,7 +14,7 @@ abstract class WizardTestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block', 'rest']; + public static $modules = ['node', 'views_ui', 'block', 'rest']; protected function setUp($import_test_views = TRUE) { parent::setUp($import_test_views); diff --git a/core/modules/views/tests/src/FunctionalJavascript/ClickSortingAJAXTest.php b/core/modules/views/tests/src/FunctionalJavascript/ClickSortingAJAXTest.php index 1a73eeeab8e1edf57369eb9d46e41f29255382c7..085fd821d527f52df4c89a55dcd2b34307c4f625 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/ClickSortingAJAXTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/ClickSortingAJAXTest.php @@ -20,7 +20,7 @@ class ClickSortingAJAXTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_test_config']; + public static $modules = ['node', 'views', 'views_test_config']; public static $testViews = ['test_content_ajax']; diff --git a/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php b/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php index a229eeddad56b59ad955d440e8440001077eae04..c6cbaf5764125328de5e807b31ac581d536f1058 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/ExposedFilterAJAXTest.php @@ -19,7 +19,7 @@ class ExposedFilterAJAXTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_test_modal']; + public static $modules = ['node', 'views', 'views_test_modal']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/FunctionalJavascript/GlossaryViewTest.php b/core/modules/views/tests/src/FunctionalJavascript/GlossaryViewTest.php index 37036646133ec5fd5638262c74d6508985bcb307..d4760e59b41babb67642ae3f8fd38b75a211ec93 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/GlossaryViewTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/GlossaryViewTest.php @@ -22,7 +22,7 @@ class GlossaryViewTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'node', 'views', 'views_test_config']; + public static $modules = ['language', 'node', 'views', 'views_test_config']; /** * @var array diff --git a/core/modules/views/tests/src/FunctionalJavascript/PaginationAJAXTest.php b/core/modules/views/tests/src/FunctionalJavascript/PaginationAJAXTest.php index 6d37995dafdbd7e3eafba2ba5032866c25e19dae..de4efd24abdffda4b905f9c7d63a3ead5fb9df64 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/PaginationAJAXTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/PaginationAJAXTest.php @@ -20,7 +20,7 @@ class PaginationAJAXTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_test_config']; + public static $modules = ['node', 'views', 'views_test_config']; /** * @var array diff --git a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/ContextualFilterTest.php b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/ContextualFilterTest.php index 360d4c4c3963f6c0e369351363f0711b65a7f637..f0ac6085487c076ee1d5e45ff7f08a1b5a928678 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/ContextualFilterTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/ContextualFilterTest.php @@ -15,7 +15,7 @@ class ContextualFilterTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui', 'views_test_config']; + public static $modules = ['node', 'views', 'views_ui', 'views_test_config']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php index 410c9e2f13c4347495815d56bfbe513e146b0106..079fe99ee4af000269e8016acb21f2a5aef92d78 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/FieldTest.php @@ -19,7 +19,7 @@ class FieldTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui', 'views_test_config']; + public static $modules = ['node', 'views', 'views_ui', 'views_test_config']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php index e4ab1335c97531781a644b9be555ac5af923825c..1bc8a486d32e4ddd77acb5cb2bc5d8c4a7e6052f 100644 --- a/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php +++ b/core/modules/views/tests/src/FunctionalJavascript/Plugin/views/Handler/GroupedExposedFilterTest.php @@ -17,7 +17,7 @@ class GroupedExposedFilterTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui', 'user', 'views_test_config']; + public static $modules = ['node', 'views', 'views_ui', 'user', 'views_test_config']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Entity/EntityViewsWithMultivalueBasefieldTest.php b/core/modules/views/tests/src/Kernel/Entity/EntityViewsWithMultivalueBasefieldTest.php index 3a5014f64c311e41a1f5128e6cdb40f4957c2995..edf0fb0e10ba0719d2d28bc7d410de8a792009ae 100644 --- a/core/modules/views/tests/src/Kernel/Entity/EntityViewsWithMultivalueBasefieldTest.php +++ b/core/modules/views/tests/src/Kernel/Entity/EntityViewsWithMultivalueBasefieldTest.php @@ -16,7 +16,7 @@ class EntityViewsWithMultivalueBasefieldTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php b/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php index 961de7928cd2978ddbad96ebf4fb2a9eb3c33c54..a110f002094932b6d8a946440e08840cadc0158e 100644 --- a/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php +++ b/core/modules/views/tests/src/Kernel/Entity/RowEntityRenderersTest.php @@ -21,7 +21,7 @@ class RowEntityRenderersTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['field', 'filter', 'text', 'node', 'user', 'language', 'views_test_language']; + public static $modules = ['field', 'filter', 'text', 'node', 'user', 'language', 'views_test_language']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Entity/ViewEntityDependenciesTest.php b/core/modules/views/tests/src/Kernel/Entity/ViewEntityDependenciesTest.php index 46dce37482f5d96db488570a3419e6596993d345..34f58122cafb799541c8077cb8afc2cf4e5fe0e1 100644 --- a/core/modules/views/tests/src/Kernel/Entity/ViewEntityDependenciesTest.php +++ b/core/modules/views/tests/src/Kernel/Entity/ViewEntityDependenciesTest.php @@ -29,7 +29,7 @@ class ViewEntityDependenciesTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['node', 'comment', 'user', 'field', 'text', 'search']; + public static $modules = ['node', 'comment', 'user', 'field', 'text', 'search']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php index 04306b56a1252c5692a4274aa9c820c1cc490210..24e4e6af5105c88c2349329cb964f6c8fd5ccb10 100644 --- a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php +++ b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php @@ -26,7 +26,7 @@ class ViewsEntitySchemaSubscriberIntegrationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'entity_test_update', 'user', 'text']; + public static $modules = ['entity_test', 'entity_test_update', 'user', 'text']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php b/core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php index 1b1be514e60e7cfd05a2ca7dccef6cf2702c4339..a113f0c4ffd6c1001f01b8658382a15cd78781ca 100644 --- a/core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/AreaEmptyTest.php @@ -16,7 +16,7 @@ class AreaEmptyTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php b/core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php index 9de113b69a142262f9e98fbcbed9106894e66bc3..672e63d2d83c283d03e47e89b05f9c6c50d6d74e 100644 --- a/core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/AreaEntityTest.php @@ -24,7 +24,7 @@ class AreaEntityTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'user', 'block']; + public static $modules = ['entity_test', 'user', 'block']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/AreaOrderTest.php b/core/modules/views/tests/src/Kernel/Handler/AreaOrderTest.php index e670eab6c15b67d599a400e527d9e32777494883..84a66ab5c8facf92249eccaad1e270e0e43f83c4 100644 --- a/core/modules/views/tests/src/Kernel/Handler/AreaOrderTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/AreaOrderTest.php @@ -21,7 +21,7 @@ class AreaOrderTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user', 'block']; + public static $modules = ['user', 'block']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php b/core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php index 0cf95c37e47f60cfcdb4f6d70af563344a9acc06..2feaaf144e0539937374f9f8a0fd54f93a4ecf6c 100644 --- a/core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/AreaTextTest.php @@ -13,7 +13,7 @@ */ class AreaTextTest extends ViewsKernelTestBase { - protected static $modules = ['system', 'user', 'filter']; + public static $modules = ['system', 'user', 'filter']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/AreaViewTest.php b/core/modules/views/tests/src/Kernel/Handler/AreaViewTest.php index 2b57885e6261ed78ca2d618e643e154437c75fe0..a3ab52960b29e66392a0ccd6c7f89eaa7628c7e7 100644 --- a/core/modules/views/tests/src/Kernel/Handler/AreaViewTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/AreaViewTest.php @@ -18,7 +18,7 @@ class AreaViewTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php b/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php index 336c5c2b62f4cfafc467608a34ffa142c666052f..ed00f68a066d0bdb2e33a775a476bdb334c40990 100644 --- a/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php @@ -26,7 +26,7 @@ class ComputedFieldTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php index e485d16c21d8b280b04cfc68fd62277ea0221e1d..ee219ab7a49ab0f43404d8c7ecbf3fda8f97d9b7 100644 --- a/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/EntityTestViewsFieldAccessTest.php @@ -14,7 +14,7 @@ class EntityTestViewsFieldAccessTest extends FieldFieldAccessTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldCounterTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldCounterTest.php index 26de19f0c3d6a5d594ec843b8ce9cc9ac671b637..dbd04d83374df11c71c2ad0c241b6d557dae9453 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldCounterTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldCounterTest.php @@ -17,7 +17,7 @@ class FieldCounterTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldDropbuttonTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldDropbuttonTest.php index ffc1a80e2197ac378ba3fadea6a900d189194886..b789bd62ad3ce0c6fc31ac49b3c07d45d8d62db8 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldDropbuttonTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldDropbuttonTest.php @@ -29,7 +29,7 @@ class FieldDropbuttonTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'system', 'user', 'node', diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldEntityLinkTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldEntityLinkTest.php index 065c78c987daa7b03fc082a3500547d4b4d0af38..a7f5116f35ac8902a146831f5fcfe09e2bf6b471 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldEntityLinkTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldEntityLinkTest.php @@ -30,7 +30,7 @@ class FieldEntityLinkTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user', 'entity_test']; + public static $modules = ['user', 'entity_test']; /** * An admin user account. diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldFieldAccessTestBase.php b/core/modules/views/tests/src/Kernel/Handler/FieldFieldAccessTestBase.php index 37e1f4effedb308908d5775019baada182e1ab86..5ff77bc9f4dd129d0684088776ee6047b817992d 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldFieldAccessTestBase.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldFieldAccessTestBase.php @@ -30,7 +30,7 @@ abstract class FieldFieldAccessTestBase extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user']; + public static $modules = ['user']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldFieldTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldFieldTest.php index b89df7a0f42679a0659d780196acd72486f8ed34..a738dcf5e3e690c5bae2f0272b941107f1366c6c 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldFieldTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldFieldTest.php @@ -24,7 +24,7 @@ class FieldFieldTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'entity_test', 'user', 'views_test_formatter', 'views_entity_test']; + public static $modules = ['field', 'entity_test', 'user', 'views_test_formatter', 'views_entity_test']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php index 0ed3ee66c462d8b48e25c685ac4366a16979bec3..f3ea97ca18166e3d81e0cd520ddc72066528de88 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldKernelTest.php @@ -15,7 +15,7 @@ */ class FieldKernelTest extends ViewsKernelTestBase { - protected static $modules = ['user']; + public static $modules = ['user']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php index f49d682492540b31daca7be41b95f9ead274deab..02419f48479621d76401fc0c98911fdca356f30e 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldRenderedEntityTest.php @@ -24,7 +24,7 @@ class FieldRenderedEntityTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field']; + public static $modules = ['entity_test', 'field']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FieldUrlTest.php b/core/modules/views/tests/src/Kernel/Handler/FieldUrlTest.php index 61d2cb59408edeae7040faf3d8616cbda352c3d8..0814402ca6d6a36712f2aa75981ce8e144af1d13 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FieldUrlTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FieldUrlTest.php @@ -13,7 +13,7 @@ */ class FieldUrlTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorDefaultTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorDefaultTest.php index cf4f1b15a12797f802bb597833b9e4382a8440df..7beceb9bd9eacdb9e5c87e9f26856f69e8222ad9 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorDefaultTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorDefaultTest.php @@ -16,7 +16,7 @@ class FilterBooleanOperatorDefaultTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'views_test_data']; + public static $modules = ['system', 'views_test_data']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorStringTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorStringTest.php index 5495ceaa432740c787bd50a0df891a62a0afb260..325da5106e2762308c2a486fb10064bf00fbe77c 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorStringTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorStringTest.php @@ -19,7 +19,7 @@ class FilterBooleanOperatorStringTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php index e653cbbf0e1ae2cab6542c8f2cb46ca63e538637..7cdd41f525d1369ebd0f62fb363c781c25dd0e2b 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterBooleanOperatorTest.php @@ -18,7 +18,7 @@ class FilterBooleanOperatorTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php index fb5c8e685399a2ca5f63aa6fb8cbe0605588f14c..feffbafd9ed0dc57172aaf58e909d63ae68aa60d 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterCombineTest.php @@ -15,7 +15,7 @@ class FilterCombineTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php index f9476beb9a48f5046758d0f6411e09c7fb10245d..4f8c4961e390c4c7cee2846e881ea1e522284a4e 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php @@ -12,7 +12,7 @@ */ class FilterEqualityTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterInOperatorTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterInOperatorTest.php index a78d0bb22a22fa737fcf14f852f2f031857226bb..e02a8430c7317780b29073b236b6b54b578bec6a 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterInOperatorTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterInOperatorTest.php @@ -12,7 +12,7 @@ */ class FilterInOperatorTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterNumericTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterNumericTest.php index 53b72f2e2d05a62c592f3f6a67d0e90992c19e23..e1093e47f7c2757ec660b03f8916a7f75b561222 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterNumericTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterNumericTest.php @@ -12,7 +12,7 @@ */ class FilterNumericTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php index bf6d9de3874778383f4ab2e9f68aff73f7441ec7..5d8f71f1723a151d2947b4979ae5388525c0f19f 100644 --- a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php @@ -12,7 +12,7 @@ */ class FilterStringTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/HandlerAliasTest.php b/core/modules/views/tests/src/Kernel/Handler/HandlerAliasTest.php index 16c0e19a506e61fbeeff581a884b0744a8cfc267..53d25b38e6a570cdb7c41a88b35f5d2679b61032 100644 --- a/core/modules/views/tests/src/Kernel/Handler/HandlerAliasTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/HandlerAliasTest.php @@ -12,7 +12,7 @@ */ class HandlerAliasTest extends ViewsKernelTestBase { - protected static $modules = ['user']; + public static $modules = ['user']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Handler/SortTranslationTest.php b/core/modules/views/tests/src/Kernel/Handler/SortTranslationTest.php index 9d4e2e10e1d7d4d8f154b68378dba91a2a7e74bf..ac8000a8d8980a42d98052ffdbecfe99d24167e3 100644 --- a/core/modules/views/tests/src/Kernel/Handler/SortTranslationTest.php +++ b/core/modules/views/tests/src/Kernel/Handler/SortTranslationTest.php @@ -19,7 +19,7 @@ class SortTranslationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'field', 'language', diff --git a/core/modules/views/tests/src/Kernel/ModuleTest.php b/core/modules/views/tests/src/Kernel/ModuleTest.php index 2127bd0e91306ee8fd7a8fccdea39624e3f8daae..f61c856200f673dda84a8570e3dcc077c4398fb3 100644 --- a/core/modules/views/tests/src/Kernel/ModuleTest.php +++ b/core/modules/views/tests/src/Kernel/ModuleTest.php @@ -25,7 +25,7 @@ class ModuleTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['field', 'user', 'block']; + public static $modules = ['field', 'user', 'block']; /** * Stores the last triggered error. diff --git a/core/modules/views/tests/src/Kernel/Plugin/BlockDependenciesTest.php b/core/modules/views/tests/src/Kernel/Plugin/BlockDependenciesTest.php index 82411f63d7c68c25473e8240ef37e6092cc50f70..5b634afa1c72a868186564a55b83e172181a2989 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/BlockDependenciesTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/BlockDependenciesTest.php @@ -24,7 +24,7 @@ class BlockDependenciesTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['node', 'block', 'user', 'field']; + public static $modules = ['node', 'block', 'user', 'field']; /** * Tests that exposed filter blocks have the correct dependencies. diff --git a/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php b/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php index aa157e1cc06a7a14e4ff82d94a5ff60d4abd4e82..caa479b4a10193147233a26dfeaebf78ab1555d6 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php @@ -28,7 +28,7 @@ class CacheTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'text', 'user', 'node']; + public static $modules = ['taxonomy', 'text', 'user', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Plugin/Display/ViewsMenuLinkTest.php b/core/modules/views/tests/src/Kernel/Plugin/Display/ViewsMenuLinkTest.php index 90a3d963e38c27e8cf2f232e91572b8ac6e871d4..a6776b585a1f66fcae128b7ebdb79390e632895a 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/Display/ViewsMenuLinkTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/Display/ViewsMenuLinkTest.php @@ -14,7 +14,7 @@ class ViewsMenuLinkTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'menu_ui', 'user', 'views', diff --git a/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php b/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php index 64966239bf3bdc5819b8f69dac8a89ee63eb11da..69666cf342241de06a332c7645190e2b950a1ddb 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/DisplayKernelTest.php @@ -24,7 +24,7 @@ class DisplayKernelTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['block', 'node', 'field', 'user']; + public static $modules = ['block', 'node', 'field', 'user']; /** * Views plugin types to test. diff --git a/core/modules/views/tests/src/Kernel/Plugin/DisplayPageTest.php b/core/modules/views/tests/src/Kernel/Plugin/DisplayPageTest.php index f946922c352a91abf8d97898adff7b6e20855b40..3904cdb490cdc3c555d3339e29310b94a6902c54 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/DisplayPageTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/DisplayPageTest.php @@ -30,7 +30,7 @@ class DisplayPageTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'views_test_data']; + public static $modules = ['system', 'user', 'field', 'views_test_data']; /** * The router dumper to get all routes. diff --git a/core/modules/views/tests/src/Kernel/Plugin/ExposedFormRenderTest.php b/core/modules/views/tests/src/Kernel/Plugin/ExposedFormRenderTest.php index ac436f2e5a6ecb430741833225f5a9afabb6644a..aa7b3cb33583f02595059f6a36cf110090dc611d 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/ExposedFormRenderTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/ExposedFormRenderTest.php @@ -23,7 +23,7 @@ class ExposedFormRenderTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php b/core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php index 891e013520d7ea63dbd5dd8a3e45df947f04bb34..c6f581a6553a40e63a7c9bb21762bc35fdb4c814 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/PagerKernelTest.php @@ -21,7 +21,7 @@ class PagerKernelTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'node']; + public static $modules = ['user', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Plugin/RelationshipJoinTestBase.php b/core/modules/views/tests/src/Kernel/Plugin/RelationshipJoinTestBase.php index ecb90a7f3f3e4d7cf86784cf13bf2904b7a2d660..191024e4701e091dd6c46ad7be530d7d81efe399 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/RelationshipJoinTestBase.php +++ b/core/modules/views/tests/src/Kernel/Plugin/RelationshipJoinTestBase.php @@ -18,7 +18,7 @@ abstract class RelationshipJoinTestBase extends PluginKernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field']; + public static $modules = ['system', 'user', 'field']; /** * @var \Drupal\user\Entity\User diff --git a/core/modules/views/tests/src/Kernel/Plugin/RowEntityTest.php b/core/modules/views/tests/src/Kernel/Plugin/RowEntityTest.php index 599629a5fe2e16e08f5afece9acb40d768203150..208a6f0ee3dfcac0c260ffd038e9eebfa9cf492a 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/RowEntityTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/RowEntityTest.php @@ -21,7 +21,7 @@ class RowEntityTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['taxonomy', 'text', 'filter', 'field', 'system', 'node', 'user']; + public static $modules = ['taxonomy', 'text', 'filter', 'field', 'system', 'node', 'user']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Plugin/RowRenderCacheTest.php b/core/modules/views/tests/src/Kernel/Plugin/RowRenderCacheTest.php index c0b022b18cb0da7f3c5ffb93361dfea174df712e..223963e2d054c84bc38c36e1859cbeb3510f9645 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/RowRenderCacheTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/RowRenderCacheTest.php @@ -24,7 +24,7 @@ class RowRenderCacheTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['user', 'node']; + public static $modules = ['user', 'node']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Plugin/SqlEntityLoadingTest.php b/core/modules/views/tests/src/Kernel/Plugin/SqlEntityLoadingTest.php index 86f6437d7760964cc094163f3a19bbce6c50ee74..b4d525a13186974da468633a77ab7be942500cab 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/SqlEntityLoadingTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/SqlEntityLoadingTest.php @@ -19,7 +19,7 @@ class SqlEntityLoadingTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Plugin/StyleMappingTest.php b/core/modules/views/tests/src/Kernel/Plugin/StyleMappingTest.php index a3ae4ec9f6c0d4b7da52c5d35be49184c1115923..d0683deb47aaa338556351751a1cae7922aec111 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/StyleMappingTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/StyleMappingTest.php @@ -11,7 +11,7 @@ */ class StyleMappingTest extends StyleTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/Plugin/ViewsBlockTest.php b/core/modules/views/tests/src/Kernel/Plugin/ViewsBlockTest.php index bde6a7f09b4f008496ba23a7043571a403287aaf..7c49327290aa0bf363a0008b17f2e58ac0f94345 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/ViewsBlockTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/ViewsBlockTest.php @@ -19,7 +19,7 @@ class ViewsBlockTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['block', 'block_test_views']; + public static $modules = ['block', 'block_test_views']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php index e4e272c81a9e75ae8ee7c1834844c920bd8b5756..25d8b4a4c1dc82c32805a0b5c58071833745ea84 100644 --- a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php +++ b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php @@ -27,7 +27,7 @@ class QueryGroupByTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'system', 'field', 'user', 'language']; + public static $modules = ['entity_test', 'system', 'field', 'user', 'language']; /** * The storage for the test entity type. diff --git a/core/modules/views/tests/src/Kernel/RenderCacheIntegrationTest.php b/core/modules/views/tests/src/Kernel/RenderCacheIntegrationTest.php index 2168665de0029d5e3825dc7bfca2db3b0a0c871a..02e90cd502079dcad775281347e281025ba12be9 100644 --- a/core/modules/views/tests/src/Kernel/RenderCacheIntegrationTest.php +++ b/core/modules/views/tests/src/Kernel/RenderCacheIntegrationTest.php @@ -27,7 +27,7 @@ class RenderCacheIntegrationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'user', 'node']; + public static $modules = ['entity_test', 'user', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/TestViewsTest.php b/core/modules/views/tests/src/Kernel/TestViewsTest.php index 1b21dfeaf81505206b3761b24292a0df8336e46e..dcd1859be34595eb1779ca4909c802a6535431ce 100644 --- a/core/modules/views/tests/src/Kernel/TestViewsTest.php +++ b/core/modules/views/tests/src/Kernel/TestViewsTest.php @@ -22,7 +22,7 @@ class TestViewsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['views_test_data']; + public static $modules = ['views_test_data']; /** * Tests default configuration data type. diff --git a/core/modules/views/tests/src/Kernel/TokenReplaceTest.php b/core/modules/views/tests/src/Kernel/TokenReplaceTest.php index 76253f282340c43edd5b5c1716c8693736d36b6d..4b1cfc362c83f17300937b4b04452d9954ec839c 100644 --- a/core/modules/views/tests/src/Kernel/TokenReplaceTest.php +++ b/core/modules/views/tests/src/Kernel/TokenReplaceTest.php @@ -12,7 +12,7 @@ */ class TokenReplaceTest extends ViewsKernelTestBase { - protected static $modules = ['system']; + public static $modules = ['system']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/ViewExecutableTest.php b/core/modules/views/tests/src/Kernel/ViewExecutableTest.php index 5acc2255478868d734d5fd4ff49c15eb13316310..1290d54d85b0b9478fb184ee8cc3bf830ed2b666 100644 --- a/core/modules/views/tests/src/Kernel/ViewExecutableTest.php +++ b/core/modules/views/tests/src/Kernel/ViewExecutableTest.php @@ -31,7 +31,7 @@ class ViewExecutableTest extends ViewsKernelTestBase { use CommentTestTrait; - protected static $modules = ['system', 'node', 'comment', 'user', 'filter', 'field', 'text']; + public static $modules = ['system', 'node', 'comment', 'user', 'filter', 'field', 'text']; /** * Views used by this test. diff --git a/core/modules/views/tests/src/Kernel/ViewsConfigDependenciesIntegrationTest.php b/core/modules/views/tests/src/Kernel/ViewsConfigDependenciesIntegrationTest.php index e82a546d403d50d7ce20e90c22617d81911b35b4..294bb0f44c2efd356eafe8a50ba5cf0acabd08c5 100644 --- a/core/modules/views/tests/src/Kernel/ViewsConfigDependenciesIntegrationTest.php +++ b/core/modules/views/tests/src/Kernel/ViewsConfigDependenciesIntegrationTest.php @@ -18,7 +18,7 @@ class ViewsConfigDependenciesIntegrationTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'file', 'image', 'entity_test', 'user', 'text']; + public static $modules = ['field', 'file', 'image', 'entity_test', 'user', 'text']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php b/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php index fb3fc7a638aeda8695b6dd81fcbb9c0977ab7d48..be9920eb31db5909710adbc6879ad41eddf3b938 100644 --- a/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php +++ b/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php @@ -29,7 +29,7 @@ abstract class ViewsKernelTestBase extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'views', 'views_test_config', 'views_test_data', 'user']; + public static $modules = ['system', 'views', 'views_test_config', 'views_test_data', 'user']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php b/core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php index 4dd6f2526bdbcf2ee07c9f16f5304527acef8562..ab8bc7704affac44a5e7f50fbee7e3c1459f5a46 100644 --- a/core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php +++ b/core/modules/views/tests/src/Kernel/ViewsPreprocessTest.php @@ -20,7 +20,7 @@ class ViewsPreprocessTest extends ViewsKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'user', 'node']; + public static $modules = ['entity_test', 'user', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php b/core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php index 29844b58e9ee8de1ae36346cdc6e8105ae9588f3..beb7b486d5023a8815e156232404472d27500c5b 100644 --- a/core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php +++ b/core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php @@ -20,7 +20,7 @@ class WizardPluginBaseKernelTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['language', 'system', 'user', 'views_ui']; + public static $modules = ['language', 'system', 'user', 'views_ui']; /** * Contains thw wizard plugin manager. diff --git a/core/modules/views_ui/src/Tests/UITestBase.php b/core/modules/views_ui/src/Tests/UITestBase.php index 96644d8bebc7af876ddd3b4dd75711e41ab6b047..752be6e339b4a94d626b4edd8b32d6d3de0f6198 100644 --- a/core/modules/views_ui/src/Tests/UITestBase.php +++ b/core/modules/views_ui/src/Tests/UITestBase.php @@ -31,7 +31,7 @@ abstract class UITestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block', 'taxonomy']; + public static $modules = ['node', 'views_ui', 'block', 'taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/Functional/AnalyzeTest.php b/core/modules/views_ui/tests/src/Functional/AnalyzeTest.php index 9ed234534151efaeb091e5e4a9e43b34e838a4b1..32d1ae98023cd059cc3e4b0e5bbfe9a985c87b6c 100644 --- a/core/modules/views_ui/tests/src/Functional/AnalyzeTest.php +++ b/core/modules/views_ui/tests/src/Functional/AnalyzeTest.php @@ -14,7 +14,7 @@ class AnalyzeTest extends UITestBase { * * @var array */ - protected static $modules = ['views_ui']; + public static $modules = ['views_ui']; /** * Views used by this test. diff --git a/core/modules/views_ui/tests/src/Functional/AreaEntityUITest.php b/core/modules/views_ui/tests/src/Functional/AreaEntityUITest.php index 41faa009a350e690bb68cc4a0dc30222a28b9d53..d74575fd46324653b41b142a379822c81fa9f5d5 100644 --- a/core/modules/views_ui/tests/src/Functional/AreaEntityUITest.php +++ b/core/modules/views_ui/tests/src/Functional/AreaEntityUITest.php @@ -17,7 +17,7 @@ class AreaEntityUITest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; public function testUI() { // Set up a block and a entity_test entity. diff --git a/core/modules/views_ui/tests/src/Functional/DisplayCRUDTest.php b/core/modules/views_ui/tests/src/Functional/DisplayCRUDTest.php index d98bd46ee57b8ef133ff5dbe7ed1ebd55e485b98..c1c7cef441cad70ff4df2f9183876a1dfdcd5813 100644 --- a/core/modules/views_ui/tests/src/Functional/DisplayCRUDTest.php +++ b/core/modules/views_ui/tests/src/Functional/DisplayCRUDTest.php @@ -23,7 +23,7 @@ class DisplayCRUDTest extends UITestBase { * * @var array */ - protected static $modules = ['contextual']; + public static $modules = ['contextual']; /** * Tests adding a display. diff --git a/core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php b/core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php index 1230c12ae22cba3b60e6ca36ec9492d937d78568..9dba45010f09ba620310921bb8b65908f87ed0d4 100644 --- a/core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php +++ b/core/modules/views_ui/tests/src/Functional/DisplayFeedTest.php @@ -22,7 +22,7 @@ class DisplayFeedTest extends UITestBase { * * @var array */ - protected static $modules = ['views_ui', 'aggregator']; + public static $modules = ['views_ui', 'aggregator']; /** * Tests feed display admin UI. diff --git a/core/modules/views_ui/tests/src/Functional/DisplayPathTest.php b/core/modules/views_ui/tests/src/Functional/DisplayPathTest.php index 5c1e7f3993fee0e13a193f4980ed894baeb198ef..2f007f193c6814ec8f3e5d9834b0e5d68c0f08cf 100644 --- a/core/modules/views_ui/tests/src/Functional/DisplayPathTest.php +++ b/core/modules/views_ui/tests/src/Functional/DisplayPathTest.php @@ -25,7 +25,7 @@ protected function setUp($import_test_views = TRUE) { /** * {@inheritdoc} */ - protected static $modules = ['menu_ui']; + public static $modules = ['menu_ui']; /** * Views used by this test. diff --git a/core/modules/views_ui/tests/src/Functional/DisplayTest.php b/core/modules/views_ui/tests/src/Functional/DisplayTest.php index 10cbe5ac023339a6a6bbf38342a95b95c1b74266..8fa5a80de387055b3c379ec466992eb12508e3e6 100644 --- a/core/modules/views_ui/tests/src/Functional/DisplayTest.php +++ b/core/modules/views_ui/tests/src/Functional/DisplayTest.php @@ -25,7 +25,7 @@ class DisplayTest extends UITestBase { * * @var array */ - protected static $modules = ['contextual']; + public static $modules = ['contextual']; /** * Tests adding a display. diff --git a/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php b/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php index c45394b0784fffeefb6969489f4f9a16aca4b4ef..0822eb833c91fa85443d2330b1ccb8cf0fb52dfb 100644 --- a/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php +++ b/core/modules/views_ui/tests/src/Functional/ExposedFormUITest.php @@ -21,7 +21,7 @@ class ExposedFormUITest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views_ui', 'block', 'taxonomy', 'field_ui', 'datetime']; + public static $modules = ['node', 'views_ui', 'block', 'taxonomy', 'field_ui', 'datetime']; /** * Array of error message strings raised by the grouped form. diff --git a/core/modules/views_ui/tests/src/Functional/FilterUITest.php b/core/modules/views_ui/tests/src/Functional/FilterUITest.php index d831d0588123588985bd7ab7a6405c7aec559944..18ada1bca54ace3ea1c7a185aee6ed0de49bd11f 100644 --- a/core/modules/views_ui/tests/src/Functional/FilterUITest.php +++ b/core/modules/views_ui/tests/src/Functional/FilterUITest.php @@ -22,7 +22,7 @@ class FilterUITest extends UITestBase { * * @var array */ - protected static $modules = ['views_ui', 'node']; + public static $modules = ['views_ui', 'node']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/Functional/HandlerTest.php b/core/modules/views_ui/tests/src/Functional/HandlerTest.php index ac3d7852b5104333b884be278071de1efde9e293..7d96d0c5b57ad7404541e9481c2b36c7d688402b 100644 --- a/core/modules/views_ui/tests/src/Functional/HandlerTest.php +++ b/core/modules/views_ui/tests/src/Functional/HandlerTest.php @@ -19,7 +19,7 @@ class HandlerTest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['node_test_views']; + public static $modules = ['node_test_views']; /** * Views used by this test. diff --git a/core/modules/views_ui/tests/src/Functional/NewViewConfigSchemaTest.php b/core/modules/views_ui/tests/src/Functional/NewViewConfigSchemaTest.php index 0da216a5bef95ddc8192bcb8ebc2c2f3eb9418db..ef493ff8c8945ba8eb96ba1bb7423973fa587cd3 100644 --- a/core/modules/views_ui/tests/src/Functional/NewViewConfigSchemaTest.php +++ b/core/modules/views_ui/tests/src/Functional/NewViewConfigSchemaTest.php @@ -14,7 +14,7 @@ class NewViewConfigSchemaTest extends UITestBase { * * @var array */ - protected static $modules = ['views_ui', 'node', 'comment', 'file', 'taxonomy', 'dblog', 'aggregator']; + public static $modules = ['views_ui', 'node', 'comment', 'file', 'taxonomy', 'dblog', 'aggregator']; /** * Tests creating brand new views. diff --git a/core/modules/views_ui/tests/src/Functional/ReportFieldsTest.php b/core/modules/views_ui/tests/src/Functional/ReportFieldsTest.php index 5ffd7004c95dd8beef3b1ee89a185b37479fb454..d2527d0b9da43296fd9dd1b804319b852fde3c10 100644 --- a/core/modules/views_ui/tests/src/Functional/ReportFieldsTest.php +++ b/core/modules/views_ui/tests/src/Functional/ReportFieldsTest.php @@ -20,7 +20,7 @@ class ReportFieldsTest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Tests the Views fields report page. diff --git a/core/modules/views_ui/tests/src/Functional/ReportTest.php b/core/modules/views_ui/tests/src/Functional/ReportTest.php index 7cf4ed6413504a902670bc150d3d65df7f21cbb7..e7979930c1f7a61b1957f05c4b517ee16ce3ed29 100644 --- a/core/modules/views_ui/tests/src/Functional/ReportTest.php +++ b/core/modules/views_ui/tests/src/Functional/ReportTest.php @@ -14,7 +14,7 @@ class ReportTest extends UITestBase { * * @var array */ - protected static $modules = ['views', 'views_ui']; + public static $modules = ['views', 'views_ui']; /** * Stores an admin user used by the different tests. diff --git a/core/modules/views_ui/tests/src/Functional/StorageTest.php b/core/modules/views_ui/tests/src/Functional/StorageTest.php index 96e61e251cfeb426b4923058dc6591f82d18a278..df3d030e70133179ecf8b60852c2a454df7db288 100644 --- a/core/modules/views_ui/tests/src/Functional/StorageTest.php +++ b/core/modules/views_ui/tests/src/Functional/StorageTest.php @@ -24,7 +24,7 @@ class StorageTest extends UITestBase { * * @var array */ - protected static $modules = ['views_ui', 'language']; + public static $modules = ['views_ui', 'language']; /** * Tests changing label, description and tag. diff --git a/core/modules/views_ui/tests/src/Functional/TokenizeAreaUITest.php b/core/modules/views_ui/tests/src/Functional/TokenizeAreaUITest.php index 1c6941d87351758dbaaeef396e668f3249504516..df42d8e11d33193f9f0bde5f6a70cee1603f7125 100644 --- a/core/modules/views_ui/tests/src/Functional/TokenizeAreaUITest.php +++ b/core/modules/views_ui/tests/src/Functional/TokenizeAreaUITest.php @@ -16,7 +16,7 @@ class TokenizeAreaUITest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * Test that the right tokens are shown as available for replacement. diff --git a/core/modules/views_ui/tests/src/Functional/TranslatedViewTest.php b/core/modules/views_ui/tests/src/Functional/TranslatedViewTest.php index d85d74ae33f0d5c170567f0ae6e521404afa107f..7238ffad64f9a18ec663cf36dbea7e28bee3485a 100644 --- a/core/modules/views_ui/tests/src/Functional/TranslatedViewTest.php +++ b/core/modules/views_ui/tests/src/Functional/TranslatedViewTest.php @@ -16,7 +16,7 @@ class TranslatedViewTest extends UITestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'config_translation', 'views_ui', ]; diff --git a/core/modules/views_ui/tests/src/Functional/UITestBase.php b/core/modules/views_ui/tests/src/Functional/UITestBase.php index c5e28d4637bd6e3d0c087369f8d4edacb75adb9b..db857737141225ac825d428a21a5bf77b085bd8f 100644 --- a/core/modules/views_ui/tests/src/Functional/UITestBase.php +++ b/core/modules/views_ui/tests/src/Functional/UITestBase.php @@ -28,7 +28,7 @@ abstract class UITestBase extends ViewTestBase { * * @var array */ - protected static $modules = ['node', 'views_ui', 'block', 'taxonomy']; + public static $modules = ['node', 'views_ui', 'block', 'taxonomy']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/Functional/UnsavedPreviewTest.php b/core/modules/views_ui/tests/src/Functional/UnsavedPreviewTest.php index fe8dd99d2c1f17bff82ccb3b5eabaaec5a0c10b6..3265e1a2f564e5b7a72e7bcec42141cd143dcab2 100644 --- a/core/modules/views_ui/tests/src/Functional/UnsavedPreviewTest.php +++ b/core/modules/views_ui/tests/src/Functional/UnsavedPreviewTest.php @@ -26,7 +26,7 @@ class UnsavedPreviewTest extends UITestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views_ui']; + public static $modules = ['node', 'views_ui']; /** * Sets up a Drupal site for running functional and integration tests. diff --git a/core/modules/views_ui/tests/src/Functional/ViewsListTest.php b/core/modules/views_ui/tests/src/Functional/ViewsListTest.php index d4633e7cf424d605a0774161dab55d37755114b5..956ab9bc0cb9be3983eaf330a0f43dfcd14f6934 100644 --- a/core/modules/views_ui/tests/src/Functional/ViewsListTest.php +++ b/core/modules/views_ui/tests/src/Functional/ViewsListTest.php @@ -17,7 +17,7 @@ class ViewsListTest extends UITestBase { * * @var array */ - protected static $modules = ['block', 'views_ui']; + public static $modules = ['block', 'views_ui']; /** * A user with permission to administer views. diff --git a/core/modules/views_ui/tests/src/Functional/ViewsUITourTest.php b/core/modules/views_ui/tests/src/Functional/ViewsUITourTest.php index 3b3fb1c8ab0a52845b157b25ee1e3f03b5ec2fe3..8a2dd2953f3b20c1a858d5a7f30975da94e7c69e 100644 --- a/core/modules/views_ui/tests/src/Functional/ViewsUITourTest.php +++ b/core/modules/views_ui/tests/src/Functional/ViewsUITourTest.php @@ -31,7 +31,7 @@ class ViewsUITourTest extends TourTestBase { * * @var array */ - protected static $modules = ['views_ui', 'tour', 'language', 'locale']; + public static $modules = ['views_ui', 'tour', 'language', 'locale']; protected function setUp() { parent::setUp(); diff --git a/core/modules/views_ui/tests/src/Functional/XssTest.php b/core/modules/views_ui/tests/src/Functional/XssTest.php index 49a467edad3cf642e6398832f923e98712ba0324..cabb48ebcfe3a1ea82c54980d0b7787b6cb26b4d 100644 --- a/core/modules/views_ui/tests/src/Functional/XssTest.php +++ b/core/modules/views_ui/tests/src/Functional/XssTest.php @@ -14,7 +14,7 @@ class XssTest extends UITestBase { * * @var array */ - protected static $modules = ['node', 'user', 'views_ui', 'views_ui_test']; + public static $modules = ['node', 'user', 'views_ui', 'views_ui_test']; public function testViewsUi() { $this->drupalGet('admin/structure/views/view/sa_contrib_2013_035'); diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/DisplayTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/DisplayTest.php index bfe16bcddc13256c483dd2efc814bfa9549cd89d..7dcaccdd241ada9fec90b7c285af28e68edcf8f6 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/DisplayTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/DisplayTest.php @@ -19,7 +19,7 @@ class DisplayTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'contextual', 'node', diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/FilterCriteriaTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/FilterCriteriaTest.php index 07966cea203027544f485338d5c756abe0720f40..9e303dfb9222cf989ae956a3ff9843c4feb33f34 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/FilterCriteriaTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/FilterCriteriaTest.php @@ -14,7 +14,7 @@ class FilterCriteriaTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui']; + public static $modules = ['node', 'views', 'views_ui']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/FilterOptionsTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/FilterOptionsTest.php index 2d7571fd693bb8d4858d472ec3468a6417807ff0..6f2f6259682d1f05dce940f528864cdc9afb5815 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/FilterOptionsTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/FilterOptionsTest.php @@ -14,7 +14,7 @@ class FilterOptionsTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui', 'views_ui_test_field']; + public static $modules = ['node', 'views', 'views_ui', 'views_ui_test_field']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/LibraryCachingTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/LibraryCachingTest.php index 5aab0af98b788016b2e41c92509acdc0f3525aab..b1b158ba6ce30b4f1b3567e07994651921b6acee 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/LibraryCachingTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/LibraryCachingTest.php @@ -14,7 +14,7 @@ class LibraryCachingTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui']; + public static $modules = ['node', 'views', 'views_ui']; /** * Tests if the Views UI dialogs open on consecutive requests. diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php index a433deb00580da2feac4ee723ce3b54b60e6b6a0..fc696c03a866ff0097613063b1fe7280f33ddf0d 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsListingTest.php @@ -15,7 +15,7 @@ class ViewsListingTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui']; + public static $modules = ['node', 'views', 'views_ui']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsWizardTest.php b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsWizardTest.php index d446db83f0fe71749818e4b0ce3de17bd2dc7135..16369f12fea1ce1804003ab5a9f5fbdeda93b911 100644 --- a/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsWizardTest.php +++ b/core/modules/views_ui/tests/src/FunctionalJavascript/ViewsWizardTest.php @@ -15,7 +15,7 @@ class ViewsWizardTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'views', 'views_ui', 'block', 'user']; + public static $modules = ['node', 'views', 'views_ui', 'block', 'user']; /** * {@inheritdoc} diff --git a/core/modules/views_ui/tests/src/Kernel/TagTest.php b/core/modules/views_ui/tests/src/Kernel/TagTest.php index a61281263cbdd173cf138e46272c01bc75351c59..44d341776d7217897054cf079d2f336afcbf79c4 100644 --- a/core/modules/views_ui/tests/src/Kernel/TagTest.php +++ b/core/modules/views_ui/tests/src/Kernel/TagTest.php @@ -19,7 +19,7 @@ class TagTest extends ViewsKernelTestBase { * * @var array */ - protected static $modules = ['views', 'views_ui', 'user']; + public static $modules = ['views', 'views_ui', 'user']; /** * Tests the views_ui_autocomplete_tag function. diff --git a/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonAnonTest.php b/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonAnonTest.php index e36e2961811be9d3f83f9446ef4345729a7c2b16..0c2fe0046325d25847794852abf888e2f550f213 100644 --- a/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonAnonTest.php +++ b/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonAnonTest.php @@ -15,7 +15,7 @@ class WorkflowHalJsonAnonTest extends WorkflowResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonBasicAuthTest.php b/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonBasicAuthTest.php index 3c1632b67af405e8a874ebc565ebeb00ef7ddfdc..b2e9807333a7b86e51b4a09a735898ca9c27a60e 100644 --- a/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonBasicAuthTest.php +++ b/core/modules/workflows/tests/src/Functional/Hal/WorkflowHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class WorkflowHalJsonBasicAuthTest extends WorkflowHalJsonAnonTest { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonBasicAuthTest.php b/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonBasicAuthTest.php index f906529aacf3791c0af573bd859882834bcbdf86..db687cfbb48b5afe11d4996695644d6312179f48 100644 --- a/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonBasicAuthTest.php +++ b/core/modules/workflows/tests/src/Functional/Rest/WorkflowJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class WorkflowJsonBasicAuthTest extends WorkflowResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Functional/Rest/WorkflowResourceTestBase.php b/core/modules/workflows/tests/src/Functional/Rest/WorkflowResourceTestBase.php index 43c0765f76ac17a722b41fde6b5eb62013b1af46..ce796a4f979a11b578424b0137b8796bca7b8f0c 100644 --- a/core/modules/workflows/tests/src/Functional/Rest/WorkflowResourceTestBase.php +++ b/core/modules/workflows/tests/src/Functional/Rest/WorkflowResourceTestBase.php @@ -13,7 +13,7 @@ abstract class WorkflowResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'workflows', 'workflow_type_test', ]; diff --git a/core/modules/workflows/tests/src/Functional/Rest/WorkflowXmlBasicAuthTest.php b/core/modules/workflows/tests/src/Functional/Rest/WorkflowXmlBasicAuthTest.php index 2147b9a3f0b7b70efb33198c55c69936fae1d4b3..db443e4763cdf1a360507c9ca79828ef5ba5f520 100644 --- a/core/modules/workflows/tests/src/Functional/Rest/WorkflowXmlBasicAuthTest.php +++ b/core/modules/workflows/tests/src/Functional/Rest/WorkflowXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class WorkflowXmlBasicAuthTest extends WorkflowResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Functional/WorkflowUiNoTypeTest.php b/core/modules/workflows/tests/src/Functional/WorkflowUiNoTypeTest.php index cbf71ed883b18567cbb7086d3534a0ece421dcff..01c61ac6b00d6cc117f656f8e01a53bc2d81417e 100644 --- a/core/modules/workflows/tests/src/Functional/WorkflowUiNoTypeTest.php +++ b/core/modules/workflows/tests/src/Functional/WorkflowUiNoTypeTest.php @@ -16,7 +16,7 @@ class WorkflowUiNoTypeTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['workflows', 'block']; + public static $modules = ['workflows', 'block']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Functional/WorkflowUiTest.php b/core/modules/workflows/tests/src/Functional/WorkflowUiTest.php index f04e5276b942f77790302e4461e7af53d7b2a9ed..227ddd769a0c5d31f0a091f10d77a5911d44bc3e 100644 --- a/core/modules/workflows/tests/src/Functional/WorkflowUiTest.php +++ b/core/modules/workflows/tests/src/Functional/WorkflowUiTest.php @@ -18,7 +18,7 @@ class WorkflowUiTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['workflows', 'workflow_type_test', 'block']; + public static $modules = ['workflows', 'workflow_type_test', 'block']; /** * {@inheritdoc} diff --git a/core/modules/workflows/tests/src/Kernel/ComplexWorkflowTypeTest.php b/core/modules/workflows/tests/src/Kernel/ComplexWorkflowTypeTest.php index 501675da890a6c281bb7cbfa254882a19f2fdc15..15d27286ca203413d15b9a122ad6beeb1d1b755c 100644 --- a/core/modules/workflows/tests/src/Kernel/ComplexWorkflowTypeTest.php +++ b/core/modules/workflows/tests/src/Kernel/ComplexWorkflowTypeTest.php @@ -17,7 +17,7 @@ class ComplexWorkflowTypeTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workflows', 'workflow_type_test']; + public static $modules = ['workflows', 'workflow_type_test']; /** * @covers \Drupal\workflows\Entity\Workflow::loadMultipleByType diff --git a/core/modules/workflows/tests/src/Kernel/PredefinedWorkflowTypeTest.php b/core/modules/workflows/tests/src/Kernel/PredefinedWorkflowTypeTest.php index 2f294fd915b95d204f975466e0b0398ac2766352..f3f0b5768bc2ec9418cc18322d2aaac9c534b945 100644 --- a/core/modules/workflows/tests/src/Kernel/PredefinedWorkflowTypeTest.php +++ b/core/modules/workflows/tests/src/Kernel/PredefinedWorkflowTypeTest.php @@ -15,7 +15,7 @@ class PredefinedWorkflowTypeTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workflows', 'workflow_type_test']; + public static $modules = ['workflows', 'workflow_type_test']; /** * Test a predefined workflow type. diff --git a/core/modules/workflows/tests/src/Kernel/RequiredStatesTest.php b/core/modules/workflows/tests/src/Kernel/RequiredStatesTest.php index 13d871822d60a6d0671a322c209f2c1d63d898f8..8d4edc90124485644116ee188231497abe452bad 100644 --- a/core/modules/workflows/tests/src/Kernel/RequiredStatesTest.php +++ b/core/modules/workflows/tests/src/Kernel/RequiredStatesTest.php @@ -18,7 +18,7 @@ class RequiredStatesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workflows', 'workflow_type_test']; + public static $modules = ['workflows', 'workflow_type_test']; /** * @covers ::getRequiredStates diff --git a/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php b/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php index c70b85936ff594006f93015116d9a2dafbdbbe27..cd4e7ceb14e05447d2560f968e06495bca424c91 100644 --- a/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php +++ b/core/modules/workflows/tests/src/Kernel/WorkflowAccessControlHandlerTest.php @@ -20,7 +20,7 @@ class WorkflowAccessControlHandlerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'workflows', 'workflow_type_test', 'system', diff --git a/core/modules/workflows/tests/src/Kernel/WorkflowDependenciesTest.php b/core/modules/workflows/tests/src/Kernel/WorkflowDependenciesTest.php index bc6d270d702679a562b6ac79013e0263804d14a8..c1070dc53c9af46f2a3247f2947bd8456b2e58f9 100644 --- a/core/modules/workflows/tests/src/Kernel/WorkflowDependenciesTest.php +++ b/core/modules/workflows/tests/src/Kernel/WorkflowDependenciesTest.php @@ -17,7 +17,7 @@ class WorkflowDependenciesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'workflows', 'workflow_type_test', 'workflow_third_party_settings_test']; + public static $modules = ['system', 'workflows', 'workflow_type_test', 'workflow_third_party_settings_test']; /** * Tests \Drupal\workflows\Entity\Workflow::onDependencyRemoval(). diff --git a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceJsonBasicAuthTest.php b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceJsonBasicAuthTest.php index 73049690d435ff68f2ceada1d47a86d6e3e5222f..8be512a7935d24ea6b2c5848ce9da84ed6f5f7c2 100644 --- a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceJsonBasicAuthTest.php +++ b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceJsonBasicAuthTest.php @@ -16,7 +16,7 @@ class WorkspaceJsonBasicAuthTest extends WorkspaceResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php index e0c732cf86e7e169d31c079f319c10474216a67d..79f24da5a8eae4f4d0c9b0353baf7ebae979fb21 100644 --- a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php +++ b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceResourceTestBase.php @@ -17,7 +17,7 @@ abstract class WorkspaceResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workspaces']; + public static $modules = ['workspaces']; /** * {@inheritdoc} diff --git a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlBasicAuthTest.php b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlBasicAuthTest.php index af5e619a0b0517c9ba4cc0f6920794b53a3e484c..8769d9e8bac130409b2bc6bc43973c1693f2f37d 100644 --- a/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlBasicAuthTest.php +++ b/core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlBasicAuthTest.php @@ -18,7 +18,7 @@ class WorkspaceXmlBasicAuthTest extends WorkspaceResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php index 276c13a478f6f2d5d945651919f0b5faafbd842d..162fc0ee7232ae63f483340ce474d374dfc6ec1d 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php @@ -18,7 +18,7 @@ class WorkspaceBypassTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user', 'block', 'workspaces']; + public static $modules = ['node', 'user', 'block', 'workspaces']; /** * Verifies that a user can edit anything in a workspace they own. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php index b9dfa9e5c4662cf7c70a4459485c373bd7e4e51d..f47ae7f544d6ab12165afa926445b1b96ecc9235 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceCacheContextTest.php @@ -20,7 +20,7 @@ class WorkspaceCacheContextTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'node', 'workspaces']; + public static $modules = ['block', 'node', 'workspaces']; /** * Tests the 'workspace' cache context. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php index 1c8c8096629a98057c0987f3ae2a8eafee3ef05a..996e72decc1cafb5229e615d8ea69095c0091d5a 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceConcurrentEditingTest.php @@ -17,7 +17,7 @@ class WorkspaceConcurrentEditingTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'node', 'workspaces']; + public static $modules = ['block', 'node', 'workspaces']; /** * Test switching workspace via the switcher block and admin page. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php b/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php index 6e72eae6e9b511b061ef516b8b3ec4777c2257e0..473a861c3f3f1febd9064d5434f9fd2fec7ce7b2 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspacePermissionsTest.php @@ -17,7 +17,7 @@ class WorkspacePermissionsTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workspaces']; + public static $modules = ['workspaces']; /** * Verifies that a user can create but not edit a workspace. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php index e83abe3d7c35f6531b0181762c588cef5061ac4e..ce0b3ed47014dcbf6c8ee5e168c9302578aa34f9 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php @@ -18,7 +18,7 @@ class WorkspaceSwitcherTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block', 'workspaces']; + public static $modules = ['block', 'workspaces']; /** * {@inheritdoc} diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php index 38e5fd1f6ae47c7a70d09b8f61f1572c4f21a180..5c7bea6e6a60f4655d262f5859b2c470d909b634 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceTest.php @@ -16,7 +16,7 @@ class WorkspaceTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workspaces']; + public static $modules = ['workspaces']; /** * A test user. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php b/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php index 7fdc0f45a6893d2a56707cdb2bf36589f69152cd..df1b3c8c57f04119f9fb057541096c05d73bdd2e 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspaceViewTest.php @@ -17,7 +17,7 @@ class WorkspaceViewTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workspaces']; + public static $modules = ['workspaces']; /** * Verifies that a user can view their own workspace. diff --git a/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php b/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php index 7f35fb1b81644063037e1ee967406cd1ff982530..e652e3fc826b45a305b34a4e0b9247d5793d75b8 100644 --- a/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php +++ b/core/modules/workspaces/tests/src/Functional/WorkspacesUninstallTest.php @@ -19,7 +19,7 @@ class WorkspacesUninstallTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['workspaces']; + public static $modules = ['workspaces']; /** * Tests deleting workspace entities and uninstalling Workspaces module. diff --git a/core/modules/workspaces/tests/src/Kernel/WorkspaceCRUDTest.php b/core/modules/workspaces/tests/src/Kernel/WorkspaceCRUDTest.php index 95769399c6db07a40a962d9800813bdd05241ac4..0d878ac08388b4dd918fcf89d9bf707ebdc96379 100644 --- a/core/modules/workspaces/tests/src/Kernel/WorkspaceCRUDTest.php +++ b/core/modules/workspaces/tests/src/Kernel/WorkspaceCRUDTest.php @@ -43,7 +43,7 @@ class WorkspaceCRUDTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'user', 'system', 'workspaces', diff --git a/core/modules/workspaces/tests/src/Kernel/WorkspaceInternalResourceTest.php b/core/modules/workspaces/tests/src/Kernel/WorkspaceInternalResourceTest.php index 9551b96f185ccb850241e0d13d13b07b2e2b2d92..2c7758b962c94c1d028fce1219a4e24eb67ad536 100644 --- a/core/modules/workspaces/tests/src/Kernel/WorkspaceInternalResourceTest.php +++ b/core/modules/workspaces/tests/src/Kernel/WorkspaceInternalResourceTest.php @@ -17,7 +17,7 @@ class WorkspaceInternalResourceTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['user', 'serialization', 'rest', 'workspaces']; + public static $modules = ['user', 'serialization', 'rest', 'workspaces']; /** * Tests enabling workspace associations for REST throws an exception. diff --git a/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php b/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php index 2860f4d033053aab50fc8817b3d3bd521d6f3c8b..61656a86bdcc84b5245282a602de75ddaf9e0ce9 100644 --- a/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php +++ b/core/profiles/testing/modules/drupal_system_listing_compatible_test/tests/src/Kernel/SystemListingCrossProfileCompatibleTest.php @@ -20,7 +20,7 @@ class SystemListingCrossProfileCompatibleTest extends KernelTestBase { * * @var array */ - protected static $modules = ['drupal_system_cross_profile_test']; + public static $modules = ['drupal_system_cross_profile_test']; /** * Use the Minimal profile. diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxCallbacksTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxCallbacksTest.php index aba9e8e3076b080bf11ea14919fcd6c92ece0970..ffdbd98eb91dc1eafb45a547c6d8d9dc19f28577 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxCallbacksTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxCallbacksTest.php @@ -14,7 +14,7 @@ class AjaxCallbacksTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ajax_forms_test']; + public static $modules = ['ajax_forms_test']; /** * Tests if Ajax callback works on date element. diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormCacheTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormCacheTest.php index d5abd6c91db283712b54617bdf6ba99c475ec14f..52e095267e769eb9d759c728304a0413a8c3034e 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormCacheTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormCacheTest.php @@ -17,7 +17,7 @@ class AjaxFormCacheTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ajax_test', 'ajax_forms_test']; + public static $modules = ['ajax_test', 'ajax_forms_test']; /** * Tests the usage of form cache for AJAX forms. diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormImageButtonTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormImageButtonTest.php index 3e7374ec0083ebb1d2a6583237a13f614ccfa04c..bfd890a04f755cf5645196e689a6470fedf57df2 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormImageButtonTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormImageButtonTest.php @@ -14,7 +14,7 @@ class AjaxFormImageButtonTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ajax_forms_test']; + public static $modules = ['ajax_forms_test']; /** * Tests image buttons can be operated with the keyboard ENTER key. diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormPageCacheTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormPageCacheTest.php index 902d07891d17ac4ca607b7f11e5a7360672e05a7..5a167f729cb92263eed2968543ec0f9a70afc4ef 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormPageCacheTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxFormPageCacheTest.php @@ -14,7 +14,7 @@ class AjaxFormPageCacheTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ajax_test', 'ajax_forms_test']; + public static $modules = ['ajax_test', 'ajax_forms_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxTest.php index 24a19d2daf77d47635a4a95ccc0efccb8e9fcf2f..5d11ce49b4bc758fffdb8864cc3af79f94d4b94d 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/AjaxTest.php @@ -14,7 +14,7 @@ class AjaxTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['ajax_test']; + public static $modules = ['ajax_test']; public function testAjaxWithAdminRoute() { \Drupal::service('theme_installer')->install(['stable', 'seven']); diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php index 094cc8bf252cc820e4180d979a16efa6240987fb..9a45583b7c2cbdb6c2f0007a32654043a7fda78c 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/BackwardCompatibilityTest.php @@ -14,7 +14,7 @@ class BackwardCompatibilityTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'js_ajax_test', ]; diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/ThrobberTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/ThrobberTest.php index 24fa7b71b78c751ccf85df2b393b87ae2053dfde..56715e6dd1355e78866a7635229098e874299372 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Ajax/ThrobberTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Ajax/ThrobberTest.php @@ -14,7 +14,7 @@ class ThrobberTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'node', 'views', 'views_ui', diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/FormGroupingElementsTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/FormGroupingElementsTest.php index cc68d3add1eafbb1981eae45f11343385ad68ef1..1c76c26ea350b2fff36bdef059b2fef9eceae09b 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/FormGroupingElementsTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Core/Form/FormGroupingElementsTest.php @@ -16,7 +16,7 @@ class FormGroupingElementsTest extends WebDriverTestBase { * * @var array */ - protected static $modules = ['form_test']; + public static $modules = ['form_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Core/MachineNameTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Core/MachineNameTest.php index e9f72cd2dff72049cae1e2806b059bc97febc7d8..4396a8b6e34d10fbc3bd6de182bd736887da30b0 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Core/MachineNameTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Core/MachineNameTest.php @@ -19,7 +19,7 @@ class MachineNameTest extends WebDriverTestBase { * * @var array */ - protected static $modules = ['node', 'form_test']; + public static $modules = ['node', 'form_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Core/Session/SessionTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Core/Session/SessionTest.php index 5b9e1b4b07e9620c8369f7c509567d72d0fd1701..f4a180038242fb9917faa20eff10bdde3874a246 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Core/Session/SessionTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Core/Session/SessionTest.php @@ -15,7 +15,7 @@ class SessionTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['menu_link_content', 'block']; + public static $modules = ['menu_link_content', 'block']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Dialog/DialogPositionTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Dialog/DialogPositionTest.php index ef29a99a31135a7c4f418f0b469ff61a74431ca0..4bfe3e0b3ae18525eda8770e325791ea5ad3bd5f 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Dialog/DialogPositionTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Dialog/DialogPositionTest.php @@ -14,7 +14,7 @@ class DialogPositionTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['block']; + public static $modules = ['block']; /** * Tests if the dialog UI works properly with block layout page. diff --git a/core/tests/Drupal/FunctionalJavascriptTests/EntityReference/EntityReferenceAutocompleteWidgetTest.php b/core/tests/Drupal/FunctionalJavascriptTests/EntityReference/EntityReferenceAutocompleteWidgetTest.php index 4c1ed6d34b63550d9d8afc95efea3d0a8549b58e..3d0b402a4816708118c188473c92eb3d66ada868 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/EntityReference/EntityReferenceAutocompleteWidgetTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/EntityReference/EntityReferenceAutocompleteWidgetTest.php @@ -21,7 +21,7 @@ class EntityReferenceAutocompleteWidgetTest extends WebDriverTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalJavascriptTests/Tests/JSWebAssertTest.php b/core/tests/Drupal/FunctionalJavascriptTests/Tests/JSWebAssertTest.php index 440a42ac1a131252dfd478e12167957f505b2000..6dd591f5fe4f1403e6a55e210fad1447ea8d2877 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/Tests/JSWebAssertTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/Tests/JSWebAssertTest.php @@ -17,7 +17,7 @@ class JSWebAssertTest extends WebDriverTestBase { * * @var array */ - protected static $modules = ['js_webassert_test']; + public static $modules = ['js_webassert_test']; /** * Tests that JSWebAssert assertions work correctly. diff --git a/core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php b/core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php index c1baa540c6ae05d04e346ca7850ec6e59eb1d544..9885200808e3e61624400b96b3187a6b59fe0148 100644 --- a/core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php +++ b/core/tests/Drupal/FunctionalTests/Bootstrap/UncaughtExceptionTest.php @@ -37,7 +37,7 @@ class UncaughtExceptionTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['error_service_test']; + public static $modules = ['error_service_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Breadcrumb/Breadcrumb404Test.php b/core/tests/Drupal/FunctionalTests/Breadcrumb/Breadcrumb404Test.php index cbf6b987a7933cda826d8b5430d1abf21520be7c..7dcafbff85c758ae7ed5b3b12bd1fc45d91d4ad4 100644 --- a/core/tests/Drupal/FunctionalTests/Breadcrumb/Breadcrumb404Test.php +++ b/core/tests/Drupal/FunctionalTests/Breadcrumb/Breadcrumb404Test.php @@ -17,7 +17,7 @@ class Breadcrumb404Test extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'block']; + public static $modules = ['system', 'block']; /** * Tests that different 404s don't create unnecessary cache entries. diff --git a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php index b042d9f058aa2ebaf1267f2f9256105b06ca7941..9673b6f06cc7db6b87a679e01d5e772b36f21a9f 100644 --- a/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php +++ b/core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php @@ -23,7 +23,7 @@ class BrowserTestBaseTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['test_page_test', 'form_test', 'system_test', 'node']; + public static $modules = ['test_page_test', 'form_test', 'system_test', 'node']; /** * Tests basic page test. diff --git a/core/tests/Drupal/FunctionalTests/Core/Config/SchemaConfigListenerTest.php b/core/tests/Drupal/FunctionalTests/Core/Config/SchemaConfigListenerTest.php index 262f58d387ab725da1b3b3f97310221c05907179..698a7d1a0347c31430b8a3b362774f28ef576779 100644 --- a/core/tests/Drupal/FunctionalTests/Core/Config/SchemaConfigListenerTest.php +++ b/core/tests/Drupal/FunctionalTests/Core/Config/SchemaConfigListenerTest.php @@ -17,6 +17,6 @@ class SchemaConfigListenerTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; } diff --git a/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php b/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php index 7259ac97d57c158685bc40def5ab9f4bbad01b9c..8faf8c6c915e047554b1c12a145cb15a850dec9f 100644 --- a/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php +++ b/core/tests/Drupal/FunctionalTests/Datetime/TimestampTest.php @@ -41,7 +41,7 @@ class TimestampTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'entity_test', 'field_ui']; + public static $modules = ['node', 'entity_test', 'field_ui']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest.php b/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest.php index 78d4024b1309158bfaeb38265d5abe7885c9cca7..e8c8ae5e5486f93d376bb9aefb35bd28775c7c6d 100644 --- a/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest.php +++ b/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest.php @@ -31,7 +31,7 @@ class ContentEntityFormCorrectUserInputMappingOnFieldDeltaElementsTest extends B /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormFieldValidationFilteringTest.php b/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormFieldValidationFilteringTest.php index 37ee858a743761032da19b322e5a12350a9b66e8..ad8b4383bdba98251e14ea66c001a5ea6aeb8a82 100644 --- a/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormFieldValidationFilteringTest.php +++ b/core/tests/Drupal/FunctionalTests/Entity/ContentEntityFormFieldValidationFilteringTest.php @@ -48,7 +48,7 @@ class ContentEntityFormFieldValidationFilteringTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'field_test', 'file', 'image']; + public static $modules = ['entity_test', 'field_test', 'file', 'image']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Entity/DeleteMultipleFormTest.php b/core/tests/Drupal/FunctionalTests/Entity/DeleteMultipleFormTest.php index ffbec00adc7fcbb472f117cacdab7e29999cdbdf..45f88d680e26a1d85553e5046f5a7d6ec378e840 100644 --- a/core/tests/Drupal/FunctionalTests/Entity/DeleteMultipleFormTest.php +++ b/core/tests/Drupal/FunctionalTests/Entity/DeleteMultipleFormTest.php @@ -29,7 +29,7 @@ class DeleteMultipleFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['entity_test', 'user', 'language']; + public static $modules = ['entity_test', 'user', 'language']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonAnonTest.php index e76976dbe34c45603d9af123affc59d59fac5528..688f26b5f43f15791e4b4d4570a18528859e24c5 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonAnonTest.php @@ -15,7 +15,7 @@ class BaseFieldOverrideHalJsonAnonTest extends BaseFieldOverrideResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonBasicAuthTest.php index 3fc7faf18ca609939ff477043709bc6405d6284d..84907fcc5782311ec23208ba244992854afa40b6 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class BaseFieldOverrideHalJsonBasicAuthTest extends BaseFieldOverrideResourceTes /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonCookieTest.php b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonCookieTest.php index db151a7fe0dd16d5e22f1481819db7ffe521ac96..e373bd824ba0d4bbec5fca61da4c69e9b67928e9 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonCookieTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/BaseFieldOverrideHalJsonCookieTest.php @@ -15,7 +15,7 @@ class BaseFieldOverrideHalJsonCookieTest extends BaseFieldOverrideResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonAnonTest.php index 7ff45510756b645ca8e77e9bce5ed90145ff1a70..443b607afa5e6d2e79f22e6a399b2bf5e0ec0975 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonAnonTest.php @@ -15,7 +15,7 @@ class DateFormatHalJsonAnonTest extends DateFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonBasicAuthTest.php index 9ee71e6c4bee80f123c16df57ea9db73e5a85311..afab361f3c94e9cea5d88f69c1e25c2bd6616551 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class DateFormatHalJsonBasicAuthTest extends DateFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonCookieTest.php b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonCookieTest.php index 78e250e76d01442c250065b5f1dcf7a082bf84c5..2b0fbd6a2e3f4c3fb4fa220f612c93ddc6fef4ba 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonCookieTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/DateFormatHalJsonCookieTest.php @@ -15,7 +15,7 @@ class DateFormatHalJsonCookieTest extends DateFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonAnonTest.php index 4876a93f8633af0573af54d1900ff0200e6676d2..1729c456bd323e4e98cb7565b9f6cfe061d5e62e 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonAnonTest.php @@ -15,7 +15,7 @@ class EntityFormDisplayHalJsonAnonTest extends EntityFormDisplayResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonBasicAuthTest.php index e25367a1c207d5c981f13d8439f8df346f836924..c8adf75796ef2998d3adb4267be761ef94b8ce43 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class EntityFormDisplayHalJsonBasicAuthTest extends EntityFormDisplayResourceTes /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonCookieTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonCookieTest.php index 1be4703fa8c8f324a4cab8b00092e7c195039929..d519e4a8df0b47c462e0d55d4c58b4203f0a9a02 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonCookieTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormDisplayHalJsonCookieTest.php @@ -15,7 +15,7 @@ class EntityFormDisplayHalJsonCookieTest extends EntityFormDisplayResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonAnonTest.php index d7768894258092b500737b703bedc0d8b7b2e9da..85d3b6f1167bb6fcacae67c75cbbf64180ee8af5 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class EntityFormModeHalJsonAnonTest extends EntityFormModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonBasicAuthTest.php index 9f8f576425e9275b92510407e2ff46a1bff7d717..373a13eb66f4c6c172e19380d9724d3a857df81f 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class EntityFormModeHalJsonBasicAuthTest extends EntityFormModeResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonCookieTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonCookieTest.php index 035980a0fbb0fd559b89f0ff928946ca316e2229..2df80e31c24a16938d25f68c2148c275adffe954 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonCookieTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityFormModeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class EntityFormModeHalJsonCookieTest extends EntityFormModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonAnonTest.php index 0c2c54ba7c6d732ae6e313ff5fc8d6e5e916d9ca..ff5feaef5eb3af606ea82007b8ae22e85a4d5818 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonAnonTest.php @@ -15,7 +15,7 @@ class EntityViewDisplayHalJsonAnonTest extends EntityViewDisplayResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonBasicAuthTest.php index 21def834e149115fddf7a73e937b66037d85d136..4ba2f444658f6dfe0fbc79c7e40a9795334c2000 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityViewDisplayHalJsonBasicAuthTest extends EntityViewDisplayHalJsonAnon /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonAnonTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonAnonTest.php index e97411eba6d667fd8e8b58758b811c4ee9fef61b..fdd5d7c46c4401c048756b3859eee9d3b06fcbce 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonAnonTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonAnonTest.php @@ -15,7 +15,7 @@ class EntityViewModeHalJsonAnonTest extends EntityViewModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonBasicAuthTest.php index b88364e5d1a2fed8550a2400719c0d56b7ab0d9b..e13ea25b032b9e7922f031e449c7ea43d49e0b26 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonBasicAuthTest.php @@ -15,7 +15,7 @@ class EntityViewModeHalJsonBasicAuthTest extends EntityViewModeResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['hal', 'basic_auth']; + public static $modules = ['hal', 'basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonCookieTest.php b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonCookieTest.php index db9a9180e853651376e5e25697b802c1a353e852..b5f4ad470f7720140dc3c6b062f3078246237707 100644 --- a/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonCookieTest.php +++ b/core/tests/Drupal/FunctionalTests/Hal/EntityViewModeHalJsonCookieTest.php @@ -15,7 +15,7 @@ class EntityViewModeHalJsonCookieTest extends EntityViewModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['hal']; + public static $modules = ['hal']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/HttpKernel/CorsIntegrationTest.php b/core/tests/Drupal/FunctionalTests/HttpKernel/CorsIntegrationTest.php index b8037691934e6feb35e50356292a20f91b25b617..cc43936d6f166f27d0b63965da080cd07337983d 100644 --- a/core/tests/Drupal/FunctionalTests/HttpKernel/CorsIntegrationTest.php +++ b/core/tests/Drupal/FunctionalTests/HttpKernel/CorsIntegrationTest.php @@ -19,7 +19,7 @@ class CorsIntegrationTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'test_page_test', 'page_cache']; + public static $modules = ['system', 'test_page_test', 'page_cache']; public function testCrossSiteRequest() { // Test default parameters. diff --git a/core/tests/Drupal/FunctionalTests/Image/ToolkitSetupFormTest.php b/core/tests/Drupal/FunctionalTests/Image/ToolkitSetupFormTest.php index eecf9e4e92512108e60ddcc7d9168a4f34ce7774..d501f1d98c2c95fc7ef346604edf54ac6abaca4f 100644 --- a/core/tests/Drupal/FunctionalTests/Image/ToolkitSetupFormTest.php +++ b/core/tests/Drupal/FunctionalTests/Image/ToolkitSetupFormTest.php @@ -23,7 +23,7 @@ class ToolkitSetupFormTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['system', 'image_test']; + public static $modules = ['system', 'image_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php b/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php index 7dc0abe9698b71ca834aea11c4e6da6165c71571..4e2f5decbeacb1e2cc46459790a2868097856f75 100644 --- a/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Image/ToolkitTestBase.php @@ -19,7 +19,7 @@ abstract class ToolkitTestBase extends BrowserTestBase { * * @var array */ - protected static $modules = ['image_test']; + public static $modules = ['image_test']; /** * The URI for the file. diff --git a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideJsonBasicAuthTest.php index c068675a70972b3657f00bfa147e106fe975939f..c40de5517b3c4435b8ab5c5d5ff201df74fd7d3b 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class BaseFieldOverrideJsonBasicAuthTest extends BaseFieldOverrideResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideResourceTestBase.php index 801c058482c4744ab76f91a173a25c9e5e48d98b..2c909807a74b2b383d11d879a192e8f39be6898b 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideResourceTestBase.php @@ -11,7 +11,7 @@ abstract class BaseFieldOverrideResourceTestBase extends EntityResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['field', 'node']; + public static $modules = ['field', 'node']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideXmlBasicAuthTest.php index 57915bd5c33a6470931677f6042ba781b0ab96ce..1e3f833567418e3ade3dbfa59fd947ead307b612 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/BaseFieldOverrideXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class BaseFieldOverrideXmlBasicAuthTest extends BaseFieldOverrideResourceTestBas /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/DateFormatJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/DateFormatJsonBasicAuthTest.php index f96c237146077d0d6bef3757346f39a02d3a9606..453f8a19203512d376a517d283df9476b43d6bb7 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/DateFormatJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/DateFormatJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class DateFormatJsonBasicAuthTest extends DateFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/DateFormatResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/DateFormatResourceTestBase.php index aea62d4d17981866dee5ee62ce63e835d83dbd78..30cc347e5d3da62a45d94d5ebf08acbaf038b16c 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/DateFormatResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/DateFormatResourceTestBase.php @@ -13,7 +13,7 @@ abstract class DateFormatResourceTestBase extends EntityResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = []; + public static $modules = []; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/DateFormatXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/DateFormatXmlBasicAuthTest.php index a844d21d73efeb691018503059dcd51ac3e6f8ab..eb787a99b83c9c39b8d8d64f96e4ca47be33219c 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/DateFormatXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/DateFormatXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class DateFormatXmlBasicAuthTest extends DateFormatResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayJsonBasicAuthTest.php index fe9a789820a6b1c64b59bffcaefacb202fca9e8b..36ca913eddaec60d93c6e45b08243512564e5986 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityFormDisplayJsonBasicAuthTest extends EntityFormDisplayResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayResourceTestBase.php index 9b68f31a571effb27d47c4e3ff0219495cef655c..a44534a31f0ca754dbabab5d2abff366f512bdca 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayResourceTestBase.php @@ -11,7 +11,7 @@ abstract class EntityFormDisplayResourceTestBase extends EntityResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayXmlBasicAuthTest.php index 8bb0357095798aafb0b5070d968632411e854588..2edf2460a9a569e36064020cc1c54149935b6f4e 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityFormDisplayXmlBasicAuthTest extends EntityFormDisplayResourceTestBas /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeJsonBasicAuthTest.php index 0f5dc631465fce8f0b0a8229166e59cef34a2ff3..bbfb6fbc98ef7f8d9a660739d421170c2c72f700 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityFormModeJsonBasicAuthTest extends EntityFormModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php index 362006ed1b4883f497665c74002cdd2cdab57420..e03710ab41c71f8873c31c246e2bc8054d7ca871 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php @@ -12,7 +12,7 @@ abstract class EntityFormModeResourceTestBase extends EntityResourceTestBase { * * @todo: Remove 'field_ui' when https://www.drupal.org/node/2867266. */ - protected static $modules = ['user', 'field_ui']; + public static $modules = ['user', 'field_ui']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlBasicAuthTest.php index 2888632aa0f43d334612012bc152d400c42d4b55..721ded8fd9595c13679fb3f4cc20a791343e478f 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityFormModeXmlBasicAuthTest extends EntityFormModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayJsonBasicAuthTest.php index 8e5901529a05f5e91060f7b361fb7bb9bbae3190..f4f2d15045c11cef4893671162f2c8c6e723573c 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityViewDisplayJsonBasicAuthTest extends EntityViewDisplayResourceTestBa /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php index 2f0428578ad464925ef9582aacf6ee925103f246..7ca5f81a55a36f414db4fedde0b6b116adfbc5ab 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayResourceTestBase.php @@ -11,7 +11,7 @@ abstract class EntityViewDisplayResourceTestBase extends EntityResourceTestBase /** * {@inheritdoc} */ - protected static $modules = ['node']; + public static $modules = ['node']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayXmlBasicAuthTest.php index 531e4c9cfc580e7461640aba49e01da58bafb127..7c7ce5bb03ab07b029e5c340f9c6b934a3c2dc94 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewDisplayXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityViewDisplayXmlBasicAuthTest extends EntityViewDisplayResourceTestBas /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeJsonBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeJsonBasicAuthTest.php index cb4337ce2382afc327114d148d1166c2141b6694..e34a58c660eb8c2ee5a320c384fe93c4c88f5408 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeJsonBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeJsonBasicAuthTest.php @@ -14,7 +14,7 @@ class EntityViewModeJsonBasicAuthTest extends EntityViewModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeResourceTestBase.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeResourceTestBase.php index 67b5046d52176c453cd6185b9e040c591b8452d5..b20ce6368fb0e2c58c8d5d7616596c78c9e9d504 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeResourceTestBase.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeResourceTestBase.php @@ -12,7 +12,7 @@ abstract class EntityViewModeResourceTestBase extends EntityResourceTestBase { * * @todo: Remove 'field_ui' when https://www.drupal.org/node/2867266. */ - protected static $modules = ['user', 'field_ui']; + public static $modules = ['user', 'field_ui']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeXmlBasicAuthTest.php b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeXmlBasicAuthTest.php index 5ba7aca6f905826edb2f350d4e0937bfae647a83..1b1e7181d0ad36ea18e2d6ab5f9956dbfa33157f 100644 --- a/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeXmlBasicAuthTest.php +++ b/core/tests/Drupal/FunctionalTests/Rest/EntityViewModeXmlBasicAuthTest.php @@ -16,7 +16,7 @@ class EntityViewModeXmlBasicAuthTest extends EntityViewModeResourceTestBase { /** * {@inheritdoc} */ - protected static $modules = ['basic_auth']; + public static $modules = ['basic_auth']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Routing/CaseInsensitivePathTest.php b/core/tests/Drupal/FunctionalTests/Routing/CaseInsensitivePathTest.php index afb8c1e4fc5deb3f14101aa6e5a04c9f49c35886..96b59d7be00a45acdbc33c5d6445fc90c1686737 100644 --- a/core/tests/Drupal/FunctionalTests/Routing/CaseInsensitivePathTest.php +++ b/core/tests/Drupal/FunctionalTests/Routing/CaseInsensitivePathTest.php @@ -14,7 +14,7 @@ class CaseInsensitivePathTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'views', 'node', 'system_test']; + public static $modules = ['system', 'views', 'node', 'system_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php b/core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php index e7e4095b76533a38c1fb61ee205d0eda5a4e6e09..bf695d658bae88fe098f932b2d285860176d9800 100644 --- a/core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php +++ b/core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php @@ -12,7 +12,7 @@ class DefaultFormatTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'default_format_test']; + public static $modules = ['system', 'default_format_test']; public function testFoo() { $this->drupalGet('/default_format_test/human'); diff --git a/core/tests/Drupal/FunctionalTests/Routing/PathEncodedTest.php b/core/tests/Drupal/FunctionalTests/Routing/PathEncodedTest.php index 83323990679faaf5578c377552af9ab5333dc151..a8aee89711f418234beeb6d0412ab19237316f32 100644 --- a/core/tests/Drupal/FunctionalTests/Routing/PathEncodedTest.php +++ b/core/tests/Drupal/FunctionalTests/Routing/PathEncodedTest.php @@ -15,7 +15,7 @@ class PathEncodedTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'path_encoded_test']; + public static $modules = ['system', 'path_encoded_test']; public function testGetEncoded() { $route_paths = [ diff --git a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php index 0fd459a25543e36df7a1c33364a10aded26ef655..f82cbb425a95a27ec0a20ef856223080f588ff6b 100644 --- a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php +++ b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingLanguageTest.php @@ -20,7 +20,7 @@ class RouteCachingLanguageTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['path', 'node', 'content_translation', 'link', 'block']; + public static $modules = ['path', 'node', 'content_translation', 'link', 'block']; /** * An user with permissions to administer content types. diff --git a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingNonPathLanguageNegotiationTest.php b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingNonPathLanguageNegotiationTest.php index 8907ab2444cebe980bca2da88c7b2709175cb13a..07286121b3c5fd7ccb0910ead04ee6edb6e40040 100644 --- a/core/tests/Drupal/FunctionalTests/Routing/RouteCachingNonPathLanguageNegotiationTest.php +++ b/core/tests/Drupal/FunctionalTests/Routing/RouteCachingNonPathLanguageNegotiationTest.php @@ -18,7 +18,7 @@ class RouteCachingNonPathLanguageNegotiationTest extends BrowserTestBase { * * @var array */ - protected static $modules = ['language', 'block']; + public static $modules = ['language', 'block']; /** * The admin user. diff --git a/core/tests/Drupal/KernelTests/Component/Utility/SafeMarkupKernelTest.php b/core/tests/Drupal/KernelTests/Component/Utility/SafeMarkupKernelTest.php index 468a235c5087c5c326a440690937565f75a69ab9..3028b62dd0270f75db63d6ded5b43e5d6819d7a1 100644 --- a/core/tests/Drupal/KernelTests/Component/Utility/SafeMarkupKernelTest.php +++ b/core/tests/Drupal/KernelTests/Component/Utility/SafeMarkupKernelTest.php @@ -16,7 +16,7 @@ class SafeMarkupKernelTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Config/DefaultConfigTest.php b/core/tests/Drupal/KernelTests/Config/DefaultConfigTest.php index 63777157f393a0bf4e7ba68960cfd24ff6ca4ab8..39a5accae38e5a1af91ceda0360267bc48596676 100644 --- a/core/tests/Drupal/KernelTests/Config/DefaultConfigTest.php +++ b/core/tests/Drupal/KernelTests/Config/DefaultConfigTest.php @@ -27,7 +27,7 @@ class DefaultConfigTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * The following config entries are changed on module install. diff --git a/core/tests/Drupal/KernelTests/Config/TypedConfigTest.php b/core/tests/Drupal/KernelTests/Config/TypedConfigTest.php index 674a8bbed64bec4cb7813b7fddcf123e082ef2d1..bc9c441d517ec38edfdd910a9ab7a85544c7614c 100644 --- a/core/tests/Drupal/KernelTests/Config/TypedConfigTest.php +++ b/core/tests/Drupal/KernelTests/Config/TypedConfigTest.php @@ -21,7 +21,7 @@ class TypedConfigTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Action/DeleteActionTest.php b/core/tests/Drupal/KernelTests/Core/Action/DeleteActionTest.php index 1c2c13deee72e085c2b54d2ebfbae398abe9fd35..e5a2bd95dab783732ec16fe21d7b4fd85d82e732 100644 --- a/core/tests/Drupal/KernelTests/Core/Action/DeleteActionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Action/DeleteActionTest.php @@ -18,7 +18,7 @@ class DeleteActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'entity_test', 'user']; + public static $modules = ['system', 'entity_test', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Action/PublishActionTest.php b/core/tests/Drupal/KernelTests/Core/Action/PublishActionTest.php index 384597eb28cc7f62f33fce0e5ec686d668834052..d381de115daa9c7e4fad6d127bbdbec275d82182 100644 --- a/core/tests/Drupal/KernelTests/Core/Action/PublishActionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Action/PublishActionTest.php @@ -15,7 +15,7 @@ class PublishActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'entity_test', 'user']; + public static $modules = ['system', 'entity_test', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php b/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php index bf63a770b9735e59cecc2aacf87477ec2b35a05d..ed9b2873a3f95e352a09d41630271517fb2cd903 100644 --- a/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Action/SaveActionTest.php @@ -15,7 +15,7 @@ class SaveActionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'entity_test', 'user']; + public static $modules = ['system', 'entity_test', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Asset/AttachedAssetsTest.php b/core/tests/Drupal/KernelTests/Core/Asset/AttachedAssetsTest.php index 7279a1553c1004ab17e68f6bbb578558d2a1185d..fff73c29862b791cefc9f3fba8b5ce942bcae946 100644 --- a/core/tests/Drupal/KernelTests/Core/Asset/AttachedAssetsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Asset/AttachedAssetsTest.php @@ -38,7 +38,7 @@ class AttachedAssetsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'simpletest', 'common_test', 'system']; + public static $modules = ['language', 'simpletest', 'common_test', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Asset/ResolvedLibraryDefinitionsFilesMatchTest.php b/core/tests/Drupal/KernelTests/Core/Asset/ResolvedLibraryDefinitionsFilesMatchTest.php index 3fc5cc65d7c4aeffb9a29d2737b7cf01bc4f89bf..bbb3d6a5a02c7249261f791da98ccc1758f5ecbc 100644 --- a/core/tests/Drupal/KernelTests/Core/Asset/ResolvedLibraryDefinitionsFilesMatchTest.php +++ b/core/tests/Drupal/KernelTests/Core/Asset/ResolvedLibraryDefinitionsFilesMatchTest.php @@ -86,7 +86,7 @@ class ResolvedLibraryDefinitionsFilesMatchTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Block/MultipleBlockFormTest.php b/core/tests/Drupal/KernelTests/Core/Block/MultipleBlockFormTest.php index 140621fc033f60e2077725b1cde1c7624552a698..2fbe025acfe9472a366f4cfdabf9eac36d56ff88 100644 --- a/core/tests/Drupal/KernelTests/Core/Block/MultipleBlockFormTest.php +++ b/core/tests/Drupal/KernelTests/Core/Block/MultipleBlockFormTest.php @@ -15,7 +15,7 @@ class MultipleBlockFormTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'block', 'block_test']; + public static $modules = ['system', 'block', 'block_test']; /** * Tests that blocks can have multiple forms. diff --git a/core/tests/Drupal/KernelTests/Core/Bootstrap/GetFilenameTest.php b/core/tests/Drupal/KernelTests/Core/Bootstrap/GetFilenameTest.php index 74e418110c81603817709c4872cd4cb78d020bcb..396facf1582a48d8d725a9a2850d0fced5e872af 100644 --- a/core/tests/Drupal/KernelTests/Core/Bootstrap/GetFilenameTest.php +++ b/core/tests/Drupal/KernelTests/Core/Bootstrap/GetFilenameTest.php @@ -15,7 +15,7 @@ class GetFilenameTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Cache/CacheContextOptimizationTest.php b/core/tests/Drupal/KernelTests/Core/Cache/CacheContextOptimizationTest.php index 6cfce9e599d9863e0a535edd17cea98825ff25a9..0ae023053529d01bf47ec5d5930bdc56fb052982 100644 --- a/core/tests/Drupal/KernelTests/Core/Cache/CacheContextOptimizationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Cache/CacheContextOptimizationTest.php @@ -20,7 +20,7 @@ class CacheContextOptimizationTest extends KernelTestBase { * * @var string[] */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php index 99f14dd1d17ecc4207ea778bb3509427a40ee0da..0fefc390f43cb71d9b436940d03ff127ea46beba 100644 --- a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php +++ b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTagTest.php @@ -19,7 +19,7 @@ class DatabaseBackendTagTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php index 4563bfe2d87ffa232ac11fd25fd8d56e25203bc5..358b92530c6f75ca6014c07388f6fe2de0c3fa91 100644 --- a/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php +++ b/core/tests/Drupal/KernelTests/Core/Cache/DatabaseBackendTest.php @@ -23,7 +23,7 @@ class DatabaseBackendTest extends GenericCacheBackendUnitTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Creates a new instance of DatabaseBackend. diff --git a/core/tests/Drupal/KernelTests/Core/Command/DbDumpTest.php b/core/tests/Drupal/KernelTests/Core/Command/DbDumpTest.php index 7b06347892a50a8eafccab6eb8db4c7ed6c9884c..16070c0e2e568f2074dae719f02a8c7ee4aab93c 100644 --- a/core/tests/Drupal/KernelTests/Core/Command/DbDumpTest.php +++ b/core/tests/Drupal/KernelTests/Core/Command/DbDumpTest.php @@ -22,7 +22,7 @@ class DbDumpTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'config', 'dblog', 'menu_link_content', 'link', 'block_content', 'file', 'user']; + public static $modules = ['system', 'config', 'dblog', 'menu_link_content', 'link', 'block_content', 'file', 'user']; /** * Test data to write into config. diff --git a/core/tests/Drupal/KernelTests/Core/Common/XssUnitTest.php b/core/tests/Drupal/KernelTests/Core/Common/XssUnitTest.php index f2a7c103972741b88c6f7e59dd7a4f284f138500..23754879eb8783f17e2c7708ac120f6feecbb0c8 100644 --- a/core/tests/Drupal/KernelTests/Core/Common/XssUnitTest.php +++ b/core/tests/Drupal/KernelTests/Core/Common/XssUnitTest.php @@ -18,7 +18,7 @@ class XssUnitTest extends KernelTestBase { * * @var array */ - protected static $modules = ['filter', 'system']; + public static $modules = ['filter', 'system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/CacheabilityMetadataConfigOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Config/CacheabilityMetadataConfigOverrideTest.php index 55eabda6f52efc4fb1aabb4afb0d7deeea8d5681..4ceebf5b9b32deee12dddeb4a0151998740c6722 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/CacheabilityMetadataConfigOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/CacheabilityMetadataConfigOverrideTest.php @@ -15,7 +15,7 @@ class CacheabilityMetadataConfigOverrideTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = [ + public static $modules = [ 'block', 'block_content', 'config', diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigCRUDTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigCRUDTest.php index 49d8921ba2ea48cfd94f74d383e9c9b4408d9daa..99a94d182f47d2baf8b1f28d3346271a2c2869f1 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigCRUDTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigCRUDTest.php @@ -32,7 +32,7 @@ class ConfigCRUDTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests CRUD operations. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigDependencyTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigDependencyTest.php index 7ed091203324faa87c6ed91d69263add33e83b45..6a0f938bd4558bad8872066fd5e8223a7849b24b 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigDependencyTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigDependencyTest.php @@ -21,7 +21,7 @@ class ConfigDependencyTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'entity_test', 'user']; + public static $modules = ['config_test', 'entity_test', 'user']; /** * Tests that calculating dependencies for system module. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigDiffTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigDiffTest.php index 279817671594ef765c2a0c8037dac94393feb797..f29b88acd1410322035d6701ba6b84a9d9b6b036 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigDiffTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigDiffTest.php @@ -16,7 +16,7 @@ class ConfigDiffTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'system']; + public static $modules = ['config_test', 'system']; /** * Tests calculating the difference between two sets of configuration. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php index 7775f808faaf3fca88fbe94823a071a029e1a33e..1b468b0670fae09ea869b14ecdbc32ebbd7f6eb1 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityNormalizeTest.php @@ -16,7 +16,7 @@ class ConfigEntityNormalizeTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStaticCacheTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStaticCacheTest.php index 71d7d9c909cc9884e7a24ba5527d8f29bba8ff87..1cd9cb17537a809b06e101c7ea09bd886bd7d25c 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStaticCacheTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStaticCacheTest.php @@ -17,7 +17,7 @@ class ConfigEntityStaticCacheTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'config_entity_static_cache_test']; + public static $modules = ['config_test', 'config_entity_static_cache_test']; /** * The type ID of the entity under test. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php index de48a32422e06d1ecc8eb239114515e95be09c78..20ceef4051535aadefc48b4f85b76ad5c40e0dd1 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStatusTest.php @@ -16,7 +16,7 @@ class ConfigEntityStatusTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests the enabling/disabling of entities. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStorageTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStorageTest.php index 104ae7a045b8b46af65cb6885650f2951d5552bf..ce9a928d53a385157f7cd8903c32c7a0a8ca3482 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityStorageTest.php @@ -18,7 +18,7 @@ class ConfigEntityStorageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Tests creating configuration entities with changed UUIDs. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityUnitTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityUnitTest.php index 60c8361f0b712e30738ba5b3293c98e6989f2b49..154d2383b4f7c875274fd7b58473f78c1f784e26 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityUnitTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEntityUnitTest.php @@ -25,7 +25,7 @@ class ConfigEntityUnitTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * The config_test entity storage. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigEventsTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigEventsTest.php index 851fd6a8c0de622614dfe34977c48818795c09fc..74bb7984e6604e6e140483554465f00c0357f8bb 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigEventsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigEventsTest.php @@ -18,7 +18,7 @@ class ConfigEventsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_events_test']; + public static $modules = ['config_events_test']; /** * Tests configuration events. diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php index dedfbe9073da51fa866c92b1a654d440ed856b49..fef464ed7f21fdca9bcc21a9271326f03b7430c1 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRecreateTest.php @@ -26,7 +26,7 @@ class ConfigImportRecreateTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'field', 'text', 'user', 'node']; + public static $modules = ['system', 'field', 'text', 'user', 'node']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRenameValidationTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRenameValidationTest.php index 06648b0004c02b48b2b3117e02ad8df61843100a..f52b3956ab962d2a21dacf7fc0788aac8f39bae6 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRenameValidationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigImportRenameValidationTest.php @@ -29,7 +29,7 @@ class ConfigImportRenameValidationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'node', 'field', 'text', 'config_test']; + public static $modules = ['system', 'user', 'node', 'field', 'text', 'config_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterMissingContentTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterMissingContentTest.php index 036d7521fb2047ba67150024c5ea9f4541e069bc..db09e3f9f66d89d0aef48641599b68f4d5f6a60b 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterMissingContentTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterMissingContentTest.php @@ -26,7 +26,7 @@ class ConfigImporterMissingContentTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'entity_test', 'config_test', 'config_import_test']; + public static $modules = ['system', 'user', 'entity_test', 'config_test', 'config_import_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterTest.php index c4e797b335052667185e788e457fa4291f937bb5..41795e8c87d6042d3c8ae48ddf7ac0ba82e5a950 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigImporterTest.php @@ -33,7 +33,7 @@ class ConfigImporterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'system', 'config_import_test']; + public static $modules = ['config_test', 'system', 'config_import_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php index 4bfed9ab67143923ca9d7a5e86d474acbc65e280..5efd20bbb15dfdc5626ddb030471e6bafc022b51 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigInstallTest.php @@ -18,7 +18,7 @@ class ConfigInstallTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigLanguageOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigLanguageOverrideTest.php index e249bd37d800d3d3394b058f47fecca26ab43a17..5bf6f0ec47c53aacabcb33ab2a1117c9f04db0a9 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigLanguageOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigLanguageOverrideTest.php @@ -17,7 +17,7 @@ class ConfigLanguageOverrideTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'language', 'config_test', 'system', 'field']; + public static $modules = ['user', 'language', 'config_test', 'system', 'field']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigModuleOverridesTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigModuleOverridesTest.php index d88ab6ade13597b86386d6b28e92d9ec8aa6637e..a94123d4cb98b6e64a51b0da8c324a9989ce5033 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigModuleOverridesTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigModuleOverridesTest.php @@ -16,7 +16,7 @@ class ConfigModuleOverridesTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'config', 'config_override_test']; + public static $modules = ['system', 'config', 'config_override_test']; public function testSimpleModuleOverrides() { $GLOBALS['config_test_run_module_overrides'] = TRUE; diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigOverrideTest.php index bbf690e40a60347647ace6fc6244940833712e04..550e0d5b2b0f54406761fa629499c98d689ecdbc 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigOverrideTest.php @@ -16,7 +16,7 @@ class ConfigOverrideTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'config_test']; + public static $modules = ['system', 'config_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigOverridesPriorityTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigOverridesPriorityTest.php index 67c280c27737ff83aff2a1658dda1f4c1435b61c..6c568b8417f79843f12f5738dded7b64ccf8774c 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigOverridesPriorityTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigOverridesPriorityTest.php @@ -18,7 +18,7 @@ class ConfigOverridesPriorityTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'config', 'config_override_test', 'language']; + public static $modules = ['system', 'config', 'config_override_test', 'language']; public function testOverridePriorities() { $GLOBALS['config_test_run_module_overrides'] = FALSE; diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php index 00b93711bf4e0e7f8176e9940e041534d3f054b6..e16225d0ecaae6002f334f475342604e7980ca37 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigSchemaTest.php @@ -25,7 +25,7 @@ class ConfigSchemaTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'language', 'field', 'image', 'config_test', 'config_schema_test']; + public static $modules = ['system', 'language', 'field', 'image', 'config_test', 'config_schema_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/ConfigSnapshotTest.php b/core/tests/Drupal/KernelTests/Core/Config/ConfigSnapshotTest.php index 73766d5f515d5a80b9812aa8735c6bd5b94e03a4..645638d83239ab51485db64af724c62320a5d037 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/ConfigSnapshotTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/ConfigSnapshotTest.php @@ -17,7 +17,7 @@ class ConfigSnapshotTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'system']; + public static $modules = ['config_test', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php b/core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php index 082237da5d2db078500dcac8d934a35655901390..f06806cad6fd398345e8ce904e20b129dfe2b75e 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/DefaultConfigTest.php @@ -23,7 +23,7 @@ class DefaultConfigTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'config_test']; + public static $modules = ['system', 'config_test']; /** * Themes which provide default configuration and need enabling. diff --git a/core/tests/Drupal/KernelTests/Core/Config/Entity/ConfigEntityUpdaterTest.php b/core/tests/Drupal/KernelTests/Core/Config/Entity/ConfigEntityUpdaterTest.php index d37cfa6c23387210302e12b968d8bf85bfab5292..5aae17f7d64cd49f8565a6efdf0c402f1b3705d0 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/Entity/ConfigEntityUpdaterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/Entity/ConfigEntityUpdaterTest.php @@ -19,7 +19,7 @@ class ConfigEntityUpdaterTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * @covers ::update diff --git a/core/tests/Drupal/KernelTests/Core/Config/SchemaCheckTraitTest.php b/core/tests/Drupal/KernelTests/Core/Config/SchemaCheckTraitTest.php index 2a879d71612f930ce0edc58f5f8df279b82d7099..a11bcb65921c61a584b46ddb4596c59998699ff8 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/SchemaCheckTraitTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/SchemaCheckTraitTest.php @@ -26,7 +26,7 @@ class SchemaCheckTraitTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test', 'config_schema_test']; + public static $modules = ['config_test', 'config_schema_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Config/SchemaConfigListenerTest.php b/core/tests/Drupal/KernelTests/Core/Config/SchemaConfigListenerTest.php index 4518b727de7bb1dee381b1dac66173d171e12c7b..2674a3c6df85ecca8892e63f71d363ed58a90a59 100644 --- a/core/tests/Drupal/KernelTests/Core/Config/SchemaConfigListenerTest.php +++ b/core/tests/Drupal/KernelTests/Core/Config/SchemaConfigListenerTest.php @@ -17,7 +17,7 @@ class SchemaConfigListenerTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php b/core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php index fca5fa33059690e9ab1ef0528c9a6ca3c45a3b24..784bfd6189a4079d5f6add46bc7b4755b47ed980 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php +++ b/core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php @@ -13,7 +13,7 @@ */ abstract class DatabaseTestBase extends KernelTestBase { - protected static $modules = ['database_test']; + public static $modules = ['database_test']; /** * The database connection for testing. diff --git a/core/tests/Drupal/KernelTests/Core/Database/NextIdTest.php b/core/tests/Drupal/KernelTests/Core/Database/NextIdTest.php index b078c7b98df68e10d52f9d748d51f28e22adcffd..129d50ba0030430290f58d26a67edd4841f297bc 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/NextIdTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/NextIdTest.php @@ -15,7 +15,7 @@ class NextIdTest extends KernelTestBase { * The modules to enable. * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php b/core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php index 0cd44d73809b3080e8943f460d52bb07e56d9b7e..4dee52d5c7fd6c50949ba8cb2ef637b8054a72af 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/RegressionTest.php @@ -14,7 +14,7 @@ class RegressionTest extends DatabaseTestBase { * * @var array */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * Ensures that non-ASCII UTF-8 data is stored in the database properly. diff --git a/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php b/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php index 42f5a5ff860ded6ffc651c57956afd8d175fea64..23ec66494a9eed34ef58e9e62bd5319f846e2b4f 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php @@ -19,7 +19,7 @@ class SelectComplexTest extends DatabaseTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'node_access_test', 'field']; + public static $modules = ['system', 'user', 'node_access_test', 'field']; /** * Tests simple JOIN statements. diff --git a/core/tests/Drupal/KernelTests/Core/Datetime/FormatDateTest.php b/core/tests/Drupal/KernelTests/Core/Datetime/FormatDateTest.php index a127447bfdfa6781af0a212b1f07535125c55fb5..036b385ae43abd3534d5c97d5a77528842db71e6 100644 --- a/core/tests/Drupal/KernelTests/Core/Datetime/FormatDateTest.php +++ b/core/tests/Drupal/KernelTests/Core/Datetime/FormatDateTest.php @@ -15,7 +15,7 @@ class FormatDateTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'system']; + public static $modules = ['language', 'system']; /** * Arbitrary langcode for a custom language. diff --git a/core/tests/Drupal/KernelTests/Core/Element/PathElementFormTest.php b/core/tests/Drupal/KernelTests/Core/Element/PathElementFormTest.php index 12aa7ef304c6a69eab84e72f7100530baa58f074..b5b9ffd5ec892bc883ddd0dea853dbeb97fc4021 100644 --- a/core/tests/Drupal/KernelTests/Core/Element/PathElementFormTest.php +++ b/core/tests/Drupal/KernelTests/Core/Element/PathElementFormTest.php @@ -30,7 +30,7 @@ class PathElementFormTest extends KernelTestBase implements FormInterface { * * @var array */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * Sets up the test. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php index 5af2c6d4286c9625069c3253ea52a066b7d62bb9..613ba4e17dd12816160f70b20a083637d258952e 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/BundleConstraintValidatorTest.php @@ -19,7 +19,7 @@ class BundleConstraintValidatorTest extends KernelTestBase { */ protected $typedData; - protected static $modules = ['node', 'field', 'text', 'user']; + public static $modules = ['node', 'field', 'text', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php index 45443c9c358f433290032195caf3956c232985e1..af9403c320aa5ad02aeabc41d17c8f88d7d6cbc4 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityAdapterTest.php @@ -23,7 +23,7 @@ class ConfigEntityAdapterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * The config entity. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php index 5af84ff339dfe79359943efecf9521089c876ae9..839917aff0d45d2c8bf4a93eae030960d601f649 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ConfigEntityQueryTest.php @@ -19,7 +19,7 @@ class ConfigEntityQueryTest extends KernelTestBase { * * @var array */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * Stores the search results for alter comparison. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityChangedTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityChangedTest.php index d165e7016aa883a220a40d8d272c396046d200ee..aa0044bd8e865fb79f17bbc4879d23f1cee6694f 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityChangedTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityChangedTest.php @@ -18,7 +18,7 @@ class ContentEntityChangedTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['language', 'user', 'system', 'field', 'text', 'filter', 'entity_test']; + public static $modules = ['language', 'user', 'system', 'field', 'text', 'filter', 'entity_test']; /** * The EntityTestMulChanged entity type storage. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityCloneTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityCloneTest.php index edce7660cdd3f0a6f77c4276ec1a61bab958649b..8f08b272de36f55be94c0aaee837eb96fcc1633d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityCloneTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityCloneTest.php @@ -17,7 +17,7 @@ class ContentEntityCloneTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language', 'entity_test']; + public static $modules = ['language', 'entity_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityFieldMethodInvocationOrderTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityFieldMethodInvocationOrderTest.php index dda9da27e69485165b3210eb91cd43c7986422fe..5e25c90e0a6cde57251751ff3057e168b05f0bb5 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityFieldMethodInvocationOrderTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityFieldMethodInvocationOrderTest.php @@ -16,7 +16,7 @@ class ContentEntityFieldMethodInvocationOrderTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['language', 'system', 'entity_test']; + public static $modules = ['language', 'system', 'entity_test']; /** * The EntityTest entity type storage. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityHasChangesTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityHasChangesTest.php index 39ec64dcc4e80c8182d7445750ce15b49d8cc245..687ceb74c01c449c5400964f12b53dfcb8b1e602 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityHasChangesTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityHasChangesTest.php @@ -22,7 +22,7 @@ class ContentEntityHasChangesTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'entity_test']; + public static $modules = ['system', 'user', 'entity_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php index 8c82ce562566077e783158bebb6422a48b657ef8..99c99b068836e79fcbeeb1fdc0e914cc1eeaeab6 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNonRevisionableFieldTest.php @@ -18,7 +18,7 @@ class ContentEntityNonRevisionableFieldTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * The EntityTestMulRev entity type storage. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php index e5a183ad8b2442990ccd40595f4f3a0e02b41a1e..001d9ba3dee81b0b9f31650f6db133e3fb4f065c 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php @@ -22,7 +22,7 @@ class ContentEntityNullStorageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'contact', 'user']; + public static $modules = ['system', 'contact', 'user']; /** * Tests using entity query with ContentEntityNullStorage. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/CreateSampleEntityTest.php b/core/tests/Drupal/KernelTests/Core/Entity/CreateSampleEntityTest.php index 5efe4ebb95f8d4130d15cdbf7f78c38547bfb7ce..b5bcd487f2fdb340add1a564248cf0c076237797 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/CreateSampleEntityTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/CreateSampleEntityTest.php @@ -25,7 +25,7 @@ class CreateSampleEntityTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'field', 'filter', 'text', 'file', 'user', 'node', 'comment', 'taxonomy']; + public static $modules = ['system', 'field', 'filter', 'text', 'file', 'user', 'node', 'comment', 'taxonomy']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php index 2e714ee5161cf407d58df27315ffdd62bebfdc64..3013d2a933fc7449ee36d83867113700cc45b956 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/DefaultTableMappingIntegrationTest.php @@ -26,7 +26,7 @@ class DefaultTableMappingIntegrationTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test_extra']; + public static $modules = ['entity_test_extra']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityBundleFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityBundleFieldTest.php index e10d34f1b2139b0377df7891de2de938d9220814..22476d760af44a38495d8ca9087b69895474922b 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityBundleFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityBundleFieldTest.php @@ -14,7 +14,7 @@ class EntityBundleFieldTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['entity_schema_test']; + public static $modules = ['entity_schema_test']; /** * The module handler. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php index b37e1f9a2a7aec7ec26b9666faa02bc592127ffb..16fd8c5797e97e1a328a4d51ef36392fe9f38721 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityCrudHookTest.php @@ -40,7 +40,7 @@ class EntityCrudHookTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['block', 'block_test', 'entity_crud_hook_test', 'file', 'taxonomy', 'node', 'comment']; + public static $modules = ['block', 'block_test', 'entity_crud_hook_test', 'file', 'taxonomy', 'node', 'comment']; protected $ids = []; diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php index 40f2ecd8ddb34d8a97ca34cd2cf198c0fb8127c7..d4fbcfcb205a9c13e067514ae3cf17081ddfabed 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityDecoupledTranslationRevisionsTest.php @@ -22,7 +22,7 @@ class EntityDecoupledTranslationRevisionsTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'entity_test', 'language', diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php index 56bf124f603ae8c6813e383ef5e87dad2ac2ff59..1a743eceebed491d2e95ad1e5c5d71f9389fc550 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php @@ -47,7 +47,7 @@ class EntityDefinitionUpdateTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['entity_test_update']; + public static $modules = ['entity_test_update']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayBaseTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayBaseTest.php index 823ebb4cd5ebd1e95794a9bc1647069c949b2287..ec1a55cbbe49d6bbdf2e667b9e83f16dacae89b1 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayBaseTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayBaseTest.php @@ -18,7 +18,7 @@ class EntityDisplayBaseTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'entity_test_third_party', 'field', 'system', 'comment']; + public static $modules = ['entity_test', 'entity_test_third_party', 'field', 'system', 'comment']; /** * @covers ::preSave diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayFormBaseTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayFormBaseTest.php index 6f34e5ddc418880d3a678d5fbcb68f28790938ea..179c63e9f16a61fc7e896e1f96ceb4cac722b60a 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayFormBaseTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityDisplayFormBaseTest.php @@ -17,7 +17,7 @@ class EntityDisplayFormBaseTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test']; + public static $modules = ['entity_test']; /** * @covers ::copyFormValuesToEntity diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php index e9891de323c84b30acb11251257122ff07e868f7..3fd17d86b47798da09b4aa795e4a3663c7b66b10 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityFieldTest.php @@ -33,7 +33,7 @@ class EntityFieldTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['filter', 'text', 'node', 'user', 'field_test']; + public static $modules = ['filter', 'text', 'node', 'user', 'field_test']; /** * @var string diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityHasFieldConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityHasFieldConstraintValidatorTest.php index ba5f604dcf585fbe2cf0cf4b5df7c03ecb6a1aac..eebc94f52358bed0fd66272bc39284b98e7b89e0 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityHasFieldConstraintValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityHasFieldConstraintValidatorTest.php @@ -15,7 +15,7 @@ class EntityHasFieldConstraintValidatorTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test_constraints']; + public static $modules = ['entity_test_constraints']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php index 71fba5dcb38499cde2ff77d4599bd4c4cbd25c63..f7108d53b17d1bbfdbf02e24a84a47131642414e 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBase.php @@ -17,7 +17,7 @@ abstract class EntityKernelTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system', 'field', 'text', 'filter', 'entity_test']; + public static $modules = ['user', 'system', 'field', 'text', 'filter', 'entity_test']; /** * The entity manager service. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityLanguageTestBase.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityLanguageTestBase.php index 36ab8d3e7ae91ea64ee51eddb00bfd12178ae7f5..d76c3c17f8a0cd0baac5531244f978feaffdcb7e 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityLanguageTestBase.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityLanguageTestBase.php @@ -39,7 +39,7 @@ abstract class EntityLanguageTestBase extends EntityKernelTestBase { */ protected $untranslatableFieldName; - protected static $modules = ['language', 'entity_test']; + public static $modules = ['language', 'entity_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityNonRevisionableTranslatableFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityNonRevisionableTranslatableFieldTest.php index bf0f59033390c3dc0bcf934463b4ddaf59d41564..2160da96e55db9c8b941a33a5699eafd28ca129c 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityNonRevisionableTranslatableFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityNonRevisionableTranslatableFieldTest.php @@ -15,7 +15,7 @@ class EntityNonRevisionableTranslatableFieldTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'language', 'content_translation']; + public static $modules = ['entity_test', 'language', 'content_translation']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php index 09ca3d69ffbbdc89d5682e6e4c861353e5bd7e4c..9e8de3617360cd1acd27d0a3b504cf15c02cb14d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php @@ -18,7 +18,7 @@ class EntityQueryAggregateTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = []; + public static $modules = []; /** * The entity_test storage to create the test entities. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php index 39fcf1fd3e3d37b081f455ff5de74d345f5809a5..4e1f9d1e5d49183b523850b94e892eb1172cb59d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryRelationshipTest.php @@ -22,7 +22,7 @@ class EntityQueryRelationshipTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['taxonomy']; + public static $modules = ['taxonomy']; /** * Term entities. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php index a8cb8db88e56a8771ca1ab7aab696e9f7ac6a5d1..a47d9a9a6f9ad0481d6e793e5544c1e3256019df 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php @@ -26,7 +26,7 @@ class EntityQueryTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['field_test', 'language']; + public static $modules = ['field_test', 'language']; /** * @var array diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceFieldTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceFieldTest.php index aa1786048efb55e7241d030860a6e6b41bfcd871..469f4a32a553f876654a3edd54c7758f1a5af9b0 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceFieldTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceFieldTest.php @@ -59,7 +59,7 @@ class EntityReferenceFieldTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['entity_reference_test', 'entity_test_update']; + public static $modules = ['entity_reference_test', 'entity_test_update']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceSelection/EntityReferenceSelectionSortTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceSelection/EntityReferenceSelectionSortTest.php index 55e0210e9c251707605201c5df5056f4bbcc08f5..b2c72b99d92c57c8b2888bc96b7d300837cb9063 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceSelection/EntityReferenceSelectionSortTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityReferenceSelection/EntityReferenceSelectionSortTest.php @@ -21,7 +21,7 @@ class EntityReferenceSelectionSortTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['node']; + public static $modules = ['node']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionTranslationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionTranslationTest.php index 875adcff611e97110f18d446dca2d145a84ce04d..34969ebd4d16f0797a87f24ec668ca64dcd21c40 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionTranslationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionTranslationTest.php @@ -16,7 +16,7 @@ class EntityRevisionTranslationTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['language']; + public static $modules = ['language']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionsTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionsTest.php index cfec67525acf3038525e0258e1e78a2133b645e6..e5407fcc968e0bcf4d09ba5e3d666e971121a243 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityRevisionsTest.php @@ -19,7 +19,7 @@ class EntityRevisionsTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'entity_test', 'language', diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityTypeConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityTypeConstraintValidatorTest.php index 201ffa606381ea94a226a5d01674b38a74fbfef7..3671d6d408e87d3315021bb09b69af36d7b6d52d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityTypeConstraintValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityTypeConstraintValidatorTest.php @@ -18,7 +18,7 @@ class EntityTypeConstraintValidatorTest extends EntityKernelTestBase { */ protected $typedData; - protected static $modules = ['node', 'field', 'user']; + public static $modules = ['node', 'field', 'user']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityTypedDataDefinitionTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityTypedDataDefinitionTest.php index 46a634e0d55c405acc1afdaf4cc098075cd9af79..d0c01bccb5d8727121da0d42885539df5c443a3d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityTypedDataDefinitionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityTypedDataDefinitionTest.php @@ -35,7 +35,7 @@ class EntityTypedDataDefinitionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'filter', 'text', 'node', 'user']; + public static $modules = ['system', 'filter', 'text', 'node', 'user']; protected function setUp() { parent::setup(); diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php index c0c0d4f192d82fcec76002bd1abb9e02c75439f4..2a6dfed6c2d3590bb1616df09bfac17b6e6908ba 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php @@ -17,7 +17,7 @@ class EntityValidationTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['filter', 'text', 'language']; + public static $modules = ['filter', 'text', 'language']; /** * @var string diff --git a/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php b/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php index 3f4590fa9150d9d9dacd9680787f72ec65b7aee7..376a2fadfdaae55b582393ec729d1b5054e8da6d 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php @@ -22,7 +22,7 @@ class FieldSqlStorageTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['field', 'field_test', 'text', 'entity_test']; + public static $modules = ['field', 'field_test', 'text', 'entity_test']; /** * The name of the created field. diff --git a/core/tests/Drupal/KernelTests/Core/Entity/FieldWidgetConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Entity/FieldWidgetConstraintValidatorTest.php index b388585cc870db5a77f8a8fc67067bbdd2025c8d..d3d5e5b1d41376452e57838f8e1fffdfcb053761 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/FieldWidgetConstraintValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/FieldWidgetConstraintValidatorTest.php @@ -15,7 +15,7 @@ */ class FieldWidgetConstraintValidatorTest extends KernelTestBase { - protected static $modules = ['entity_test', 'field', 'field_test', 'user', 'system']; + public static $modules = ['entity_test', 'field', 'field_test', 'user', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/RevisionableContentEntityBaseTest.php b/core/tests/Drupal/KernelTests/Core/Entity/RevisionableContentEntityBaseTest.php index d1ebf4b79d4dc9ac24b0098742431ca850fefcb8..74b2d6e4d85b51f01994daace4928f718f55a52e 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/RevisionableContentEntityBaseTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/RevisionableContentEntityBaseTest.php @@ -17,7 +17,7 @@ class RevisionableContentEntityBaseTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test_revlog', 'system', 'user']; + public static $modules = ['entity_test_revlog', 'system', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php b/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php index ad3608b860894de12e75b71a04ed22bcef10ccf5..d68a1f5ac8cef7c4b84f6e36cb15109c4f7e9b72 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/RouteProviderTest.php @@ -20,7 +20,7 @@ class RouteProviderTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'user', 'system']; + public static $modules = ['entity_test', 'user', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php index f8b4ab34b39df70011875389ff6f05ccfa337105..be609d8d712e21fe0c1e76930a4913b1361e108e 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/ValidReferenceConstraintValidatorTest.php @@ -33,7 +33,7 @@ class ValidReferenceConstraintValidatorTest extends EntityKernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['field', 'node', 'user']; + public static $modules = ['field', 'node', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Extension/ModuleConfigureRouteTest.php b/core/tests/Drupal/KernelTests/Core/Extension/ModuleConfigureRouteTest.php index cfb9e0a0be1bf4dc40bda5fee5bcc97f668dbda1..96e469a84bbdfecd4fd57c956f4c72706e652f59 100644 --- a/core/tests/Drupal/KernelTests/Core/Extension/ModuleConfigureRouteTest.php +++ b/core/tests/Drupal/KernelTests/Core/Extension/ModuleConfigureRouteTest.php @@ -17,7 +17,7 @@ class ModuleConfigureRouteTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * @var \Drupal\Core\Routing\RouteProviderInterface diff --git a/core/tests/Drupal/KernelTests/Core/Extension/ModuleImplementsAlterTest.php b/core/tests/Drupal/KernelTests/Core/Extension/ModuleImplementsAlterTest.php index 7eb3a3c642d02f0eb566a04a618c5b610fd358e9..7d29a26124d50ed221bcfd13aea1a3047d479c84 100644 --- a/core/tests/Drupal/KernelTests/Core/Extension/ModuleImplementsAlterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Extension/ModuleImplementsAlterTest.php @@ -14,7 +14,7 @@ class ModuleImplementsAlterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests hook_module_implements_alter() adding an implementation. diff --git a/core/tests/Drupal/KernelTests/Core/Extension/ModuleInstallerTest.php b/core/tests/Drupal/KernelTests/Core/Extension/ModuleInstallerTest.php index 0786f2104a60e77dfb183dd498c06585690010be..7ffe65c9fc33392bf7b6420f5596cc2b0f78346f 100644 --- a/core/tests/Drupal/KernelTests/Core/Extension/ModuleInstallerTest.php +++ b/core/tests/Drupal/KernelTests/Core/Extension/ModuleInstallerTest.php @@ -22,7 +22,7 @@ class ModuleInstallerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests that routes are rebuilt during install and uninstall of modules. diff --git a/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php index 798cfc14d7c552c924bb29ea765f6b538af7ab0c..6430cb1b8be730b564dbeecdd26c32c32105fe82 100644 --- a/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Field/Entity/BaseFieldOverrideTest.php @@ -19,7 +19,7 @@ class BaseFieldOverrideTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'user', 'entity_test', diff --git a/core/tests/Drupal/KernelTests/Core/Field/FieldAccessTest.php b/core/tests/Drupal/KernelTests/Core/Field/FieldAccessTest.php index ca7a66b21260e83b5251d47af570987755ababfe..f273029bf2d2de89bf2a09f1aa05fdb33476d613 100644 --- a/core/tests/Drupal/KernelTests/Core/Field/FieldAccessTest.php +++ b/core/tests/Drupal/KernelTests/Core/Field/FieldAccessTest.php @@ -19,7 +19,7 @@ class FieldAccessTest extends KernelTestBase { * * @var array */ - protected static $modules = ['entity_test', 'field', 'system', 'text', 'filter', 'user']; + public static $modules = ['entity_test', 'field', 'system', 'text', 'filter', 'user']; /** * Holds the currently active global user ID that initiated the test run. diff --git a/core/tests/Drupal/KernelTests/Core/Field/FieldSettingsTest.php b/core/tests/Drupal/KernelTests/Core/Field/FieldSettingsTest.php index 51ee2f8251b76b37c425c4f6792653fc33312b77..9229a60b0b5c8f3a43e8a31af8647e55714511fe 100644 --- a/core/tests/Drupal/KernelTests/Core/Field/FieldSettingsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Field/FieldSettingsTest.php @@ -19,7 +19,7 @@ class FieldSettingsTest extends EntityKernelTestBase { * * @var array */ - protected static $modules = ['field', 'field_test']; + public static $modules = ['field', 'field_test']; /** * @covers \Drupal\Core\Field\BaseFieldDefinition::getSettings diff --git a/core/tests/Drupal/KernelTests/Core/File/FileTestBase.php b/core/tests/Drupal/KernelTests/Core/File/FileTestBase.php index c5b7477ad8d6107546ba20d2a642bb36cd13ccdd..92612ae7fd441d6ff58b80c219be8874df158cd4 100644 --- a/core/tests/Drupal/KernelTests/Core/File/FileTestBase.php +++ b/core/tests/Drupal/KernelTests/Core/File/FileTestBase.php @@ -16,7 +16,7 @@ abstract class FileTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/MimeTypeTest.php b/core/tests/Drupal/KernelTests/Core/File/MimeTypeTest.php index 918e568b05235aa0b975271e029f4d2c0deebbaf..4eca9976f222c18000b13efda225afa5da6347cb 100644 --- a/core/tests/Drupal/KernelTests/Core/File/MimeTypeTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/MimeTypeTest.php @@ -14,7 +14,7 @@ class MimeTypeTest extends FileTestBase { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * Test mapping of mimetypes from filenames. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php index 69a1a118809c7cf63aa231d0639acd9a3bb2f653..e41fb74e2e1049aef80286fae146cd02eb05763b 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileDirectoryTest.php @@ -14,7 +14,7 @@ class RemoteFileDirectoryTest extends DirectoryTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileScanDirectoryTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileScanDirectoryTest.php index e38b04811dfa943da8b6c9d31f02d78d6b226255..e3c68a72f3363a6280821cb323025c8455922bf3 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileScanDirectoryTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileScanDirectoryTest.php @@ -14,7 +14,7 @@ class RemoteFileScanDirectoryTest extends ScanDirectoryTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedCopyTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedCopyTest.php index cf8b425d9b42b414a19fc75ce9c237d0db96923a..b13b92cba52e206bc00ca82a9b6c8a4ed4887991 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedCopyTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedCopyTest.php @@ -14,7 +14,7 @@ class RemoteFileUnmanagedCopyTest extends UnmanagedCopyTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteRecursiveTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteRecursiveTest.php index dc9de903cc99a3dabdff691d4e4589e2b649df1b..6be98df4aa74e0395a266171978502b0cef43f8d 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteRecursiveTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteRecursiveTest.php @@ -14,7 +14,7 @@ class RemoteFileUnmanagedDeleteRecursiveTest extends UnmanagedDeleteRecursiveTes * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteTest.php index 91b1903d1adec854e72141ecc9a4b5038de80bd6..f826d4dd294b16791f976383d175c8e32ba914da 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedDeleteTest.php @@ -14,7 +14,7 @@ class RemoteFileUnmanagedDeleteTest extends UnmanagedDeleteTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedMoveTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedMoveTest.php index b8b257e2834fb1ad0962b0d36cab34f0d1c57dd9..e41f87e694c64cbf282d31a474fb70045dd39a01 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedMoveTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedMoveTest.php @@ -14,7 +14,7 @@ class RemoteFileUnmanagedMoveTest extends UnmanagedMoveTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedSaveDataTest.php b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedSaveDataTest.php index c5e267561b1fb0c8b1b26b48dec8780ac6c0ad1f..817da28288e9249c6f29a37aeb310316da2a7bc0 100644 --- a/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedSaveDataTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/RemoteFileUnmanagedSaveDataTest.php @@ -14,7 +14,7 @@ class RemoteFileUnmanagedSaveDataTest extends UnmanagedSaveDataTest { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php b/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php index 849a70c660532a8a2e1c18ce7e976f56116b0371..a096ae852677ac58e9a2599b753e968933b7641d 100644 --- a/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php @@ -14,7 +14,7 @@ class ScanDirectoryTest extends FileTestBase { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * @var string diff --git a/core/tests/Drupal/KernelTests/Core/File/StreamWrapperTest.php b/core/tests/Drupal/KernelTests/Core/File/StreamWrapperTest.php index ee12b81336c34d2e48a8d6370e6f7f42b3711a9b..6c18b6654ccda69848b8851ae01feb81091fe681 100644 --- a/core/tests/Drupal/KernelTests/Core/File/StreamWrapperTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/StreamWrapperTest.php @@ -19,7 +19,7 @@ class StreamWrapperTest extends FileTestBase { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * A stream wrapper scheme to register for the test. diff --git a/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php b/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php index 6e146ca1f537a864d66e0ea0d88562574f0e0db7..ff401e112ccfcfcd70cda4802d82e2c825761beb 100644 --- a/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php @@ -16,7 +16,7 @@ class UrlRewritingTest extends FileTestBase { * * @var array */ - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * Tests the rewriting of shipped file URLs by hook_file_url_alter(). diff --git a/core/tests/Drupal/KernelTests/Core/File/UrlTransformRelativeTest.php b/core/tests/Drupal/KernelTests/Core/File/UrlTransformRelativeTest.php index a7a8f3e596d71f6baed1c0700e438009b593d7ad..6614b2d5b4eb3e76d3849adc19c699b0b617691e 100644 --- a/core/tests/Drupal/KernelTests/Core/File/UrlTransformRelativeTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/UrlTransformRelativeTest.php @@ -12,7 +12,7 @@ */ class UrlTransformRelativeTest extends KernelTestBase { - protected static $modules = ['file_test']; + public static $modules = ['file_test']; /** * Tests file_url_transform_relative function. diff --git a/core/tests/Drupal/KernelTests/Core/Form/ExternalFormUrlTest.php b/core/tests/Drupal/KernelTests/Core/Form/ExternalFormUrlTest.php index b0c80062862f3a6ce8b037af0a4bb3dc52b96a6c..f3fbc4f76c9c0a0dde5e823832a01f0ffe77d439 100644 --- a/core/tests/Drupal/KernelTests/Core/Form/ExternalFormUrlTest.php +++ b/core/tests/Drupal/KernelTests/Core/Form/ExternalFormUrlTest.php @@ -18,7 +18,7 @@ class ExternalFormUrlTest extends KernelTestBase implements FormInterface { /** * {@inheritdoc} */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Form/FormCacheTest.php b/core/tests/Drupal/KernelTests/Core/Form/FormCacheTest.php index 0958392c10dfb50270d0bce052b058185bfc65bc..f6fb4f8713a42a26d00c7ef522a36f11378ed6ae 100644 --- a/core/tests/Drupal/KernelTests/Core/Form/FormCacheTest.php +++ b/core/tests/Drupal/KernelTests/Core/Form/FormCacheTest.php @@ -21,7 +21,7 @@ class FormCacheTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * @var string diff --git a/core/tests/Drupal/KernelTests/Core/Form/FormDefaultHandlersTest.php b/core/tests/Drupal/KernelTests/Core/Form/FormDefaultHandlersTest.php index 701c45f8a308a90dac1101c9cfc9978d93cf4743..6d79f17cfbbd5a9adaf2dcee481d10e4a8a641ba 100644 --- a/core/tests/Drupal/KernelTests/Core/Form/FormDefaultHandlersTest.php +++ b/core/tests/Drupal/KernelTests/Core/Form/FormDefaultHandlersTest.php @@ -19,7 +19,7 @@ class FormDefaultHandlersTest extends KernelTestBase implements FormInterface { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/HttpKernel/StackKernelIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/HttpKernel/StackKernelIntegrationTest.php index 393ec93656b522cbd5c3be8ec73d614b1cb669fc..29bbcff9a8479b42c25f3879461710f8039a4527 100644 --- a/core/tests/Drupal/KernelTests/Core/HttpKernel/StackKernelIntegrationTest.php +++ b/core/tests/Drupal/KernelTests/Core/HttpKernel/StackKernelIntegrationTest.php @@ -19,7 +19,7 @@ class StackKernelIntegrationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['httpkernel_test', 'system']; + public static $modules = ['httpkernel_test', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php b/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php index d1b0b4c756f1f7d2528442d9d56b8349b0038989..dba742df221dbf1bfde4902d1e8bb14988397c88 100644 --- a/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php +++ b/core/tests/Drupal/KernelTests/Core/Image/ToolkitGdTest.php @@ -42,7 +42,7 @@ class ToolkitGdTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'simpletest']; + public static $modules = ['system', 'simpletest']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php b/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php index 64fb0e4d3705274d364c5d771eb307fb707ffd4a..26a1abeff1b44ec996a589c555f3fb6e9e09649e 100644 --- a/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php +++ b/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageExpirableTest.php @@ -17,7 +17,7 @@ class DatabaseStorageExpirableTest extends StorageTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageTest.php b/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageTest.php index 9e6bd9c5011bd027babd5d221e08fa2065343fed..5852da143f1900ba6f4b3fd4d5da44403bd7de55 100644 --- a/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/KeyValueStore/DatabaseStorageTest.php @@ -17,7 +17,7 @@ class DatabaseStorageTest extends StorageTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/KeyValueStore/GarbageCollectionTest.php b/core/tests/Drupal/KernelTests/Core/KeyValueStore/GarbageCollectionTest.php index 8c4cb8cac1c9d35a10a6bfa225b6224b6a28b34e..ea76f0a4f5ecf12d43bb1d3b69d4fb7fb0ff4200 100644 --- a/core/tests/Drupal/KernelTests/Core/KeyValueStore/GarbageCollectionTest.php +++ b/core/tests/Drupal/KernelTests/Core/KeyValueStore/GarbageCollectionTest.php @@ -19,7 +19,7 @@ class GarbageCollectionTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/KeyValueStore/KeyValueContentEntityStorageTest.php b/core/tests/Drupal/KernelTests/Core/KeyValueStore/KeyValueContentEntityStorageTest.php index c49a2a2137812843eba320b743960a053fde6faf..98850055a5fb92195d9c0d64ba96cb67fe92f743 100644 --- a/core/tests/Drupal/KernelTests/Core/KeyValueStore/KeyValueContentEntityStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/KeyValueStore/KeyValueContentEntityStorageTest.php @@ -19,7 +19,7 @@ class KeyValueContentEntityStorageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'entity_test', 'keyvalue_test']; + public static $modules = ['user', 'entity_test', 'keyvalue_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkDefaultIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkDefaultIntegrationTest.php index 47fbe2bb933a8db7bcdbfa6ffe017b5960f51aa4..d0da9130a69e12b11319e245432d1bd5d30d4a6a 100644 --- a/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkDefaultIntegrationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkDefaultIntegrationTest.php @@ -17,7 +17,7 @@ class MenuLinkDefaultIntegrationTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'menu_test', ]; diff --git a/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkTreeTest.php b/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkTreeTest.php index 49ed72504e93b75e4f43f3d544d2433d45e022ce..04c04aa3e3f49ba1e69db55d5341311153b44a76 100644 --- a/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkTreeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Menu/MenuLinkTreeTest.php @@ -35,7 +35,7 @@ class MenuLinkTreeTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'system', 'menu_test', 'menu_link_content', diff --git a/core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php b/core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php index bb6d2e88fdacd3e07fb9df01a72f6ca6643b70f0..40d38867f0c8c1e400ca8b75879af33342f3bd18 100644 --- a/core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php +++ b/core/tests/Drupal/KernelTests/Core/ParamConverter/EntityConverterLatestRevisionTest.php @@ -20,7 +20,7 @@ class EntityConverterLatestRevisionTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'entity_test', 'user', 'language', diff --git a/core/tests/Drupal/KernelTests/Core/Path/AliasStorageTest.php b/core/tests/Drupal/KernelTests/Core/Path/AliasStorageTest.php index e9967f5b2458c777bcd9b55afebb32bd19f719c7..d7b24b497f75c15df7c659e515a0ca6689fc79b4 100644 --- a/core/tests/Drupal/KernelTests/Core/Path/AliasStorageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Path/AliasStorageTest.php @@ -14,7 +14,7 @@ class AliasStorageTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * @var \Drupal\Core\Path\AliasStorage diff --git a/core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php b/core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php index 001c4c51d38f5140048ef95c3ddd268c47335b28..6e8042c8e7f4bc5b287712a05a317f600a18b47e 100644 --- a/core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php +++ b/core/tests/Drupal/KernelTests/Core/Path/PathValidatorTest.php @@ -19,7 +19,7 @@ class PathValidatorTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['path', 'entity_test', 'user']; + public static $modules = ['path', 'entity_test', 'user']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Path/UrlAlterTest.php b/core/tests/Drupal/KernelTests/Core/Path/UrlAlterTest.php index ae5f631c5f6502e1375927abd456112bd4d4f53f..37ac65ae8e887c249275475f51545cc33bd88fb3 100644 --- a/core/tests/Drupal/KernelTests/Core/Path/UrlAlterTest.php +++ b/core/tests/Drupal/KernelTests/Core/Path/UrlAlterTest.php @@ -17,7 +17,7 @@ class UrlAlterTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['path', 'url_alter_test', 'user']; + public static $modules = ['path', 'url_alter_test', 'user']; public function testUrlWithQueryString() { // Test outbound query string altering. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/ConditionTestDualUserTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/ConditionTestDualUserTest.php index 468e2c4563ee8071cf017cb39bb1a6627895cdf8..b0aece9a10323304ded5dc28984e9dbf77ca07d9 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/ConditionTestDualUserTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/ConditionTestDualUserTest.php @@ -30,7 +30,7 @@ class ConditionTestDualUserTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'condition_test']; + public static $modules = ['system', 'user', 'condition_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/CurrentThemeConditionTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/CurrentThemeConditionTest.php index 54f9a09bd7083b05b46f6abe67ecb148d212fb6a..f75af9929d730bb665bbd92e5d6adf33d191b522 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/CurrentThemeConditionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/CurrentThemeConditionTest.php @@ -15,7 +15,7 @@ class CurrentThemeConditionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'theme_test']; + public static $modules = ['system', 'theme_test']; /** * Tests the current theme condition. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/OptionalContextConditionTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/OptionalContextConditionTest.php index b735d0c2692a0ac75f694bbf4fb05dab482e5ec7..e0a4a09952e2ee6e36304dd37d3d18c7bd7a9ea1 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/OptionalContextConditionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/OptionalContextConditionTest.php @@ -19,7 +19,7 @@ class OptionalContextConditionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user', 'condition_test', 'node']; + public static $modules = ['system', 'user', 'condition_test', 'node']; /** * Tests with both contexts mapped to the same user. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php index 41ed77c9dec0104b21e09ac892ce315f03733066..68b6eb770e82e2aabb0efbbb3d1373ab621adc63 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/Condition/RequestPathTest.php @@ -42,7 +42,7 @@ class RequestPathTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'user', 'field', 'path']; + public static $modules = ['system', 'user', 'field', 'path']; /** * The current path. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/ContextDefinitionTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/ContextDefinitionTest.php index d982030597b707ff862dc663669c23fb6cbb809f..842f76b456d8f00c990b18e08b26631c79b34717 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/ContextDefinitionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/ContextDefinitionTest.php @@ -16,7 +16,7 @@ class ContextDefinitionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['entity_test', 'user']; + public static $modules = ['entity_test', 'user']; /** * @covers ::isSatisfiedBy diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/ContextPluginTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/ContextPluginTest.php index 4dde6c2c752534bf94abda4f690d328927ce38ab..8a1fa4842f9d99dcced02d1c6239d684f346ad8e 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/ContextPluginTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/ContextPluginTest.php @@ -17,7 +17,7 @@ */ class ContextPluginTest extends KernelTestBase { - protected static $modules = ['system', 'user', 'node', 'field', 'filter', 'text']; + public static $modules = ['system', 'user', 'node', 'field', 'filter', 'text']; /** * Tests basic context definition and value getters and setters. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/DerivativeTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/DerivativeTest.php index e80ce22b8b2fc24e75118c87537d60debfa94d11..519d7373c5911ec433f89945e53249a81dc72b7e 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/DerivativeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/DerivativeTest.php @@ -12,7 +12,7 @@ class DerivativeTest extends PluginTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * Tests getDefinitions() and getDefinition() with a derivativeDecorator. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/FactoryTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/FactoryTest.php index 0178bb546ab01b8e1f24a7298dc8bc0f6cc9c122..ed7792982e6cfc46c955c7162954db46b3be1c41 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/FactoryTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/FactoryTest.php @@ -14,7 +14,7 @@ class FactoryTest extends PluginTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * Test that DefaultFactory can create a plugin instance. diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php b/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php index a737d9a5ef88ee61b7b19c2923f47427fe3b6ca8..20ba65c1bf0192281a39a2919c5b1d373bbfe952 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/InspectionTest.php @@ -12,7 +12,7 @@ class InspectionTest extends PluginTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'user']; + public static $modules = ['node', 'user']; /** * Ensure the test plugins correctly implement getPluginId() and getPluginDefinition(). diff --git a/core/tests/Drupal/KernelTests/Core/Plugin/PluginTestBase.php b/core/tests/Drupal/KernelTests/Core/Plugin/PluginTestBase.php index 935b444c8ede9d7fb506aaa396bd3a88de6cf401..1d3734fae0770d172d768cfe8d62c3725bbb329e 100644 --- a/core/tests/Drupal/KernelTests/Core/Plugin/PluginTestBase.php +++ b/core/tests/Drupal/KernelTests/Core/Plugin/PluginTestBase.php @@ -20,7 +20,7 @@ abstract class PluginTestBase extends KernelTestBase { * * @var array */ - protected static $modules = ['plugin_test']; + public static $modules = ['plugin_test']; protected $testPluginManager; protected $testPluginExpectedDefinitions; diff --git a/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php b/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php index 578b8b972a4cd0a90499e9fa4489786b1841f65e..b4e122b4b7a60cd3ff7276df86867e9a72b98fe4 100644 --- a/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Queue/QueueSerializationTest.php @@ -30,7 +30,7 @@ class QueueSerializationTest extends KernelTestBase implements FormInterface { * * @var array */ - protected static $modules = ['system', 'user', 'aggregator']; + public static $modules = ['system', 'user', 'aggregator']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Render/Element/ActionsTest.php b/core/tests/Drupal/KernelTests/Core/Render/Element/ActionsTest.php index 70081bca9b27aedf736a2a7bb1519a5aa86ed73d..135c7aabb192ff5f3f3f5ffd55a9b56851426597 100644 --- a/core/tests/Drupal/KernelTests/Core/Render/Element/ActionsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Render/Element/ActionsTest.php @@ -15,7 +15,7 @@ class ActionsTest extends KernelTestBase implements FormInterface { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Render/Element/RenderElementTypesTest.php b/core/tests/Drupal/KernelTests/Core/Render/Element/RenderElementTypesTest.php index 5d59f524fbe8e6d3653650104e4fb15544bf1193..906e74bb6a16155451f83ea3efc0afb15635d909 100644 --- a/core/tests/Drupal/KernelTests/Core/Render/Element/RenderElementTypesTest.php +++ b/core/tests/Drupal/KernelTests/Core/Render/Element/RenderElementTypesTest.php @@ -18,7 +18,7 @@ class RenderElementTypesTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'router_test']; + public static $modules = ['system', 'router_test']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php b/core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php index 49426b04065e93c64da5ce6cea4acdf4247211b5..6bf2faaa984b9b57db5cd25620ea1dd1159b1e90 100644 --- a/core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php +++ b/core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php @@ -16,7 +16,7 @@ class TableTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'form_test']; + public static $modules = ['system', 'form_test']; /** * Tableheader.js provides 'sticky' table headers, and is included by default. diff --git a/core/tests/Drupal/KernelTests/Core/Render/RenderCacheTest.php b/core/tests/Drupal/KernelTests/Core/Render/RenderCacheTest.php index 1d98ff42cea8fb1410a1e20fdb18a5186f02ac62..91061ca67f221633af5ad69f201055f8ded1b330 100644 --- a/core/tests/Drupal/KernelTests/Core/Render/RenderCacheTest.php +++ b/core/tests/Drupal/KernelTests/Core/Render/RenderCacheTest.php @@ -19,7 +19,7 @@ class RenderCacheTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'system']; + public static $modules = ['user', 'system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Render/RenderTest.php b/core/tests/Drupal/KernelTests/Core/Render/RenderTest.php index b0e3d8094a276c6850149835094de57351d3002d..043aae4445ce4ede9ff408091ff27b8ade13370d 100644 --- a/core/tests/Drupal/KernelTests/Core/Render/RenderTest.php +++ b/core/tests/Drupal/KernelTests/Core/Render/RenderTest.php @@ -16,7 +16,7 @@ class RenderTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'common_test', 'theme_test']; + public static $modules = ['system', 'common_test', 'theme_test']; /** * Tests theme preprocess functions being able to attach assets. diff --git a/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteNoneTest.php b/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteNoneTest.php index c6dc92998c497ee76e410de3d00521b272053285..6d26891fdbcb0ce0f4d6e751fc046e7802da613b 100644 --- a/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteNoneTest.php +++ b/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteNoneTest.php @@ -22,7 +22,7 @@ class RouteNoneTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * The URL generator. diff --git a/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteProcessorCurrentIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteProcessorCurrentIntegrationTest.php index bf9c5cdb435ebacd3bd08a519b2bb640f8458a9b..4e42271aa586966b863ceb4bf867b7cb69744e0c 100644 --- a/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteProcessorCurrentIntegrationTest.php +++ b/core/tests/Drupal/KernelTests/Core/RouteProcessor/RouteProcessorCurrentIntegrationTest.php @@ -21,7 +21,7 @@ class RouteProcessorCurrentIntegrationTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * The URL generator. diff --git a/core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php b/core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php index 7a8fcf4b020a5c9e2152a046b185d3ced96a5ff5..34c6d5852aed8e831cf7eaa3c26f8d5e87c8b8f3 100644 --- a/core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php +++ b/core/tests/Drupal/KernelTests/Core/Routing/ContentNegotiationRoutingTest.php @@ -17,7 +17,7 @@ class ContentNegotiationRoutingTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['conneg_test']; + public static $modules = ['conneg_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Routing/ExceptionHandlingTest.php b/core/tests/Drupal/KernelTests/Core/Routing/ExceptionHandlingTest.php index ae81c1ae5390e11ece2b615fee493a34d98d20b1..5d68f95e79311338f77d27f7ce4c0a28d2958117 100644 --- a/core/tests/Drupal/KernelTests/Core/Routing/ExceptionHandlingTest.php +++ b/core/tests/Drupal/KernelTests/Core/Routing/ExceptionHandlingTest.php @@ -17,7 +17,7 @@ class ExceptionHandlingTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'router_test']; + public static $modules = ['system', 'router_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php b/core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php index b3b07e48c441cabf08909da5d0641fff38054e3c..44efa16479769cadc55e8e0a5a0d74046834a7f7 100644 --- a/core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php +++ b/core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php @@ -37,7 +37,7 @@ class RouteProviderTest extends KernelTestBase { /** * Modules to enable. */ - protected static $modules = ['url_alter_test', 'system', 'language']; + public static $modules = ['url_alter_test', 'system', 'language']; /** * A collection of shared fixture data for tests. diff --git a/core/tests/Drupal/KernelTests/Core/Routing/UrlIntegrationTest.php b/core/tests/Drupal/KernelTests/Core/Routing/UrlIntegrationTest.php index 82138006769f82fb7e331482cfc2afb176dd14df..053db792cbb8493569a4041830a0376f8f8e14a5 100644 --- a/core/tests/Drupal/KernelTests/Core/Routing/UrlIntegrationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Routing/UrlIntegrationTest.php @@ -19,7 +19,7 @@ class UrlIntegrationTest extends KernelTestBase { * * @var array */ - protected static $modules = ['user', 'router_test', 'system']; + public static $modules = ['user', 'router_test', 'system']; /** * Ensures that the access() method on \Drupal\Core\Url objects works. diff --git a/core/tests/Drupal/KernelTests/Core/ServiceProvider/ServiceProviderTest.php b/core/tests/Drupal/KernelTests/Core/ServiceProvider/ServiceProviderTest.php index 0411f5f83ca574e4e0dd9d2ad301d47bcfdac470..970ea0486dd50ff64f654973e2b6d2cfa531ce25 100644 --- a/core/tests/Drupal/KernelTests/Core/ServiceProvider/ServiceProviderTest.php +++ b/core/tests/Drupal/KernelTests/Core/ServiceProvider/ServiceProviderTest.php @@ -16,7 +16,7 @@ class ServiceProviderTest extends KernelTestBase { * * @var array */ - protected static $modules = ['file', 'service_provider_test', 'system']; + public static $modules = ['file', 'service_provider_test', 'system']; /** * Tests that services provided by module service providers get registered to the DIC. diff --git a/core/tests/Drupal/KernelTests/Core/StringTranslation/TranslationStringTest.php b/core/tests/Drupal/KernelTests/Core/StringTranslation/TranslationStringTest.php index 04b21f68f473967264d53993aed1a61f76d0e327..d190cc53439db1b7703d20e9f0e58a29433107e5 100644 --- a/core/tests/Drupal/KernelTests/Core/StringTranslation/TranslationStringTest.php +++ b/core/tests/Drupal/KernelTests/Core/StringTranslation/TranslationStringTest.php @@ -18,7 +18,7 @@ class TranslationStringTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', ]; diff --git a/core/tests/Drupal/KernelTests/Core/TempStore/AnonymousPrivateTempStoreTest.php b/core/tests/Drupal/KernelTests/Core/TempStore/AnonymousPrivateTempStoreTest.php index 9b3922c4f2e71e3632622d4f5164551c8f6ed95a..7b1faa86cce15d908b1859436d17db9d60c74718 100644 --- a/core/tests/Drupal/KernelTests/Core/TempStore/AnonymousPrivateTempStoreTest.php +++ b/core/tests/Drupal/KernelTests/Core/TempStore/AnonymousPrivateTempStoreTest.php @@ -17,7 +17,7 @@ class AnonymousPrivateTempStoreTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/TempStore/TempStoreDatabaseTest.php b/core/tests/Drupal/KernelTests/Core/TempStore/TempStoreDatabaseTest.php index 9134ce491fdbd6bc894687c0f71466ecb82458bc..2abe70760cada5566f65810391b43f51301f20e1 100644 --- a/core/tests/Drupal/KernelTests/Core/TempStore/TempStoreDatabaseTest.php +++ b/core/tests/Drupal/KernelTests/Core/TempStore/TempStoreDatabaseTest.php @@ -21,7 +21,7 @@ class TempStoreDatabaseTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * A key/value store factory. diff --git a/core/tests/Drupal/KernelTests/Core/Test/PhpUnitBridgeTest.php b/core/tests/Drupal/KernelTests/Core/Test/PhpUnitBridgeTest.php index 2942eaace9f56f3c84b86fd6182e1b1db603f87a..d82a37b90698adf6a7bd4202a9271c2f1d8f89d4 100644 --- a/core/tests/Drupal/KernelTests/Core/Test/PhpUnitBridgeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Test/PhpUnitBridgeTest.php @@ -13,7 +13,7 @@ */ class PhpUnitBridgeTest extends KernelTestBase { - protected static $modules = ['deprecation_test']; + public static $modules = ['deprecation_test']; /** * @expectedDeprecation Drupal\deprecation_test\Deprecation\FixtureDeprecatedClass is deprecated. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php b/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php index e005cc343ce49a9d9d6ae6e9f078d77a3a31d25f..72cecce229cf1e23c38bd98db2d3c89139e9b1d5 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/ImageTest.php @@ -17,7 +17,7 @@ class ImageTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /* * The images to test with. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/MessageTest.php b/core/tests/Drupal/KernelTests/Core/Theme/MessageTest.php index 688fbb85dc6413a4e0cf10780661f3b1f73c4b3b..1b3796eff43132ffae02b937e3a339c6bbc38544 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/MessageTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/MessageTest.php @@ -14,7 +14,7 @@ class MessageTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests setting messages output. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/RegistryTest.php b/core/tests/Drupal/KernelTests/Core/Theme/RegistryTest.php index 46770cd530e472382d90f86987e7e25d4a78cd50..320e92f46a1497c1d357328f9c33e12ffd1a6d7a 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/RegistryTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/RegistryTest.php @@ -20,7 +20,7 @@ class RegistryTest extends KernelTestBase { * * @var array */ - protected static $modules = ['theme_test', 'system']; + public static $modules = ['theme_test', 'system']; protected $profile = 'testing'; diff --git a/core/tests/Drupal/KernelTests/Core/Theme/StableLibraryOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Theme/StableLibraryOverrideTest.php index 66d08383788c965f45c791980606701a04b3b875..1976b2684c29250cba086ceb4935d9d7436fb9a3 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/StableLibraryOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/StableLibraryOverrideTest.php @@ -49,7 +49,7 @@ class StableLibraryOverrideTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Theme/StableTemplateOverrideTest.php b/core/tests/Drupal/KernelTests/Core/Theme/StableTemplateOverrideTest.php index e33f7e72c85b568b5ccebd26497280a0849b206d..88bbde23a09c90ada1fad9b2d234981b3f772f2f 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/StableTemplateOverrideTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/StableTemplateOverrideTest.php @@ -15,7 +15,7 @@ class StableTemplateOverrideTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'user']; + public static $modules = ['system', 'user']; /** * An array of template names to skip, without the extension. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/StableThemeTest.php b/core/tests/Drupal/KernelTests/Core/Theme/StableThemeTest.php index 1d85402fa0e3e691c1e055401eb5e99c0835bad4..8a79a9eff42f61b837dd80cafa1656ff29f90194 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/StableThemeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/StableThemeTest.php @@ -16,7 +16,7 @@ class StableThemeTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * The theme handler. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/ThemeInstallerTest.php b/core/tests/Drupal/KernelTests/Core/Theme/ThemeInstallerTest.php index 994c721f4fc45af5e80425f7f8dd4e600a712ca2..dc606def6658bee3907bf3bb1da599f8bdc0c5e6 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/ThemeInstallerTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/ThemeInstallerTest.php @@ -19,7 +19,7 @@ class ThemeInstallerTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Theme/ThemeRenderAndAutoescapeTest.php b/core/tests/Drupal/KernelTests/Core/Theme/ThemeRenderAndAutoescapeTest.php index c68ec3c09471a5ff14ce05315e0d79d345fce53c..8bcc3c4bc98c1fd660671b132a70a78872a2900d 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/ThemeRenderAndAutoescapeTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/ThemeRenderAndAutoescapeTest.php @@ -25,7 +25,7 @@ class ThemeRenderAndAutoescapeTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php b/core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php index 0726e42c8b789e7704596f37c7843ed48e8f3d71..cf0e7d2c21222a3d86570041e8889611c0a039ea 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/ThemeSettingsTest.php @@ -18,7 +18,7 @@ class ThemeSettingsTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * List of discovered themes. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/TwigEnvironmentTest.php b/core/tests/Drupal/KernelTests/Core/Theme/TwigEnvironmentTest.php index 039595d3ecc4c681db46c8d6fe231508916b06ae..c95b0545b940cbaaf265718e31faba0965901c39 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/TwigEnvironmentTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/TwigEnvironmentTest.php @@ -23,7 +23,7 @@ class TwigEnvironmentTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system']; + public static $modules = ['system']; /** * Tests inline templates. diff --git a/core/tests/Drupal/KernelTests/Core/Theme/TwigMarkupInterfaceTest.php b/core/tests/Drupal/KernelTests/Core/Theme/TwigMarkupInterfaceTest.php index 3948062f2b5c981856e8d793d8d4669efcc56bc7..826ac047cb5baf306cf82d13c7330561ab2adcaa 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/TwigMarkupInterfaceTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/TwigMarkupInterfaceTest.php @@ -29,7 +29,7 @@ class TwigMarkupInterfaceTest extends KernelTestBase { * * @var array */ - protected static $modules = [ + public static $modules = [ 'language', ]; diff --git a/core/tests/Drupal/KernelTests/Core/Theme/TwigWhiteListTest.php b/core/tests/Drupal/KernelTests/Core/Theme/TwigWhiteListTest.php index a6381697885c1ea7b3e4728d39d447b7ccfefd06..7af10f59461b5bcb78106d25315ec5611cfe09ae 100644 --- a/core/tests/Drupal/KernelTests/Core/Theme/TwigWhiteListTest.php +++ b/core/tests/Drupal/KernelTests/Core/Theme/TwigWhiteListTest.php @@ -35,7 +35,7 @@ class TwigWhiteListTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['node', 'taxonomy', 'user', 'system', 'text', 'field', 'entity_reference']; + public static $modules = ['node', 'taxonomy', 'user', 'system', 'text', 'field', 'entity_reference']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/Core/TypedData/TypedDataTest.php b/core/tests/Drupal/KernelTests/Core/TypedData/TypedDataTest.php index 0ffbf04f3b0fc23cd4cc2f538c2ab012692aded1..777146530734045a788a463a3745646800e95a42 100644 --- a/core/tests/Drupal/KernelTests/Core/TypedData/TypedDataTest.php +++ b/core/tests/Drupal/KernelTests/Core/TypedData/TypedDataTest.php @@ -38,7 +38,7 @@ class TypedDataTest extends KernelTestBase { * * @var array */ - protected static $modules = ['system', 'field', 'file', 'user']; + public static $modules = ['system', 'field', 'file', 'user']; protected function setUp() { parent::setup(); diff --git a/core/tests/Drupal/KernelTests/Core/Update/CompatibilityFixTest.php b/core/tests/Drupal/KernelTests/Core/Update/CompatibilityFixTest.php index 9f11ea9f271ca64ac34012871e490676ae46da24..20a45cad5c1a7d6bf2ee8979b56bb50be5b207d1 100644 --- a/core/tests/Drupal/KernelTests/Core/Update/CompatibilityFixTest.php +++ b/core/tests/Drupal/KernelTests/Core/Update/CompatibilityFixTest.php @@ -14,7 +14,7 @@ class CompatibilityFixTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system']; + public static $modules = ['system']; protected function setUp() { parent::setUp(); diff --git a/core/tests/Drupal/KernelTests/Core/Url/LinkGenerationTest.php b/core/tests/Drupal/KernelTests/Core/Url/LinkGenerationTest.php index aa483c8f78eaa897454b5141a9d08d7ec7a98219..16452d011150b135bb6efe0b1140fa12fd79ee37 100644 --- a/core/tests/Drupal/KernelTests/Core/Url/LinkGenerationTest.php +++ b/core/tests/Drupal/KernelTests/Core/Url/LinkGenerationTest.php @@ -14,7 +14,7 @@ */ class LinkGenerationTest extends KernelTestBase { - protected static $modules = ['link_generation_test']; + public static $modules = ['link_generation_test']; /** * Tests how hook_link_alter() can affect escaping of the link text. diff --git a/core/tests/Drupal/KernelTests/Core/Validation/ConstraintsTest.php b/core/tests/Drupal/KernelTests/Core/Validation/ConstraintsTest.php index 0c5363f4996de49f39bd053b2ab0db0790c8b12f..8e17422ff68ade33f0e7f88c8581017619356778 100644 --- a/core/tests/Drupal/KernelTests/Core/Validation/ConstraintsTest.php +++ b/core/tests/Drupal/KernelTests/Core/Validation/ConstraintsTest.php @@ -14,7 +14,7 @@ class ConstraintsTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['config_test']; + public static $modules = ['config_test']; /** * {@inheritdoc} diff --git a/core/tests/Drupal/KernelTests/RequestProcessing/RedirectOnExceptionTest.php b/core/tests/Drupal/KernelTests/RequestProcessing/RedirectOnExceptionTest.php index f4369ed7fa065473924a33e8ef29465bfd58ff27..c7eb3b226fc1a826fd99747abcd8398419eb4f4a 100644 --- a/core/tests/Drupal/KernelTests/RequestProcessing/RedirectOnExceptionTest.php +++ b/core/tests/Drupal/KernelTests/RequestProcessing/RedirectOnExceptionTest.php @@ -16,7 +16,7 @@ class RedirectOnExceptionTest extends KernelTestBase { /** * {@inheritdoc} */ - protected static $modules = ['system', 'test_page_test']; + public static $modules = ['system', 'test_page_test']; /** * {@inheritdoc}