From 40a2b4d739a800da600bf745be3102b0d7f8b26a Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Wed, 21 May 2014 17:58:39 +0200 Subject: [PATCH 1/5] Throw exceptions in case that $definition['class'] is not a class of the expected type. --- core/lib/Drupal/Core/Field/FieldDefinition.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/lib/Drupal/Core/Field/FieldDefinition.php b/core/lib/Drupal/Core/Field/FieldDefinition.php index cfeccf8..7b695f1 100644 --- a/core/lib/Drupal/Core/Field/FieldDefinition.php +++ b/core/lib/Drupal/Core/Field/FieldDefinition.php @@ -475,7 +475,16 @@ public function getSchema() { if (!isset($this->schema)) { // Get the schema from the field item class. $definition = \Drupal::service('plugin.manager.field.field_type')->getDefinition($this->getType()); + if (!isset($definition['class'])) { + throw new \Exception("\$definition['class'] is not set."); + } $class = $definition['class']; + if (!class_exists($class)) { + throw new \Exception(var_export($class, TRUE) . " is not a class."); + } + if (!is_subclass_of($class, 'Drupal\Core\Field\FieldItemInterface')) { + throw new \Exception("class $class must implement FieldItemInterface."); + } $schema = $class::schema($this); // Fill in default values. $schema += array( -- 1.8.5.1 From 93233d69b8fe5b7db80631c2714a9c682b9e3527 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Wed, 21 May 2014 06:38:46 +0200 Subject: [PATCH 2/5] Correct the folder name for CustomBlockLocalTasksTest. --- .../Tests/Menu/CustomBlockLocalTasksTest.php | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename core/modules/block/custom_block/tests/Drupal/{custom_blocks => custom_block}/Tests/Menu/CustomBlockLocalTasksTest.php (100%) diff --git a/core/modules/block/custom_block/tests/Drupal/custom_blocks/Tests/Menu/CustomBlockLocalTasksTest.php b/core/modules/block/custom_block/tests/Drupal/custom_block/Tests/Menu/CustomBlockLocalTasksTest.php similarity index 100% rename from core/modules/block/custom_block/tests/Drupal/custom_blocks/Tests/Menu/CustomBlockLocalTasksTest.php rename to core/modules/block/custom_block/tests/Drupal/custom_block/Tests/Menu/CustomBlockLocalTasksTest.php -- 1.8.5.1 From 54bbc3836dc8b8e2ca353183cd015978e741b8c0 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Wed, 21 May 2014 21:46:24 +0200 Subject: [PATCH 3/5] Make PathFieldDefinitionTest safe for PSR-4. Clean this up later. --- core/modules/path/tests/src/Field/PathFieldDefinitionTest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/modules/path/tests/src/Field/PathFieldDefinitionTest.php b/core/modules/path/tests/src/Field/PathFieldDefinitionTest.php index fb99b82..89d4f6c 100644 --- a/core/modules/path/tests/src/Field/PathFieldDefinitionTest.php +++ b/core/modules/path/tests/src/Field/PathFieldDefinitionTest.php @@ -42,7 +42,12 @@ protected function getPluginId() { * {@inheritdoc} */ protected function getNamespacePath() { - return dirname(dirname(dirname(__DIR__))) . '/lib/Drupal/path'; + // @todo Remove this distinction after issue #2247991. + return is_dir($dir_psr4 = dirname(__DIR__) . '/src') + // After the PSR-4 transition. + ? $dir_psr4 + // Before the PSR-4 transition. + : dirname(dirname(dirname(__DIR__))) . '/lib/Drupal/path'; } /** -- 1.8.5.1 From 21aeb0aa506b005a0c1a4e79278dc168651b3272 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Wed, 21 May 2014 22:30:31 +0200 Subject: [PATCH 4/5] Improve core/scripts/switch-psr4.sh, to make sure that remaining empty PSR-0 directories are removed. --- core/scripts/switch-psr4.sh | 108 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 89 insertions(+), 19 deletions(-) diff --git a/core/scripts/switch-psr4.sh b/core/scripts/switch-psr4.sh index 07b6826..f460647 100644 --- a/core/scripts/switch-psr4.sh +++ b/core/scripts/switch-psr4.sh @@ -187,7 +187,9 @@ function process_candidate_dir($dir) { function process_extension($name, $dir) { if (!is_dir($source = "$dir/lib/Drupal/$name")) { - // Nothing to do in this module. + // No PSR-0 class files to be moved, but there could still be a remaining + // empty "lib" directory. + remove_empty_directory_tree_if_exists("$dir/lib"); return; } @@ -199,8 +201,7 @@ function process_extension($name, $dir) { move_directory_contents($source, $destination); // Clean up. - require_dir_empty("$dir/lib/Drupal"); - rmdir("$dir/lib/Drupal"); + remove_empty_directory_tree("$dir/lib"); } /** @@ -218,6 +219,9 @@ function process_extension_phpunit($name, $dir) { if (!is_dir($source = "$dir/tests/Drupal/$name/Tests")) { // Nothing to do in this module. + // No PSR-0 PHPUnit class files to be moved, but there could still be a + // remaining empty "tests/lib" directory. + remove_empty_directory_tree_if_exists("$dir/tests/lib"); return; } @@ -229,10 +233,7 @@ function process_extension_phpunit($name, $dir) { move_directory_contents($source, $dest); // Clean up. - require_dir_empty("$dir/tests/Drupal/$name"); - rmdir("$dir/tests/Drupal/$name"); - require_dir_empty("$dir/tests/Drupal"); - rmdir("$dir/tests/Drupal"); + remove_empty_directory_tree("$dir/tests/Drupal"); } /** @@ -284,6 +285,63 @@ function move_directory_contents($source, $destination) { } /** + * Removes a directory tree, if it exists and it contains no files. + * + * Throws an exception, if the given path is a file instead of a directory, or + * if the directory tree contains any files. + * + * @param string $dir + * Path to the directory tree to be removed. + * + * @throws \Exception + */ +function remove_empty_directory_tree_if_exists($dir) { + + if (!file_exists($dir)) { + // The path is neither a file nor a directory. + return; + } + + // Recursively remove the directory and subfolders, and throw an exception if + // any file is found. + remove_empty_directory_tree($dir); +} + +/** + * Removes a directory tree, if it contains only subdirectories and no files. + * + * Throws an exception if any file is found. + * + * @param string $dir + * Path to the directory tree to be removed. + * + * @throws \Exception + */ +function remove_empty_directory_tree($dir) { + + // Throw an exception if the directory does not exist. + require_is_readable_dir($dir); + + // Recursively remove subdirectories, and verify that no files exist anywhere + // in the directory tree. + foreach (new \DirectoryIterator($dir) as $fileinfo) { + if ($fileinfo->isDot()) { + continue; + } + $path = $fileinfo->getPathname(); + if ($fileinfo->isFile()) { + throw new \Exception("File '$path' found in a directory that is expected to not contain any files."); + } + if ($fileinfo->isDir()) { + remove_empty_directory_tree($path); + } + } + + // Remove the parent directory. + rmdir($dir); +} + +/** * Throws an exception if a directory is not empty. * * @param string $dir @@ -292,18 +350,11 @@ function move_directory_contents($source, $destination) { * @throws \Exception */ function require_dir_empty($dir) { - if (is_file($dir)) { - throw new \Exception("The path '$dir' is a file, when it should be a directory."); - } - if (!is_dir($dir)) { - throw new \Exception("The directory '$dir' does not exist."); - } - if (!is_readable($dir)) { - throw new \Exception("The directory '$dir' is not readable."); - } - /** - * @var \DirectoryIterator $fileinfo - */ + + // Throw an exception if the directory does not exist. + require_is_readable_dir($dir); + + // Verify that no files or subfolders exist anywhere in the directory. foreach (new \DirectoryIterator($dir) as $fileinfo) { if ($fileinfo->isDot()) { continue; @@ -317,3 +368,22 @@ function require_dir_empty($dir) { } } } + +/** + * Throws an exception if a given path is not a readable directory. + * + * @param $dir + * + * @throws \Exception + */ +function require_is_readable_dir($dir) { + if (is_file($dir)) { + throw new \Exception("The path '$dir' is a file, when it should be a directory."); + } + if (!is_dir($dir)) { + throw new \Exception("The directory '$dir' does not exist."); + } + if (!is_readable($dir)) { + throw new \Exception("The directory '$dir' is not readable."); + } +} -- 1.8.5.1 From 7d15c410f3b0845d3d4648513bbb005879412f95 Mon Sep 17 00:00:00 2001 From: Andreas Hennings Date: Wed, 21 May 2014 22:31:20 +0200 Subject: [PATCH 5/5] Move module-provided class files to PSR-4. --- core/modules/action/{lib/Drupal/action => src}/ActionAddForm.php | 0 core/modules/action/{lib/Drupal/action => src}/ActionEditForm.php | 0 core/modules/action/{lib/Drupal/action => src}/ActionFormBase.php | 0 core/modules/action/{lib/Drupal/action => src}/ActionListBuilder.php | 0 .../action/{lib/Drupal/action => src}/Form/ActionAdminManageForm.php | 0 core/modules/action/{lib/Drupal/action => src}/Form/ActionDeleteForm.php | 0 .../action/{lib/Drupal/action => src}/Plugin/Action/EmailAction.php | 0 .../action/{lib/Drupal/action => src}/Plugin/Action/GotoAction.php | 0 .../action/{lib/Drupal/action => src}/Plugin/Action/MessageAction.php | 0 .../action/{lib/Drupal/action => src}/Tests/ActionUninstallTest.php | 0 core/modules/action/{lib/Drupal/action => src}/Tests/BulkFormTest.php | 0 .../modules/action/{lib/Drupal/action => src}/Tests/ConfigurationTest.php | 0 .../tests/{Drupal/action/Tests => src}/Menu/ActionLocalTasksTest.php | 0 .../{lib/Drupal/aggregator => src}/Annotation/AggregatorFetcher.php | 0 .../{lib/Drupal/aggregator => src}/Annotation/AggregatorParser.php | 0 .../{lib/Drupal/aggregator => src}/Annotation/AggregatorProcessor.php | 0 .../{lib/Drupal/aggregator => src}/Controller/AggregatorController.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/Entity/Feed.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/Entity/Item.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedForm.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedInterface.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedStorage.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/FeedStorageInterface.php | 0 .../modules/aggregator/{lib/Drupal/aggregator => src}/FeedViewBuilder.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Form/FeedDeleteForm.php | 0 .../{lib/Drupal/aggregator => src}/Form/FeedItemsDeleteForm.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Form/OpmlFeedAdd.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Form/SettingsForm.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemInterface.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemStorage.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/ItemStorageInterface.php | 0 .../modules/aggregator/{lib/Drupal/aggregator => src}/ItemViewBuilder.php | 0 core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemsImporter.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/ItemsImporterInterface.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/AggregatorPluginManager.php | 0 .../Drupal/aggregator => src}/Plugin/AggregatorPluginSettingsBase.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/Block/AggregatorFeedBlock.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Plugin/FetcherInterface.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Plugin/ParserInterface.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/ProcessorInterface.php | 0 .../aggregator => src}/Plugin/aggregator/fetcher/DefaultFetcher.php | 0 .../Drupal/aggregator => src}/Plugin/aggregator/parser/DefaultParser.php | 0 .../aggregator => src}/Plugin/aggregator/processor/DefaultProcessor.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/views/argument/Fid.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/views/argument/Iid.php | 0 .../{lib/Drupal/aggregator => src}/Plugin/views/field/TitleLink.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Plugin/views/field/Xss.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Plugin/views/row/Rss.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/AddFeedTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/AggregatorConfigurationTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/AggregatorCronTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/AggregatorRenderingTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/AggregatorTestBase.php | 0 .../{lib/Drupal/aggregator => src}/Tests/DeleteFeedItemTest.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/DeleteFeedTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/FeedFetcherPluginTest.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/FeedLanguageTest.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/FeedParserTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/FeedProcessorPluginTest.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/ImportOpmlTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/UpdateFeedItemTest.php | 0 .../aggregator/{lib/Drupal/aggregator => src}/Tests/UpdateFeedTest.php | 0 .../{lib/Drupal/aggregator => src}/Tests/Views/IntegrationTest.php | 0 .../aggregator_test => src}/Controller/AggregatorTestRssController.php | 0 .../aggregator_test => src}/Plugin/aggregator/fetcher/TestFetcher.php | 0 .../aggregator_test => src}/Plugin/aggregator/parser/TestParser.php | 0 .../aggregator_test => src}/Plugin/aggregator/processor/TestProcessor.php | 0 .../{Drupal/aggregator/Tests => src}/Menu/AggregatorLocalTasksTest.php | 0 .../aggregator/Tests => src}/Plugin/AggregatorPluginSettingsBaseTest.php | 0 core/modules/ban/{lib/Drupal/ban => src}/BanIpManager.php | 0 core/modules/ban/{lib/Drupal/ban => src}/BanIpManagerInterface.php | 0 .../modules/ban/{lib/Drupal/ban => src}/EventSubscriber/BanSubscriber.php | 0 core/modules/ban/{lib/Drupal/ban => src}/Form/BanAdmin.php | 0 core/modules/ban/{lib/Drupal/ban => src}/Form/BanDelete.php | 0 core/modules/ban/{lib/Drupal/ban => src}/Tests/IpAddressBlockingTest.php | 0 .../{lib/Drupal/basic_auth => src}/Authentication/Provider/BasicAuth.php | 0 .../{lib/Drupal/basic_auth => src}/Tests/Authentication/BasicAuthTest.php | 0 .../{lib/Drupal/custom_block => src}/Controller/CustomBlockController.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockAccessController.php | 0 .../custom_block/{lib/Drupal/custom_block => src}/CustomBlockForm.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockInterface.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockListBuilder.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockTranslationHandler.php | 0 .../custom_block/{lib/Drupal/custom_block => src}/CustomBlockTypeForm.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockTypeInterface.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockTypeListBuilder.php | 0 .../{lib/Drupal/custom_block => src}/CustomBlockViewBuilder.php | 0 .../custom_block/{lib/Drupal/custom_block => src}/Entity/CustomBlock.php | 0 .../{lib/Drupal/custom_block => src}/Entity/CustomBlockType.php | 0 .../{lib/Drupal/custom_block => src}/Form/CustomBlockDeleteForm.php | 0 .../{lib/Drupal/custom_block => src}/Form/CustomBlockTypeDeleteForm.php | 0 .../{lib/Drupal/custom_block => src}/Plugin/Block/CustomBlockBlock.php | 0 .../{lib/Drupal/custom_block => src}/Plugin/Derivative/CustomBlock.php | 0 .../Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockCacheTagsTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockCreationTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockFieldTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockListTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockPageViewTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockRevisionsTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockSaveTest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockTestBase.php | 0 .../Drupal/custom_block => src}/Tests/CustomBlockTranslationUITest.php | 0 .../{lib/Drupal/custom_block => src}/Tests/CustomBlockTypeTest.php | 0 .../custom_block/{lib/Drupal/custom_block => src}/Tests/PageEditTest.php | 0 .../{Drupal/custom_block/Tests => src}/Menu/CustomBlockLocalTasksTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Annotation/Block.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockAccessController.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockBase.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockForm.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockInterface.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockListBuilder.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockManager.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockManagerInterface.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockPluginBag.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockPluginInterface.php | 0 core/modules/block/{lib/Drupal/block => src}/BlockViewBuilder.php | 0 .../block/{lib/Drupal/block => src}/Controller/BlockAddController.php | 0 .../block/{lib/Drupal/block => src}/Controller/BlockController.php | 0 .../block/{lib/Drupal/block => src}/Controller/BlockListController.php | 0 .../Drupal/block => src}/Controller/CategoryAutocompleteController.php | 0 core/modules/block/{lib/Drupal/block => src}/Entity/Block.php | 0 core/modules/block/{lib/Drupal/block => src}/Form/BlockDeleteForm.php | 0 .../block/{lib/Drupal/block => src}/Plugin/Derivative/ThemeLocalTask.php | 0 .../block/{lib/Drupal/block => src}/Plugin/views/display/Block.php | 0 .../modules/block/{lib/Drupal/block => src}/Tests/BlockAdminThemeTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockCacheTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockHiddenRegionTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockHookOperationTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockHtmlTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockInterfaceTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockInvalidRegionTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockLanguageCacheTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockLanguageTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockPreprocessUnitTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockRenderOrderTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockStorageUnitTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockSystemBrandingTest.php | 0 .../{lib/Drupal/block => src}/Tests/BlockTemplateSuggestionsUnitTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockTestBase.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockTitleXSSTest.php | 0 core/modules/block/{lib/Drupal/block => src}/Tests/BlockUiTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/BlockViewBuilderTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/NewDefaultThemeBlocksTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/NonDefaultBlockAdminTest.php | 0 .../block/{lib/Drupal/block => src}/Tests/Views/DisplayBlockTest.php | 0 .../modules/block/{lib/Drupal/block => src}/Theme/AdminDemoNegotiator.php | 0 .../Drupal/block_test => src}/Plugin/Block/TestBlockInstantiation.php | 0 .../{lib/Drupal/block_test => src}/Plugin/Block/TestCacheBlock.php | 0 .../{lib/Drupal/block_test => src}/Plugin/Block/TestHtmlBlock.php | 0 .../{lib/Drupal/block_test => src}/Plugin/Block/TestXSSTitleBlock.php | 0 core/modules/block/tests/{Drupal/block/Tests => src}/BlockBaseTest.php | 0 .../block/tests/{Drupal/block/Tests => src}/BlockConfigEntityUnitTest.php | 0 core/modules/block/tests/{Drupal/block/Tests => src}/BlockFormTest.php | 0 .../block/tests/{Drupal/block/Tests => src}/CategoryAutocompleteTest.php | 0 .../block/tests/{Drupal/block/Tests => src}/Menu/BlockLocalTasksTest.php | 0 .../tests/{Drupal/block/Tests => src}/Plugin/views/display/BlockTest.php | 0 .../{lib/Drupal/book => src}/Access/BookNodeIsRemovableAccessCheck.php | 0 core/modules/book/{lib/Drupal/book => src}/BookBreadcrumbBuilder.php | 0 core/modules/book/{lib/Drupal/book => src}/BookExport.php | 0 core/modules/book/{lib/Drupal/book => src}/BookManager.php | 0 core/modules/book/{lib/Drupal/book => src}/BookManagerInterface.php | 0 core/modules/book/{lib/Drupal/book => src}/BookOutline.php | 0 core/modules/book/{lib/Drupal/book => src}/Controller/BookController.php | 0 core/modules/book/{lib/Drupal/book => src}/Form/BookAdminEditForm.php | 0 core/modules/book/{lib/Drupal/book => src}/Form/BookOutlineForm.php | 0 core/modules/book/{lib/Drupal/book => src}/Form/BookRemoveForm.php | 0 core/modules/book/{lib/Drupal/book => src}/Form/BookSettingsForm.php | 0 .../book/{lib/Drupal/book => src}/Plugin/Block/BookNavigationBlock.php | 0 core/modules/book/{lib/Drupal/book => src}/Tests/BookTest.php | 0 core/modules/book/tests/{Drupal/book/Tests => src}/BookManagerTest.php | 0 .../book/tests/{Drupal/book/Tests => src}/Menu/BookLocalTasksTest.php | 0 .../{lib/Drupal/breakpoint => src}/BreakpointGroupInterface.php | 0 .../breakpoint/{lib/Drupal/breakpoint => src}/BreakpointInterface.php | 0 .../breakpoint/{lib/Drupal/breakpoint => src}/Entity/Breakpoint.php | 0 .../breakpoint/{lib/Drupal/breakpoint => src}/Entity/BreakpointGroup.php | 0 .../{lib/Drupal/breakpoint => src}/InvalidBreakpointException.php | 0 .../Drupal/breakpoint => src}/InvalidBreakpointMediaQueryException.php | 0 .../{lib/Drupal/breakpoint => src}/InvalidBreakpointNameException.php | 0 .../{lib/Drupal/breakpoint => src}/InvalidBreakpointSourceException.php | 0 .../Drupal/breakpoint => src}/InvalidBreakpointSourceTypeException.php | 0 .../breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointAPITest.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointCRUDTest.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupAPITest.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupCRUDTest.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupTestBase.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointTestBase.php | 0 .../{lib/Drupal/breakpoint => src}/Tests/BreakpointThemeTest.php | 0 .../{Drupal/breakpoint/Tests => src}/BreakpointConfigEntityUnitTest.php | 0 .../breakpoint/Tests => src}/BreakpointGroupConfigEntityUnitTest.php | 0 .../tests/{Drupal/breakpoint/Tests => src}/BreakpointMediaQueryTest.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/Annotation/CKEditorPlugin.php | 0 core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginBase.php | 0 .../{lib/Drupal/ckeditor => src}/CKEditorPluginButtonsInterface.php | 0 .../{lib/Drupal/ckeditor => src}/CKEditorPluginConfigurableInterface.php | 0 .../{lib/Drupal/ckeditor => src}/CKEditorPluginContextualInterface.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginInterface.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginManager.php | 0 .../{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalImage.php | 0 .../Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalImageCaption.php | 0 .../{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalLink.php | 0 .../{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/Internal.php | 0 .../{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/StylesCombo.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/Plugin/Editor/CKEditor.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorAdminTest.php | 0 .../ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorLoadingTest.php | 0 .../{lib/Drupal/ckeditor => src}/Tests/CKEditorPluginManagerTest.php | 0 core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorTest.php | 0 .../{lib/Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/Llama.php | 0 .../Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/LlamaButton.php | 0 .../ckeditor_test => src}/Plugin/CKEditorPlugin/LlamaContextual.php | 0 .../Plugin/CKEditorPlugin/LlamaContextualAndButton.php | 0 .../color/{lib/Drupal/color => src}/Tests/ColorConfigSchemaTest.php | 0 core/modules/color/{lib/Drupal/color => src}/Tests/ColorTest.php | 0 .../comment/{lib/Drupal/comment => src}/CommentAccessController.php | 0 .../comment/{lib/Drupal/comment => src}/CommentBreadcrumbBuilder.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentFieldNameItem.php | 0 .../modules/comment/{lib/Drupal/comment => src}/CommentFieldNameValue.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentForm.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentInterface.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentManager.php | 0 .../comment/{lib/Drupal/comment => src}/CommentManagerInterface.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentStatistics.php | 0 .../comment/{lib/Drupal/comment => src}/CommentStatisticsInterface.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentStorage.php | 0 .../comment/{lib/Drupal/comment => src}/CommentStorageInterface.php | 0 .../comment/{lib/Drupal/comment => src}/CommentTranslationHandler.php | 0 core/modules/comment/{lib/Drupal/comment => src}/CommentViewBuilder.php | 0 .../comment/{lib/Drupal/comment => src}/Controller/AdminController.php | 0 .../comment/{lib/Drupal/comment => src}/Controller/CommentController.php | 0 core/modules/comment/{lib/Drupal/comment => src}/Entity/Comment.php | 0 .../comment/{lib/Drupal/comment => src}/Form/CommentAdminOverview.php | 0 .../comment/{lib/Drupal/comment => src}/Form/ConfirmDeleteMultiple.php | 0 core/modules/comment/{lib/Drupal/comment => src}/Form/DeleteForm.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/Action/PublishComment.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/Action/SaveComment.php | 0 .../Drupal/comment => src}/Plugin/Action/UnpublishByKeywordComment.php | 0 .../{lib/Drupal/comment => src}/Plugin/Action/UnpublishComment.php | 0 .../Plugin/Field/FieldFormatter/CommentDefaultFormatter.php | 0 .../{lib/Drupal/comment => src}/Plugin/Field/FieldType/CommentItem.php | 0 .../comment => src}/Plugin/Field/FieldType/CommentItemInterface.php | 0 .../Drupal/comment => src}/Plugin/Field/FieldWidget/CommentWidget.php | 0 .../Drupal/comment => src}/Plugin/Menu/LocalTask/UnapprovedComments.php | 0 .../Plugin/Validation/Constraint/CommentNameConstraint.php | 0 .../Plugin/Validation/Constraint/CommentNameConstraintValidator.php | 0 .../Plugin/entity_reference/selection/CommentSelection.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/argument/UserUid.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/Comment.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/Depth.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/EntityLink.php | 0 .../{lib/Drupal/comment => src}/Plugin/views/field/LastTimestamp.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/Link.php | 0 .../{lib/Drupal/comment => src}/Plugin/views/field/LinkApprove.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkDelete.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkEdit.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkReply.php | 0 .../{lib/Drupal/comment => src}/Plugin/views/field/NodeComment.php | 0 .../{lib/Drupal/comment => src}/Plugin/views/field/NodeNewComments.php | 0 .../comment => src}/Plugin/views/field/StatisticsLastCommentName.php | 0 .../Drupal/comment => src}/Plugin/views/field/StatisticsLastUpdated.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/field/Username.php | 0 .../{lib/Drupal/comment => src}/Plugin/views/filter/NodeComment.php | 0 .../Drupal/comment => src}/Plugin/views/filter/StatisticsLastUpdated.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/filter/UserUid.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/row/CommentRow.php | 0 core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/row/Rss.php | 0 .../comment => src}/Plugin/views/sort/StatisticsLastCommentName.php | 0 .../Drupal/comment => src}/Plugin/views/sort/StatisticsLastUpdated.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/sort/Thread.php | 0 .../comment/{lib/Drupal/comment => src}/Plugin/views/wizard/Comment.php | 0 .../comment/{lib/Drupal/comment => src}/Routing/CommentBundleEnhancer.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentActionsTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentAdminTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentAnonymousTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentBlockTest.php | 0 .../modules/comment/{lib/Drupal/comment => src}/Tests/CommentBookTest.php | 0 core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentCSSTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentCacheTagsTest.php | 0 .../Drupal/comment => src}/Tests/CommentDefaultFormatterCacheTagsTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentFieldsTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentInterfaceTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentLanguageTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentLinksAlterTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentLinksTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentNewIndicatorTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentNodeAccessTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentNodeChangesTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentNonNodeTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentPagerTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentPreviewTest.php | 0 core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentRssTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentStatisticsTest.php | 0 .../modules/comment/{lib/Drupal/comment => src}/Tests/CommentTestBase.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentThreadingTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentTokenReplaceTest.php | 0 .../{lib/Drupal/comment => src}/Tests/CommentTranslationUITest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentUninstallTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/CommentValidationTest.php | 0 .../{lib/Drupal/comment => src}/Tests/Views/ArgumentUserUIDTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/Views/CommentRowTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/Views/CommentTestBase.php | 0 .../{lib/Drupal/comment => src}/Tests/Views/DefaultViewRecentComments.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/Views/FilterUserUIDTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/Views/RowRssTest.php | 0 .../comment/{lib/Drupal/comment => src}/Tests/Views/WizardTest.php | 0 .../tests/{Drupal/comment/Tests => src}/CommentStatisticsUnitTest.php | 0 .../tests/{Drupal/comment/Tests => src}/Entity/CommentLockTest.php | 0 .../{Drupal/comment/Tests => src}/Routing/CommentBundleEnhancerTest.php | 0 .../config/{lib/Drupal/config => src}/Controller/ConfigController.php | 0 core/modules/config/{lib/Drupal/config => src}/Form/ConfigExportForm.php | 0 core/modules/config/{lib/Drupal/config => src}/Form/ConfigImportForm.php | 0 .../config/{lib/Drupal/config => src}/Form/ConfigSingleExportForm.php | 0 .../config/{lib/Drupal/config => src}/Form/ConfigSingleImportForm.php | 0 core/modules/config/{lib/Drupal/config => src}/Form/ConfigSync.php | 0 core/modules/config/{lib/Drupal/config => src}/Tests/ConfigCRUDTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigDependencyTest.php | 0 core/modules/config/{lib/Drupal/config => src}/Tests/ConfigDiffTest.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigEntityFormOverrideTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigEntityListTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigEntityStatusTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigEntityStatusUITest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigEntityStorageTest.php | 0 core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigEntityUnitTest.php | 0 core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEventsTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigExportImportUITest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigExportUITest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigFileContentTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigFormOverrideTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigImportAllTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigImportRecreateTest.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigImportRenameValidationTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigImportUITest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigImportUploadTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigImporterTest.php | 0 .../modules/config/{lib/Drupal/config => src}/Tests/ConfigInstallTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigInstallWebTest.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigLanguageOverrideTest.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigLanguageOverrideWebTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigModuleOverridesTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigOtherModuleTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigOverrideTest.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigOverridesPriorityTest.php | 0 core/modules/config/{lib/Drupal/config => src}/Tests/ConfigSchemaTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigSchemaTestBase.php | 0 .../{lib/Drupal/config => src}/Tests/ConfigSingleImportExportTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/ConfigSnapshotTest.php | 0 .../modules/config/{lib/Drupal/config => src}/Tests/DefaultConfigTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/Storage/CachedStorageTest.php | 0 .../{lib/Drupal/config => src}/Tests/Storage/ConfigStorageTestBase.php | 0 .../{lib/Drupal/config => src}/Tests/Storage/DatabaseStorageTest.php | 0 .../config/{lib/Drupal/config => src}/Tests/Storage/FileStorageTest.php | 0 .../Drupal/config_collection_install_test => src}/EventSubscriber.php | 0 .../{lib/Drupal/config_events_test => src}/EventSubscriber.php | 0 .../{lib/Drupal/config_import_test => src}/EventSubscriber.php | 0 .../{lib/Drupal/config_override => src}/ConfigOverrider.php | 0 .../{lib/Drupal/config_override => src}/ConfigOverriderLowPriority.php | 0 .../{lib/Drupal/config_test => src}/ConfigTestAccessController.php | 0 .../config_test/{lib/Drupal/config_test => src}/ConfigTestController.php | 0 .../tests/config_test/{lib/Drupal/config_test => src}/ConfigTestForm.php | 0 .../config_test/{lib/Drupal/config_test => src}/ConfigTestInterface.php | 0 .../config_test/{lib/Drupal/config_test => src}/ConfigTestListBuilder.php | 0 .../config_test/{lib/Drupal/config_test => src}/ConfigTestStorage.php | 0 .../{lib/Drupal/config_test => src}/Entity/ConfigQueryTest.php | 0 .../config_test/{lib/Drupal/config_test => src}/Entity/ConfigTest.php | 0 .../{lib/Drupal/config_test => src}/Form/ConfigTestDeleteForm.php | 0 .../config_test/{lib/Drupal/config_test => src}/TestInstallStorage.php | 0 .../tests/{Drupal/config/Tests => src}/Menu/ConfigLocalTasksTest.php | 0 .../config_translation => src}/Access/ConfigTranslationFormAccess.php | 0 .../config_translation => src}/Access/ConfigTranslationOverviewAccess.php | 0 .../{lib/Drupal/config_translation => src}/ConfigEntityMapper.php | 0 .../{lib/Drupal/config_translation => src}/ConfigFieldInstanceMapper.php | 0 .../{lib/Drupal/config_translation => src}/ConfigMapperInterface.php | 0 .../{lib/Drupal/config_translation => src}/ConfigMapperManager.php | 0 .../Drupal/config_translation => src}/ConfigMapperManagerInterface.php | 0 .../{lib/Drupal/config_translation => src}/ConfigNamesMapper.php | 0 .../Controller/ConfigTranslationBlockListBuilder.php | 0 .../config_translation => src}/Controller/ConfigTranslationController.php | 0 .../Controller/ConfigTranslationEntityListBuilder.php | 0 .../Controller/ConfigTranslationEntityListBuilderInterface.php | 0 .../Controller/ConfigTranslationFieldInstanceListBuilder.php | 0 .../Controller/ConfigTranslationListController.php | 0 .../config_translation => src}/Controller/ConfigTranslationMapperList.php | 0 .../Drupal/config_translation => src}/Form/ConfigTranslationAddForm.php | 0 .../config_translation => src}/Form/ConfigTranslationDeleteForm.php | 0 .../Drupal/config_translation => src}/Form/ConfigTranslationEditForm.php | 0 .../Drupal/config_translation => src}/Form/ConfigTranslationFormBase.php | 0 .../{lib/Drupal/config_translation => src}/FormElement/DateFormat.php | 0 .../Drupal/config_translation => src}/FormElement/ElementInterface.php | 0 .../{lib/Drupal/config_translation => src}/FormElement/Textarea.php | 0 .../{lib/Drupal/config_translation => src}/FormElement/Textfield.php | 0 .../Plugin/Derivative/ConfigTranslationContextualLinks.php | 0 .../Plugin/Derivative/ConfigTranslationLocalTasks.php | 0 .../Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php | 0 .../Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php | 0 .../{lib/Drupal/config_translation => src}/Routing/RouteSubscriber.php | 0 .../Drupal/config_translation => src}/Tests/ConfigTranslationFormTest.php | 0 .../config_translation => src}/Tests/ConfigTranslationListUiTest.php | 0 .../config_translation => src}/Tests/ConfigTranslationOverviewTest.php | 0 .../Drupal/config_translation => src}/Tests/ConfigTranslationUiTest.php | 0 .../config_translation => src}/Tests/ConfigTranslationUiThemeTest.php | 0 .../config_translation => src}/Tests/ConfigTranslationViewListUiTest.php | 0 .../{Drupal/config_translation/Tests => src}/ConfigEntityMapperTest.php | 0 .../{Drupal/config_translation/Tests => src}/ConfigMapperManagerTest.php | 0 .../{Drupal/config_translation/Tests => src}/ConfigNamesMapperTest.php | 0 .../contact/{lib/Drupal/contact => src}/Access/ContactPageAccess.php | 0 .../contact/{lib/Drupal/contact => src}/CategoryAccessController.php | 0 core/modules/contact/{lib/Drupal/contact => src}/CategoryForm.php | 0 core/modules/contact/{lib/Drupal/contact => src}/CategoryInterface.php | 0 core/modules/contact/{lib/Drupal/contact => src}/CategoryListBuilder.php | 0 .../contact/{lib/Drupal/contact => src}/Controller/ContactController.php | 0 core/modules/contact/{lib/Drupal/contact => src}/Entity/Category.php | 0 core/modules/contact/{lib/Drupal/contact => src}/Entity/Message.php | 0 .../contact/{lib/Drupal/contact => src}/Form/CategoryDeleteForm.php | 0 core/modules/contact/{lib/Drupal/contact => src}/MessageForm.php | 0 core/modules/contact/{lib/Drupal/contact => src}/MessageInterface.php | 0 core/modules/contact/{lib/Drupal/contact => src}/MessageViewBuilder.php | 0 .../{lib/Drupal/contact => src}/Plugin/views/field/ContactLink.php | 0 .../{lib/Drupal/contact => src}/Tests/ContactAuthenticatedUserTest.php | 0 .../contact/{lib/Drupal/contact => src}/Tests/ContactPersonalTest.php | 0 .../contact/{lib/Drupal/contact => src}/Tests/ContactSitewideTest.php | 0 .../contact/{lib/Drupal/contact => src}/Tests/MessageEntityTest.php | 0 .../contact/{lib/Drupal/contact => src}/Tests/Views/ContactFieldsTest.php | 0 .../contact/{lib/Drupal/contact => src}/Tests/Views/ContactLinkTest.php | 0 .../Access/ContentTranslationManageAccessCheck.php | 0 .../Access/ContentTranslationOverviewAccess.php | 0 .../{lib/Drupal/content_translation => src}/ContentTranslationHandler.php | 0 .../content_translation => src}/ContentTranslationHandlerInterface.php | 0 .../{lib/Drupal/content_translation => src}/ContentTranslationManager.php | 0 .../content_translation => src}/ContentTranslationManagerInterface.php | 0 .../Controller/ContentTranslationController.php | 0 .../Drupal/content_translation => src}/FieldTranslationSynchronizer.php | 0 .../content_translation => src}/FieldTranslationSynchronizerInterface.php | 0 .../content_translation => src}/Form/ContentTranslationDeleteForm.php | 0 .../Plugin/Derivative/ContentTranslationContextualLinks.php | 0 .../Plugin/Derivative/ContentTranslationLocalTasks.php | 0 .../content_translation => src}/Plugin/views/field/TranslationLink.php | 0 .../Routing/ContentTranslationRouteSubscriber.php | 0 .../content_translation => src}/Tests/ContentTestTranslationUITest.php | 0 .../Tests/ContentTranslationContextualLinksTest.php | 0 .../content_translation => src}/Tests/ContentTranslationSettingsTest.php | 0 .../content_translation => src}/Tests/ContentTranslationSyncImageTest.php | 0 .../content_translation => src}/Tests/ContentTranslationSyncUnitTest.php | 0 .../content_translation => src}/Tests/ContentTranslationTestBase.php | 0 .../Drupal/content_translation => src}/Tests/ContentTranslationUITest.php | 0 .../content_translation => src}/Tests/ContentTranslationWorkflowsTest.php | 0 .../Tests/Views/ContentTranslationViewsUITest.php | 0 .../content_translation => src}/Tests/Views/TranslationLinkTest.php | 0 .../Tests => src}/Menu/ContentTranslationLocalTasksTest.php | 0 .../contextual/{lib/Drupal/contextual => src}/ContextualController.php | 0 .../{lib/Drupal/contextual => src}/Plugin/views/field/ContextualLinks.php | 0 .../{lib/Drupal/contextual => src}/Tests/ContextualDynamicContextTest.php | 0 .../{lib/Drupal/contextual => src}/Tests/ContextualUnitTest.php | 0 core/modules/datetime/{lib/Drupal/datetime => src}/DateHelper.php | 0 core/modules/datetime/{lib/Drupal/datetime => src}/DateTimeComputed.php | 0 .../Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php | 0 .../Plugin/Field/FieldFormatter/DateTimePlainFormatter.php | 0 .../datetime => src}/Plugin/Field/FieldType/DateTimeFieldItemList.php | 0 .../{lib/Drupal/datetime => src}/Plugin/Field/FieldType/DateTimeItem.php | 0 .../datetime => src}/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php | 0 .../datetime => src}/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php | 0 .../datetime/{lib/Drupal/datetime => src}/Tests/DateTimeFieldTest.php | 0 .../datetime/{lib/Drupal/datetime => src}/Tests/DateTimeItemTest.php | 0 .../dblog/{lib/Drupal/dblog => src}/Controller/DbLogController.php | 0 core/modules/dblog/{lib/Drupal/dblog => src}/Form/DblogClearLogForm.php | 0 core/modules/dblog/{lib/Drupal/dblog => src}/Form/DblogFilterForm.php | 0 .../dblog/{lib/Drupal/dblog => src}/Plugin/views/field/DblogMessage.php | 0 .../{lib/Drupal/dblog => src}/Plugin/views/field/DblogOperations.php | 0 .../dblog/{lib/Drupal/dblog => src}/Plugin/views/wizard/Watchdog.php | 0 core/modules/dblog/{lib/Drupal/dblog => src}/Tests/DbLogTest.php | 0 .../dblog/{lib/Drupal/dblog => src}/Tests/Views/ViewsIntegrationTest.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Ajax/EditorDialogSave.php | 0 .../{lib/Drupal/editor => src}/Ajax/GetUntransformedTextCommand.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Annotation/Editor.php | 0 core/modules/editor/{lib/Drupal/editor => src}/EditorController.php | 0 core/modules/editor/{lib/Drupal/editor => src}/EditorInterface.php | 0 .../editor/{lib/Drupal/editor => src}/EditorXssFilter/Standard.php | 0 .../editor/{lib/Drupal/editor => src}/EditorXssFilterInterface.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Entity/Editor.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Form/EditorImageDialog.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Form/EditorLinkDialog.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Plugin/EditorBase.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Plugin/EditorManager.php | 0 .../editor/{lib/Drupal/editor => src}/Plugin/EditorPluginInterface.php | 0 .../editor/{lib/Drupal/editor => src}/Plugin/InPlaceEditor/Editor.php | 0 core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorAdminTest.php | 0 .../editor/{lib/Drupal/editor => src}/Tests/EditorFileUsageTest.php | 0 .../modules/editor/{lib/Drupal/editor => src}/Tests/EditorLoadingTest.php | 0 .../modules/editor/{lib/Drupal/editor => src}/Tests/EditorManagerTest.php | 0 .../editor/{lib/Drupal/editor => src}/Tests/EditorSecurityTest.php | 0 .../{lib/Drupal/editor => src}/Tests/QuickEditIntegrationLoadingTest.php | 0 .../editor/{lib/Drupal/editor => src}/Tests/QuickEditIntegrationTest.php | 0 .../modules/{lib/Drupal/editor_test => src}/EditorXssFilter/Insecure.php | 0 .../{lib/Drupal/editor_test => src}/Plugin/Editor/UnicornEditor.php | 0 .../tests/{Drupal/editor/Tests => src}/EditorConfigEntityUnitTest.php | 0 .../tests/{Drupal/editor/Tests => src}/EditorXssFilter/StandardTest.php | 0 .../{lib/Drupal/entity => src}/Controller/EntityDisplayModeController.php | 0 .../entity/{lib/Drupal/entity => src}/Entity/EntityFormDisplay.php | 0 core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityFormMode.php | 0 .../entity/{lib/Drupal/entity => src}/Entity/EntityViewDisplay.php | 0 core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityViewMode.php | 0 core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayBase.php | 0 core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayModeBase.php | 0 .../entity/{lib/Drupal/entity => src}/EntityDisplayModeInterface.php | 0 .../entity/{lib/Drupal/entity => src}/EntityDisplayModeListBuilder.php | 0 .../modules/entity/{lib/Drupal/entity => src}/EntityFormModeInterface.php | 0 .../entity/{lib/Drupal/entity => src}/EntityFormModeListBuilder.php | 0 .../modules/entity/{lib/Drupal/entity => src}/EntityViewModeInterface.php | 0 .../entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeAddForm.php | 0 .../{lib/Drupal/entity => src}/Form/EntityDisplayModeDeleteForm.php | 0 .../entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeEditForm.php | 0 .../entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeFormBase.php | 0 .../entity/{lib/Drupal/entity => src}/Form/EntityFormModeAddForm.php | 0 .../entity/{lib/Drupal/entity => src}/Tests/EntityDisplayModeTest.php | 0 .../modules/entity/{lib/Drupal/entity => src}/Tests/EntityDisplayTest.php | 0 .../entity/{lib/Drupal/entity => src}/Tests/EntityFormDisplayTest.php | 0 .../entity_reference => src}/Annotation/EntityReferenceSelection.php | 0 .../Drupal/entity_reference => src}/ConfigurableEntityReferenceItem.php | 0 .../{lib/Drupal/entity_reference => src}/EntityReferenceAutocomplete.php | 0 .../{lib/Drupal/entity_reference => src}/EntityReferenceController.php | 0 .../Drupal/entity_reference => src}/Plugin/Derivative/SelectionBase.php | 0 .../Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php | 0 .../Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php | 0 .../Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php | 0 .../Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php | 0 .../Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php | 0 .../Plugin/Field/FieldWidget/AutocompleteTagsWidget.php | 0 .../Plugin/Field/FieldWidget/AutocompleteWidget.php | 0 .../Plugin/Field/FieldWidget/AutocompleteWidgetBase.php | 0 .../entity_reference => src}/Plugin/Type/Selection/SelectionBroken.php | 0 .../entity_reference => src}/Plugin/Type/Selection/SelectionInterface.php | 0 .../entity_reference => src}/Plugin/Type/SelectionPluginManager.php | 0 .../Plugin/entity_reference/selection/SelectionBase.php | 0 .../entity_reference => src}/Plugin/views/display/EntityReference.php | 0 .../Drupal/entity_reference => src}/Plugin/views/row/EntityReference.php | 0 .../entity_reference => src}/Plugin/views/style/EntityReference.php | 0 .../{lib/Drupal/entity_reference => src}/RecursiveRenderingException.php | 0 .../Drupal/entity_reference => src}/Tests/EntityReferenceAdminTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceAutoCreateTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceAutocompleteTest.php | 0 .../Tests/EntityReferenceFieldDefaultValueTest.php | 0 .../Drupal/entity_reference => src}/Tests/EntityReferenceFieldTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceFormatterTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceIntegrationTest.php | 0 .../Drupal/entity_reference => src}/Tests/EntityReferenceItemTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceSelectionAccessTest.php | 0 .../entity_reference => src}/Tests/EntityReferenceSelectionSortTest.php | 0 .../{lib/Drupal/entity_reference => src}/Tests/Views/SelectionTest.php | 0 .../modules/field/{lib/Drupal/field => src}/ConfigImporterFieldPurger.php | 0 core/modules/field/{lib/Drupal/field => src}/Entity/FieldConfig.php | 0 .../field/{lib/Drupal/field => src}/Entity/FieldInstanceConfig.php | 0 core/modules/field/{lib/Drupal/field => src}/Field.php | 0 core/modules/field/{lib/Drupal/field => src}/FieldConfigInterface.php | 0 core/modules/field/{lib/Drupal/field => src}/FieldConfigStorage.php | 0 .../{lib/Drupal/field => src}/FieldConfigUpdateForbiddenException.php | 0 core/modules/field/{lib/Drupal/field => src}/FieldException.php | 0 core/modules/field/{lib/Drupal/field => src}/FieldInfo.php | 0 .../{lib/Drupal/field => src}/FieldInstanceConfigAccessController.php | 0 .../field/{lib/Drupal/field => src}/FieldInstanceConfigInterface.php | 0 .../field/{lib/Drupal/field => src}/FieldInstanceConfigStorage.php | 0 .../field/{lib/Drupal/field => src}/Plugin/views/argument/FieldList.php | 0 .../field/{lib/Drupal/field => src}/Plugin/views/argument/ListString.php | 0 core/modules/field/{lib/Drupal/field => src}/Plugin/views/field/Field.php | 0 .../field/{lib/Drupal/field => src}/Plugin/views/filter/FieldList.php | 0 .../{lib/Drupal/field => src}/Plugin/views/relationship/EntityReverse.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/BulkDeleteTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/ConfigFieldDefinitionTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/CrudTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/DisplayApiTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/Email/EmailFieldTest.php | 0 .../modules/field/{lib/Drupal/field => src}/Tests/Email/EmailItemTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FieldAccessTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldAttachOtherTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldAttachStorageTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldEntityCountTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FieldHelpTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldImportChangeTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldImportCreateTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldImportDeleteTest.php | 0 .../{lib/Drupal/field => src}/Tests/FieldImportDeleteUninstallTest.php | 0 .../{lib/Drupal/field => src}/Tests/FieldImportDeleteUninstallUiTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FieldInfoTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/FieldInstanceCrudTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FieldTestBase.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FieldUnitTestBase.php | 0 .../modules/field/{lib/Drupal/field => src}/Tests/FieldValidationTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/FormTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/NestedFormTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/Number/NumberFieldTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/Number/NumberItemTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/ShapeItemTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/TestItemTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/TranslationTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/TranslationWebTest.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/Views/ApiDataTest.php | 0 .../modules/field/{lib/Drupal/field => src}/Tests/Views/FieldTestBase.php | 0 core/modules/field/{lib/Drupal/field => src}/Tests/Views/FieldUITest.php | 0 .../field/{lib/Drupal/field => src}/Tests/Views/HandlerFieldFieldTest.php | 0 .../field/{lib/Drupal/field => src}/Tests/reEnableModuleFieldTest.php | 0 .../{lib/Drupal/field_test => src}/Form/NestedEntityTestForm.php | 0 .../Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php | 0 .../Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php | 0 .../Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php | 0 .../Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php | 0 .../Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php | 0 .../Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php | 0 .../Drupal/field_test => src}/Plugin/Field/FieldType/HiddenTestItem.php | 0 .../{lib/Drupal/field_test => src}/Plugin/Field/FieldType/ShapeItem.php | 0 .../{lib/Drupal/field_test => src}/Plugin/Field/FieldType/TestItem.php | 0 .../field_test => src}/Plugin/Field/FieldWidget/TestFieldWidget.php | 0 .../Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php | 0 .../Plugin/Validation/Constraint/TestFieldConstraint.php | 0 .../field/tests/{Drupal/field/Tests => src}/FieldConfigEntityUnitTest.php | 0 .../{Drupal/field/Tests => src}/FieldInstanceConfigEntityUnitTest.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Access/FormModeAccessCheck.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Access/ViewModeAccessCheck.php | 0 core/modules/field_ui/{lib/Drupal/field_ui => src}/DisplayOverview.php | 0 .../modules/field_ui/{lib/Drupal/field_ui => src}/DisplayOverviewBase.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/FieldConfigListBuilder.php | 0 .../{lib/Drupal/field_ui => src}/FieldInstanceConfigListBuilder.php | 0 core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldOverview.php | 0 core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldUI.php | 0 core/modules/field_ui/{lib/Drupal/field_ui => src}/Form/FieldEditForm.php | 0 .../{lib/Drupal/field_ui => src}/Form/FieldInstanceConfigDeleteForm.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Form/FieldInstanceEditForm.php | 0 .../modules/field_ui/{lib/Drupal/field_ui => src}/FormDisplayOverview.php | 0 core/modules/field_ui/{lib/Drupal/field_ui => src}/OverviewBase.php | 0 .../{lib/Drupal/field_ui => src}/Plugin/Derivative/FieldUiLocalTask.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Routing/RouteSubscriber.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Tests/FieldUIRouteTest.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Tests/FieldUiTestBase.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Tests/ManageDisplayTest.php | 0 .../field_ui/{lib/Drupal/field_ui => src}/Tests/ManageFieldsTest.php | 0 .../{lib/Drupal/field_ui_test => src}/Entity/FieldUITestNoBundle.php | 0 .../file/{lib/Drupal/file => src}/Controller/FileWidgetAjaxController.php | 0 core/modules/file/{lib/Drupal/file => src}/Entity/File.php | 0 core/modules/file/{lib/Drupal/file => src}/FileInterface.php | 0 core/modules/file/{lib/Drupal/file => src}/FileStorage.php | 0 core/modules/file/{lib/Drupal/file => src}/FileStorageInterface.php | 0 .../file/{lib/Drupal/file => src}/FileUsage/DatabaseFileUsageBackend.php | 0 core/modules/file/{lib/Drupal/file => src}/FileUsage/FileUsageBase.php | 0 .../file/{lib/Drupal/file => src}/FileUsage/FileUsageInterface.php | 0 .../Drupal/file => src}/Plugin/Field/FieldFormatter/FileFormatterBase.php | 0 .../file => src}/Plugin/Field/FieldFormatter/GenericFileFormatter.php | 0 .../file => src}/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php | 0 .../Drupal/file => src}/Plugin/Field/FieldFormatter/TableFormatter.php | 0 .../Drupal/file => src}/Plugin/Field/FieldFormatter/UrlPlainFormatter.php | 0 .../{lib/Drupal/file => src}/Plugin/Field/FieldType/FileFieldItemList.php | 0 .../file/{lib/Drupal/file => src}/Plugin/Field/FieldType/FileItem.php | 0 .../file/{lib/Drupal/file => src}/Plugin/Field/FieldWidget/FileWidget.php | 0 .../file => src}/Plugin/entity_reference/selection/FileSelection.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/argument/Fid.php | 0 .../file/{lib/Drupal/file => src}/Plugin/views/field/Extension.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/File.php | 0 .../modules/file/{lib/Drupal/file => src}/Plugin/views/field/FileMime.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/Status.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/Uri.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/filter/Status.php | 0 core/modules/file/{lib/Drupal/file => src}/Plugin/views/wizard/File.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/CopyTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/DeleteTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/DownloadTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldDisplayTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldPathTest.php | 0 .../file/{lib/Drupal/file => src}/Tests/FileFieldRSSContentTest.php | 0 .../modules/file/{lib/Drupal/file => src}/Tests/FileFieldRevisionTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldTestBase.php | 0 .../modules/file/{lib/Drupal/file => src}/Tests/FileFieldValidateTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldWidgetTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileItemTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileListingTest.php | 0 .../file/{lib/Drupal/file => src}/Tests/FileManagedFileElementTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileManagedTestBase.php | 0 .../file/{lib/Drupal/file => src}/Tests/FileManagedUnitTestBase.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FilePrivateTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/FileTokenReplaceTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/LoadTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/MoveTest.php | 0 .../file/{lib/Drupal/file => src}/Tests/RemoteFileSaveUploadTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/SaveDataTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/SaveTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/SaveUploadTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/SpaceUsedTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/UsageTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/ValidateTest.php | 0 core/modules/file/{lib/Drupal/file => src}/Tests/ValidatorTest.php | 0 .../file/{lib/Drupal/file => src}/Tests/Views/ExtensionViewsFieldTest.php | 0 .../{lib/Drupal/file_module_test => src}/Form/FileModuleTestForm.php | 0 .../{lib/Drupal/file_test => src}/DummyReadOnlyStreamWrapper.php | 0 .../file_test/{lib/Drupal/file_test => src}/DummyRemoteStreamWrapper.php | 0 .../tests/file_test/{lib/Drupal/file_test => src}/DummyStreamWrapper.php | 0 .../tests/file_test/{lib/Drupal/file_test => src}/Form/FileTestForm.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Annotation/Filter.php | 0 .../filter/{lib/Drupal/filter => src}/Controller/FilterController.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Entity/FilterFormat.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterBag.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterFormatAccess.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterFormatAddForm.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterFormatEditForm.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterFormatFormBase.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterFormatInterface.php | 0 .../modules/filter/{lib/Drupal/filter => src}/FilterFormatListBuilder.php | 0 core/modules/filter/{lib/Drupal/filter => src}/FilterPluginManager.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Form/FilterDisableForm.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/DataType/FilterFormat.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterAutoP.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterCaption.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtml.php | 0 .../{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlCorrector.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlEscape.php | 0 .../{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlImageSecure.php | 0 .../filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterNull.php | 0 .../modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterUrl.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Plugin/FilterBase.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Plugin/FilterInterface.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterAPITest.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterAdminTest.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterCrudTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterDefaultConfigTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterDefaultFormatTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterFormatAccessTest.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterHooksTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterHtmlImageSecureTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterNoFormatTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterSecurityTest.php | 0 .../filter/{lib/Drupal/filter => src}/Tests/FilterSettingsTest.php | 0 core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterUnitTest.php | 0 .../{lib/Drupal/filter_test => src}/Plugin/Filter/FilterTestReplace.php | 0 .../Plugin/Filter/FilterTestRestrictTagsAndAttributes.php | 0 .../Drupal/filter_test => src}/Plugin/Filter/FilterTestUncacheable.php | 0 .../{lib/Drupal/forum => src}/Breadcrumb/ForumBreadcrumbBuilderBase.php | 0 .../Drupal/forum => src}/Breadcrumb/ForumListingBreadcrumbBuilder.php | 0 .../{lib/Drupal/forum => src}/Breadcrumb/ForumNodeBreadcrumbBuilder.php | 0 .../forum/{lib/Drupal/forum => src}/Controller/ForumController.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Form/ContainerForm.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Form/DeleteForm.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Form/ForumForm.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Form/Overview.php | 0 core/modules/forum/{lib/Drupal/forum => src}/ForumManager.php | 0 core/modules/forum/{lib/Drupal/forum => src}/ForumManagerInterface.php | 0 core/modules/forum/{lib/Drupal/forum => src}/ForumSettingsForm.php | 0 .../forum/{lib/Drupal/forum => src}/Plugin/Block/ActiveTopicsBlock.php | 0 .../forum/{lib/Drupal/forum => src}/Plugin/Block/ForumBlockBase.php | 0 .../forum/{lib/Drupal/forum => src}/Plugin/Block/NewTopicsBlock.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumBlockTest.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumIndexTest.php | 0 .../modules/forum/{lib/Drupal/forum => src}/Tests/ForumNodeAccessTest.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumTest.php | 0 core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumUninstallTest.php | 0 .../forum/{lib/Drupal/forum => src}/Tests/Views/ForumIntegrationTest.php | 0 .../forum/Tests => src}/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php | 0 .../forum/Tests => src}/Breadcrumb/ForumListingBreadcrumbBuilderTest.php | 0 .../forum/Tests => src}/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php | 0 core/modules/forum/tests/{Drupal/forum/Tests => src}/ForumManagerTest.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Encoder/JsonEncoder.php | 0 core/modules/hal/{lib/Drupal/hal => src}/HalSubscriber.php | 0 .../hal/{lib/Drupal/hal => src}/Normalizer/ContentEntityNormalizer.php | 0 .../{lib/Drupal/hal => src}/Normalizer/EntityReferenceItemNormalizer.php | 0 .../hal/{lib/Drupal/hal => src}/Normalizer/FieldItemNormalizer.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Normalizer/FieldNormalizer.php | 0 .../hal/{lib/Drupal/hal => src}/Normalizer/FileEntityNormalizer.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Normalizer/NormalizerBase.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Tests/DenormalizeTest.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Tests/EntityTest.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Tests/FileDenormalizeTest.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Tests/NormalizeTest.php | 0 core/modules/hal/{lib/Drupal/hal => src}/Tests/NormalizerTestBase.php | 0 .../Tests => src}/FieldItemNormalizerDenormalizeExceptionsUnitTest.php | 0 .../hal/Tests => src}/FieldNormalizerDenormalizeExceptionsUnitTest.php | 0 .../hal/Tests => src}/NormalizerDenormalizeExceptionsUnitTestBase.php | 0 core/modules/help/{lib/Drupal/help => src}/Controller/HelpController.php | 0 core/modules/help/{lib/Drupal/help => src}/Tests/HelpTest.php | 0 core/modules/help/{lib/Drupal/help => src}/Tests/NoHelpTest.php | 0 .../history/{lib/Drupal/history => src}/Controller/HistoryController.php | 0 .../Drupal/history => src}/Plugin/views/field/HistoryUserTimestamp.php | 0 .../Drupal/history => src}/Plugin/views/filter/HistoryUserTimestamp.php | 0 core/modules/history/{lib/Drupal/history => src}/Tests/HistoryTest.php | 0 .../{lib/Drupal/history => src}/Tests/Views/HistoryTimestampTest.php | 0 core/modules/image/{lib/Drupal/image => src}/Annotation/ImageEffect.php | 0 .../image/{lib/Drupal/image => src}/ConfigurableImageEffectInterface.php | 0 .../{lib/Drupal/image => src}/Controller/ImageStyleDownloadController.php | 0 core/modules/image/{lib/Drupal/image => src}/Entity/ImageStyle.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectAddForm.php | 0 .../image/{lib/Drupal/image => src}/Form/ImageEffectDeleteForm.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectEditForm.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectFormBase.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleAddForm.php | 0 .../modules/image/{lib/Drupal/image => src}/Form/ImageStyleDeleteForm.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleEditForm.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleFlushForm.php | 0 core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleFormBase.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageEffectBag.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageEffectBase.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageEffectInterface.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageEffectManager.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageStyleInterface.php | 0 core/modules/image/{lib/Drupal/image => src}/ImageStyleListBuilder.php | 0 .../{lib/Drupal/image => src}/PathProcessor/PathProcessorImageStyles.php | 0 .../Drupal/image => src}/Plugin/Field/FieldFormatter/ImageFormatter.php | 0 .../image => src}/Plugin/Field/FieldFormatter/ImageFormatterBase.php | 0 .../image/{lib/Drupal/image => src}/Plugin/Field/FieldType/ImageItem.php | 0 .../{lib/Drupal/image => src}/Plugin/Field/FieldWidget/ImageWidget.php | 0 .../{lib/Drupal/image => src}/Plugin/ImageEffect/CropImageEffect.php | 0 .../Drupal/image => src}/Plugin/ImageEffect/DesaturateImageEffect.php | 0 .../{lib/Drupal/image => src}/Plugin/ImageEffect/ResizeImageEffect.php | 0 .../{lib/Drupal/image => src}/Plugin/ImageEffect/RotateImageEffect.php | 0 .../Drupal/image => src}/Plugin/ImageEffect/ScaleAndCropImageEffect.php | 0 .../{lib/Drupal/image => src}/Plugin/ImageEffect/ScaleImageEffect.php | 0 core/modules/image/{lib/Drupal/image => src}/Routing/ImageStyleRoutes.php | 0 core/modules/image/{lib/Drupal/image => src}/Tests/FileMoveTest.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageAdminStylesTest.php | 0 .../modules/image/{lib/Drupal/image => src}/Tests/ImageDimensionsTest.php | 0 core/modules/image/{lib/Drupal/image => src}/Tests/ImageEffectsTest.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageFieldDefaultImagesTest.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageFieldDisplayTest.php | 0 core/modules/image/{lib/Drupal/image => src}/Tests/ImageFieldTestBase.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageFieldValidateTest.php | 0 core/modules/image/{lib/Drupal/image => src}/Tests/ImageItemTest.php | 0 .../modules/image/{lib/Drupal/image => src}/Tests/ImageStyleFlushTest.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageStylesPathAndUrlTest.php | 0 .../image/{lib/Drupal/image => src}/Tests/ImageThemeFunctionTest.php | 0 .../image_module_test => src}/Plugin/ImageEffect/NullTestImageEffect.php | 0 .../{lib/Drupal/language => src}/Config/LanguageConfigFactoryOverride.php | 0 .../language => src}/Config/LanguageConfigFactoryOverrideInterface.php | 0 .../language/{lib/Drupal/language => src}/ConfigurableLanguageManager.php | 0 .../{lib/Drupal/language => src}/ConfigurableLanguageManagerInterface.php | 0 .../{lib/Drupal/language => src}/Controller/LanguageController.php | 0 core/modules/language/{lib/Drupal/language => src}/Entity/Language.php | 0 .../{lib/Drupal/language => src}/EventSubscriber/ConfigSubscriber.php | 0 .../Drupal/language => src}/EventSubscriber/LanguageRequestSubscriber.php | 0 .../Drupal/language => src}/Exception/DeleteDefaultLanguageException.php | 0 .../language/{lib/Drupal/language => src}/Exception/LanguageException.php | 0 .../{lib/Drupal/language => src}/Form/ContentLanguageSettingsForm.php | 0 .../language/{lib/Drupal/language => src}/Form/LanguageAddForm.php | 0 .../language/{lib/Drupal/language => src}/Form/LanguageDeleteForm.php | 0 .../language/{lib/Drupal/language => src}/Form/LanguageEditForm.php | 0 .../language/{lib/Drupal/language => src}/Form/LanguageFormBase.php | 0 .../{lib/Drupal/language => src}/Form/NegotiationBrowserDeleteForm.php | 0 .../language/{lib/Drupal/language => src}/Form/NegotiationBrowserForm.php | 0 .../{lib/Drupal/language => src}/Form/NegotiationConfigureForm.php | 0 .../{lib/Drupal/language => src}/Form/NegotiationSelectedForm.php | 0 .../language/{lib/Drupal/language => src}/Form/NegotiationSessionForm.php | 0 .../language/{lib/Drupal/language => src}/Form/NegotiationUrlForm.php | 0 .../{lib/Drupal/language => src}/HttpKernel/PathProcessorLanguage.php | 0 .../language/{lib/Drupal/language => src}/LanguageAccessController.php | 0 core/modules/language/{lib/Drupal/language => src}/LanguageInterface.php | 0 .../modules/language/{lib/Drupal/language => src}/LanguageListBuilder.php | 0 .../{lib/Drupal/language => src}/LanguageNegotiationMethodBase.php | 0 .../{lib/Drupal/language => src}/LanguageNegotiationMethodInterface.php | 0 .../{lib/Drupal/language => src}/LanguageNegotiationMethodManager.php | 0 core/modules/language/{lib/Drupal/language => src}/LanguageNegotiator.php | 0 .../language/{lib/Drupal/language => src}/LanguageNegotiatorInterface.php | 0 .../language/{lib/Drupal/language => src}/LanguageServiceProvider.php | 0 .../language/{lib/Drupal/language => src}/LanguageSwitcherInterface.php | 0 .../language/{lib/Drupal/language => src}/Plugin/Block/LanguageBlock.php | 0 .../language/{lib/Drupal/language => src}/Plugin/Condition/Language.php | 0 .../{lib/Drupal/language => src}/Plugin/Derivative/LanguageBlock.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationSelected.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationSession.php | 0 .../language => src}/Plugin/LanguageNegotiation/LanguageNegotiationUI.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationUrl.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php | 0 .../Drupal/language => src}/Plugin/views/argument/LanguageArgument.php | 0 .../{lib/Drupal/language => src}/Plugin/views/field/LanguageField.php | 0 .../{lib/Drupal/language => src}/Plugin/views/filter/LanguageFilter.php | 0 .../Drupal/language => src}/Tests/Condition/LanguageConditionTest.php | 0 .../Drupal/language => src}/Tests/LanguageBrowserDetectionUnitTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguageConfigSchemaTest.php | 0 .../Drupal/language => src}/Tests/LanguageConfigurationElementTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguageConfigurationTest.php | 0 .../language => src}/Tests/LanguageCustomLanguageConfigurationTest.php | 0 .../Drupal/language => src}/Tests/LanguageDependencyInjectionTest.php | 0 .../language/{lib/Drupal/language => src}/Tests/LanguageFallbackTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguageListModuleInstallTest.php | 0 .../language/{lib/Drupal/language => src}/Tests/LanguageListTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguageNegotiationInfoTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguagePathMonolingualTest.php | 0 .../language/{lib/Drupal/language => src}/Tests/LanguageSwitchingTest.php | 0 .../language/{lib/Drupal/language => src}/Tests/LanguageTestBase.php | 0 .../Drupal/language => src}/Tests/LanguageUILanguageNegotiationTest.php | 0 .../{lib/Drupal/language => src}/Tests/LanguageUrlRewritingTest.php | 0 .../{lib/Drupal/language => src}/Tests/Views/ArgumentLanguageTest.php | 0 .../{lib/Drupal/language => src}/Tests/Views/FieldLanguageTest.php | 0 .../{lib/Drupal/language => src}/Tests/Views/FilterLanguageTest.php | 0 .../{lib/Drupal/language => src}/Tests/Views/LanguageTestBase.php | 0 .../language_elements_test => src}/Form/LanguageElementsTestForm.php | 0 .../Drupal/language_test => src}/Controller/LanguageTestController.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationTest.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php | 0 .../tests/{Drupal/language/Tests => src}/LanguageNegotiationUrlTest.php | 0 .../tests/{Drupal/language/Tests => src}/Menu/LanguageLocalTasks.php | 0 core/modules/link/{lib/Drupal/link => src}/LinkItemInterface.php | 0 .../Drupal/link => src}/Plugin/Field/FieldFormatter/LinkFormatter.php | 0 .../link => src}/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php | 0 .../link/{lib/Drupal/link => src}/Plugin/Field/FieldType/LinkItem.php | 0 .../link/{lib/Drupal/link => src}/Plugin/Field/FieldWidget/LinkWidget.php | 0 .../link => src}/Plugin/Validation/Constraint/LinkTypeConstraint.php | 0 core/modules/link/{lib/Drupal/link => src}/Tests/LinkFieldTest.php | 0 core/modules/link/{lib/Drupal/link => src}/Tests/LinkFieldUITest.php | 0 core/modules/link/{lib/Drupal/link => src}/Tests/LinkItemTest.php | 0 .../locale/{lib/Drupal/locale => src}/Controller/LocaleController.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Form/ExportForm.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Form/ImportForm.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Form/LocaleForm.php | 0 .../modules/locale/{lib/Drupal/locale => src}/Form/LocaleSettingsForm.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Form/TranslateEditForm.php | 0 .../locale/{lib/Drupal/locale => src}/Form/TranslateFilterForm.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Form/TranslateFormBase.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Gettext.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Locale.php | 0 core/modules/locale/{lib/Drupal/locale => src}/LocaleConfigManager.php | 0 core/modules/locale/{lib/Drupal/locale => src}/LocaleLookup.php | 0 core/modules/locale/{lib/Drupal/locale => src}/LocaleTranslation.php | 0 core/modules/locale/{lib/Drupal/locale => src}/LocaleTypedConfig.php | 0 core/modules/locale/{lib/Drupal/locale => src}/PoDatabaseReader.php | 0 core/modules/locale/{lib/Drupal/locale => src}/PoDatabaseWriter.php | 0 core/modules/locale/{lib/Drupal/locale => src}/SourceString.php | 0 core/modules/locale/{lib/Drupal/locale => src}/StringBase.php | 0 core/modules/locale/{lib/Drupal/locale => src}/StringDatabaseStorage.php | 0 core/modules/locale/{lib/Drupal/locale => src}/StringInterface.php | 0 core/modules/locale/{lib/Drupal/locale => src}/StringStorageException.php | 0 core/modules/locale/{lib/Drupal/locale => src}/StringStorageInterface.php | 0 .../locale/{lib/Drupal/locale => src}/Tests/LocaleConfigManagerTest.php | 0 .../{lib/Drupal/locale => src}/Tests/LocaleConfigTranslationTest.php | 0 .../modules/locale/{lib/Drupal/locale => src}/Tests/LocaleContentTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleExportTest.php | 0 .../{lib/Drupal/locale => src}/Tests/LocaleImportFunctionalTest.php | 0 .../{lib/Drupal/locale => src}/Tests/LocaleJavascriptTranslation.php | 0 .../{lib/Drupal/locale => src}/Tests/LocaleLibraryInfoAlterTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Tests/LocalePathTest.php | 0 .../locale/{lib/Drupal/locale => src}/Tests/LocalePluralFormatTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleStringTest.php | 0 .../{lib/Drupal/locale => src}/Tests/LocaleTranslateStringTourTest.php | 0 .../locale/{lib/Drupal/locale => src}/Tests/LocaleTranslationUiTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateBase.php | 0 .../locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateCronTest.php | 0 .../locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateInterfaceTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateTest.php | 0 core/modules/locale/{lib/Drupal/locale => src}/TranslationString.php | 0 core/modules/locale/{lib/Drupal/locale => src}/TranslationsStream.php | 0 .../locale/tests/{Drupal/locale/Tests => src}/LocaleLookupTest.php | 0 .../locale/tests/{Drupal/locale/Tests => src}/LocaleTranslationTest.php | 0 .../tests/{Drupal/locale/Tests => src}/Menu/LocaleLocalTasksTest.php | 0 core/modules/menu_link/{lib/Drupal/menu_link => src}/Entity/MenuLink.php | 0 .../menu_link/{lib/Drupal/menu_link => src}/MenuLinkAccessController.php | 0 core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkForm.php | 0 .../modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkInterface.php | 0 core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkStorage.php | 0 .../menu_link/{lib/Drupal/menu_link => src}/MenuLinkStorageInterface.php | 0 core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuTree.php | 0 .../modules/menu_link/{lib/Drupal/menu_link => src}/MenuTreeInterface.php | 0 core/modules/menu_link/{lib/Drupal/menu_link => src}/StaticMenuLinks.php | 0 .../menu_link/tests/{Drupal/menu_link/Tests => src}/MenuTreeTest.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Controller/MenuController.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuDeleteForm.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuLinkDeleteForm.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuLinkResetForm.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuForm.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuListBuilder.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuSettingsForm.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuCacheTagsTest.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuLanguageTest.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuNodeTest.php | 0 core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuTest.php | 0 .../menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuUninstallTest.php | 0 .../modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuWebTestBase.php | 0 .../migrate/{lib/Drupal/migrate => src}/Annotation/MigrateDestination.php | 0 .../{lib/Drupal/migrate => src}/Annotation/MigrateProcessPlugin.php | 0 .../migrate/{lib/Drupal/migrate => src}/Annotation/MigrateSource.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/Entity/Migration.php | 0 .../migrate/{lib/Drupal/migrate => src}/Entity/MigrationInterface.php | 0 .../{lib/Drupal/migrate => src}/MigrateBuildDependencyInterface.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/MigrateException.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/MigrateExecutable.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/MigrateMessage.php | 0 .../migrate/{lib/Drupal/migrate => src}/MigrateMessageInterface.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/MigratePassword.php | 0 .../migrate/{lib/Drupal/migrate => src}/MigrateServiceProvider.php | 0 .../migrate/{lib/Drupal/migrate => src}/MigrateSkipProcessException.php | 0 .../migrate/{lib/Drupal/migrate => src}/MigrateSkipRowException.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/MigrationStorage.php | 0 .../{lib/Drupal/migrate => src}/Plugin/Derivative/MigrateEntity.php | 0 .../Drupal/migrate => src}/Plugin/Derivative/MigrateEntityRevision.php | 0 .../{lib/Drupal/migrate => src}/Plugin/MigrateDestinationInterface.php | 0 .../Drupal/migrate => src}/Plugin/MigrateDestinationPluginManager.php | 0 .../migrate => src}/Plugin/MigrateEntityDestinationFieldInterface.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/MigrateIdMapInterface.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/MigratePluginManager.php | 0 .../{lib/Drupal/migrate => src}/Plugin/MigrateProcessInterface.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/MigrateSourceInterface.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/RequirementsInterface.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/SourceEntityInterface.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/Book.php | 0 .../Plugin/migrate/destination/ComponentEntityDisplayBase.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/Config.php | 0 .../Drupal/migrate => src}/Plugin/migrate/destination/DestinationBase.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/Entity.php | 0 .../Drupal/migrate => src}/Plugin/migrate/destination/EntityComment.php | 0 .../migrate => src}/Plugin/migrate/destination/EntityConfigBase.php | 0 .../migrate => src}/Plugin/migrate/destination/EntityContentBase.php | 0 .../migrate => src}/Plugin/migrate/destination/EntityDateFormat.php | 0 .../migrate => src}/Plugin/migrate/destination/EntityFieldConfig.php | 0 .../migrate => src}/Plugin/migrate/destination/EntityFieldInstance.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityFile.php | 0 .../Drupal/migrate => src}/Plugin/migrate/destination/EntityRevision.php | 0 .../migrate => src}/Plugin/migrate/destination/EntitySearchPage.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityUser.php | 0 .../Drupal/migrate => src}/Plugin/migrate/destination/EntityViewMode.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/Null.php | 0 .../Plugin/migrate/destination/PerComponentEntityDisplay.php | 0 .../Plugin/migrate/destination/PerComponentEntityFormDisplay.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/destination/UrlAlias.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/migrate/id_map/Sql.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/Callback.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Concat.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/DedupeBase.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/DedupeEntity.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/DefaultValue.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/Extract.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/Flatten.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Get.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/Iterator.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/MachineName.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/Migration.php | 0 .../Drupal/migrate => src}/Plugin/migrate/process/SkipProcessOnEmpty.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/SkipRowOnEmpty.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/process/StaticMap.php | 0 .../{lib/Drupal/migrate => src}/Plugin/migrate/source/EmptySource.php | 0 .../Drupal/migrate => src}/Plugin/migrate/source/SourcePluginBase.php | 0 .../migrate/{lib/Drupal/migrate => src}/Plugin/migrate/source/SqlBase.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/ProcessPluginBase.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/Row.php | 0 core/modules/migrate/{lib/Drupal/migrate => src}/Source.php | 0 .../modules/migrate/{lib/Drupal/migrate => src}/Tests/MigrateTestBase.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/MigrateExecutableTest.php | 0 .../migrate/Tests => src}/MigrateExecuteableMemoryExceededTest.php | 0 .../{Drupal/migrate/Tests => src}/MigrateSqlIdMapEnsureTablesTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/MigrateSqlIdMapTest.php | 0 .../tests/{Drupal/migrate/Tests => src}/MigrateSqlSourceTestCase.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/MigrateTestCase.php | 0 core/modules/migrate/tests/{Drupal/migrate/Tests => src}/RowTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/TestMigrateExecutable.php | 0 core/modules/migrate/tests/{Drupal/migrate/Tests => src}/TestSqlIdMap.php | 0 .../migrate/Tests => src}/destination/PerComponentEntityDisplayTest.php | 0 .../Tests => src}/destination/PerComponentEntityFormDisplayTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/CallbackTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/ConcatTest.php | 0 .../tests/{Drupal/migrate/Tests => src}/process/DedupeEntityTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/ExtractTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/FlattenTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/GetTest.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/IteratorTest.php | 0 .../tests/{Drupal/migrate/Tests => src}/process/MachineNameTest.php | 0 .../{Drupal/migrate/Tests => src}/process/MigrateProcessTestCase.php | 0 .../migrate/tests/{Drupal/migrate/Tests => src}/process/StaticMapTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Entity/Migration.php | 0 .../{lib/Drupal/migrate_drupal => src}/Entity/MigrationInterface.php | 0 .../{lib/Drupal/migrate_drupal => src}/MigrationStorage.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/MigrateLoadInterface.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/load/LoadEntity.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/load/d6/LoadTermNode.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/BlockPluginId.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/BlockSettings.php | 0 .../Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/FieldIdGenerator.php | 0 .../Plugin/migrate/process/d6/FieldInstanceDefaults.php | 0 .../Plugin/migrate/process/d6/FieldInstanceSettings.php | 0 .../Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/FieldSettings.php | 0 .../Plugin/migrate/process/d6/FieldTypeDefaults.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/FileImageHandler.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FileUri.php | 0 .../Plugin/migrate/process/d6/FilterFormatPermission.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/NodeUpdate7008.php | 0 .../Plugin/migrate/process/d6/SearchConfigurationRankings.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/SystemUpdate7000.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/UserPicture.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/UserUpdate7002.php | 0 .../migrate_drupal => src}/Plugin/migrate/process/d6/UserUpdate8002.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/DrupalSqlBase.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/Variable.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/VariableMultiRow.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Action.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/AggregatorFeed.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/AggregatorItem.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Block.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Book.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Box.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/CckFieldRevision.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/CckFieldValues.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Comment.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/CommentVariable.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/ContactCategory.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/ContactSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Field.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/FieldInstance.php | 0 .../Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php | 0 .../Plugin/migrate/source/d6/FieldInstancePerViewMode.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/File.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/FilterFormat.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Menu.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Node.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/NodeRevision.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/NodeType.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/ProfileField.php | 0 .../Plugin/migrate/source/d6/ProfileFieldValues.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Role.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Term.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/TermNode.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/TermNodeRevision.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Upload.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/UploadInstance.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UrlAlias.php | 0 .../{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/User.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/UserPicture.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/UserPictureFile.php | 0 .../Plugin/migrate/source/d6/UserPictureInstance.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ViewMode.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/ViewModeBase.php | 0 .../Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Vocabulary.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/VocabularyBase.php | 0 .../migrate_drupal => src}/Plugin/migrate/source/d6/VocabularyPerType.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ActionSettings.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6AggregatorFeed.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6AggregatorItem.php | 0 .../migrate_drupal => src}/Tests/Dump/Drupal6AggregatorSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Block.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Book.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6BookSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Box.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Comment.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6CommentVariable.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ContactCategory.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ContactSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DateFormat.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DblogSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DumpBase.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FieldInstance.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FieldSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6File.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FileSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FilterFormat.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ForumSettings.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6LocaleSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Menu.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6MenuSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Node.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeBodyInstance.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeRevision.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeType.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SearchPage.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SearchSettings.php | 0 .../migrate_drupal => src}/Tests/Dump/Drupal6SimpletestSettings.php | 0 .../migrate_drupal => src}/Tests/Dump/Drupal6StatisticsSettings.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SyslogSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemCron.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemFile.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemFilter.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemImage.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemImageGd.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemMaintenance.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemPerformance.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemRss.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemSite.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemTheme.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TaxonomySettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TaxonomyTerm.php | 0 .../migrate_drupal => src}/Tests/Dump/Drupal6TaxonomyVocabulary.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TermNode.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TextSettings.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UpdateSettings.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Upload.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UploadField.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UploadInstance.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UrlAlias.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6User.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserMail.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserProfileFields.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserRole.php | 0 .../Drupal/migrate_drupal => src}/Tests/Dump/Drupal6VocabularyField.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/MigrateDrupalTestBase.php | 0 .../Drupal/migrate_drupal => src}/Tests/MigrateFullDrupalTestBase.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateActionConfigsTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateAggregatorConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateAggregatorFeedTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateAggregatorItemTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateBlockTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateBookConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateBookTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateCckFieldRevisionTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateCckFieldValuesTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateCommentVariableDisplayBase.php | 0 .../Tests/d6/MigrateCommentVariableEntityDisplay.php | 0 .../Tests/d6/MigrateCommentVariableEntityFormDisplay.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateCommentVariableField.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateCommentVariableInstance.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateContactCategoryTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateContactConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateCustomBlockTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateDateFormatTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateDblogConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateDrupal6Test.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldConfigsTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateFieldFormatterSettingsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldInstanceTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateFieldWidgetSettingsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateFileConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFileTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateFilterFormatTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateForumConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateLocaleConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateMenuConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateMenuTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeRevisionTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTestBase.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTypeTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateProfileValuesTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSearchConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSearchPageTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateSimpletestConfigsTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateStatisticsConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSyslogConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemCronTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemFileTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemFilterTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemImageGdTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemImageTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateSystemMaintenanceTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateSystemPerformanceTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemRssTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemSiteTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemThemeTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateTaxonomyConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateTaxonomyTermTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateTaxonomyVocabularyTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateTermNodeRevisionTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTermNodeTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateTermNodeTestBase.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateTextConfigsTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateUpdateConfigsTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadBase.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateUploadEntityDisplayTest.php | 0 .../Tests/d6/MigrateUploadEntityFormDisplayTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadFieldTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadInstanceTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUrlAliasTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateUserConfigsTest.php | 0 .../Tests/d6/MigrateUserPictureEntityDisplayTest.php | 0 .../Tests/d6/MigrateUserPictureEntityFormDisplayTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateUserPictureFieldTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureFileTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateUserPictureInstanceTest.php | 0 .../Tests/d6/MigrateUserProfileEntityDisplayTest.php | 0 .../Tests/d6/MigrateUserProfileEntityFormDisplayTest.php | 0 .../Tests/d6/MigrateUserProfileFieldInstanceTest.php | 0 .../migrate_drupal => src}/Tests/d6/MigrateUserProfileFieldTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserRoleTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserTest.php | 0 .../{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateViewModesTest.php | 0 .../Tests/d6/MigrateVocabularyEntityDisplayTest.php | 0 .../Tests/d6/MigrateVocabularyEntityFormDisplayTest.php | 0 .../Tests/d6/MigrateVocabularyFieldInstanceTest.php | 0 .../Drupal/migrate_drupal => src}/Tests/d6/MigrateVocabularyFieldTest.php | 0 .../migrate_drupal => src}/Tests/dependencies/MigrateDependenciesTest.php | 0 .../migrate_drupal => src}/Tests/destination/ConfigDestinationTest.php | 0 .../Tests => src}/source/VariableMultiRowSourceWithHighwaterTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/VariableMultiRowTest.php | 0 .../migrate_drupal/Tests => src}/source/VariableMultiRowTestBase.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/VariableTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ActionTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/AggregatorFeedTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/AggregatorItemTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/BlockTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/BoxTest.php | 0 .../Tests => src}/source/d6/CommentSourceWithHighwaterTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/CommentTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/CommentTestBase.php | 0 .../migrate_drupal/Tests => src}/source/d6/ContactCategoryTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/Drupal6SqlBaseTest.php | 0 .../Tests => src}/source/d6/FieldInstancePerViewModeTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/FieldInstanceTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FieldTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FileTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/FilterFormatTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/MenuTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/NodeRevisionTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/NodeTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/NodeTypeTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/ProfileFieldTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/RoleTest.php | 0 .../Tests => src}/source/d6/TermSourceWithVocabularyFilterTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TermTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TermTestBase.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TestComment.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TestTerm.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/UrlAliasTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/UserPictureTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/UserTest.php | 0 .../tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ViewModeTest.php | 0 .../{Drupal/migrate_drupal/Tests => src}/source/d6/VocabularyTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Access/NodeAddAccessCheck.php | 0 .../node/{lib/Drupal/node => src}/Access/NodeRevisionAccessCheck.php | 0 core/modules/node/{lib/Drupal/node => src}/Controller/NodeController.php | 0 .../node/{lib/Drupal/node => src}/Controller/NodeViewController.php | 0 core/modules/node/{lib/Drupal/node => src}/Entity/Node.php | 0 core/modules/node/{lib/Drupal/node => src}/Entity/NodeType.php | 0 .../{lib/Drupal/node => src}/EventSubscriber/NodeAdminRouteSubscriber.php | 0 core/modules/node/{lib/Drupal/node => src}/Form/DeleteMultiple.php | 0 core/modules/node/{lib/Drupal/node => src}/Form/NodeDeleteForm.php | 0 .../modules/node/{lib/Drupal/node => src}/Form/NodeRevisionDeleteForm.php | 0 .../modules/node/{lib/Drupal/node => src}/Form/NodeRevisionRevertForm.php | 0 core/modules/node/{lib/Drupal/node => src}/Form/NodeTypeDeleteConfirm.php | 0 .../modules/node/{lib/Drupal/node => src}/Form/RebuildPermissionsForm.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeAccessController.php | 0 .../node/{lib/Drupal/node => src}/NodeAccessControllerInterface.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeForm.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeGrantDatabaseStorage.php | 0 .../node/{lib/Drupal/node => src}/NodeGrantDatabaseStorageInterface.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeInterface.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeListBuilder.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeStorage.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeStorageInterface.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeTranslationHandler.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeTypeAccessController.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeTypeForm.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeTypeInterface.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeTypeListBuilder.php | 0 core/modules/node/{lib/Drupal/node => src}/NodeViewBuilder.php | 0 .../node/{lib/Drupal/node => src}/Plugin/Action/AssignOwnerNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/DeleteNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/DemoteNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/PromoteNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/PublishNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/SaveNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/StickyNode.php | 0 .../{lib/Drupal/node => src}/Plugin/Action/UnpublishByKeywordNode.php | 0 .../modules/node/{lib/Drupal/node => src}/Plugin/Action/UnpublishNode.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Action/UnstickyNode.php | 0 .../modules/node/{lib/Drupal/node => src}/Plugin/Block/SyndicateBlock.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Condition/NodeType.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/Search/NodeSearch.php | 0 .../node => src}/Plugin/entity_reference/selection/NodeSelection.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/area/ListingEmpty.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Nid.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Type.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/argument/UidRevision.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Vid.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/argument_default/Node.php | 0 .../modules/node/{lib/Drupal/node => src}/Plugin/views/field/Language.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Link.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/field/LinkDelete.php | 0 .../modules/node/{lib/Drupal/node => src}/Plugin/views/field/LinkEdit.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Node.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/field/NodeBulkForm.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Path.php | 0 .../modules/node/{lib/Drupal/node => src}/Plugin/views/field/Revision.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/field/RevisionLink.php | 0 .../{lib/Drupal/node => src}/Plugin/views/field/RevisionLinkDelete.php | 0 .../{lib/Drupal/node => src}/Plugin/views/field/RevisionLinkRevert.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Type.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/filter/Access.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/filter/Status.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/filter/UidRevision.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/row/NodeRow.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/row/Rss.php | 0 core/modules/node/{lib/Drupal/node => src}/Plugin/views/wizard/Node.php | 0 .../node/{lib/Drupal/node => src}/Plugin/views/wizard/NodeRevision.php | 0 .../node/{lib/Drupal/node => src}/Tests/Condition/NodeConditionTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Config/NodeImportChangeTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Config/NodeImportCreateTest.php | 0 .../{lib/Drupal/node => src}/Tests/MultiStepNodeFormBasicOptionsTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeAccessBaseTableTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessFieldTest.php | 0 .../Drupal/node => src}/Tests/NodeAccessLanguageAwareCombinationTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeAccessLanguageAwareTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeAccessLanguageTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessPagerTest.php | 0 .../modules/node/{lib/Drupal/node => src}/Tests/NodeAccessRebuildTest.php | 0 .../modules/node/{lib/Drupal/node => src}/Tests/NodeAccessRecordsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeAdminTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeBlockFunctionalTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeCacheTagsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeCreationTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeEntityViewModeAlterTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeFieldMultilingualTestCase.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeFormButtonsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeLastChangedTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeLoadMultipleTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodePostSettingsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeQueryAlterTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeRSSContentTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeRevisionPermissionsTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeRevisionsAllTestCase.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionsUiTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeSaveTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeSyndicateBlockTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeTemplateSuggestionsTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeTestBase.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeTitleTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeTitleXSSTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeTokenReplaceTest.php | 0 .../modules/node/{lib/Drupal/node => src}/Tests/NodeTranslationUITest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeTypeInitialLanguageTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/NodeTypePersistenceTest.php | 0 .../{lib/Drupal/node => src}/Tests/NodeTypeRenameConfigImportTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeTypeTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeValidationTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeViewLanguageTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/NodeViewTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/PageEditTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/PagePreviewTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/PageViewTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/SummaryLengthTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/Views/BulkFormTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/Views/FieldTypeTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Views/FilterUidRevisionTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/Views/FrontPageTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Views/NodeContextualLinksTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Views/NodeIntegrationTest.php | 0 .../node/{lib/Drupal/node => src}/Tests/Views/NodeRevisionWizardTest.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/Views/NodeTestBase.php | 0 .../node/{lib/Drupal/node => src}/Tests/Views/RevisionRelationships.php | 0 core/modules/node/{lib/Drupal/node => src}/Tests/Views/RowPluginTest.php | 0 .../modules/node/{lib/Drupal/node => src}/Tests/Views/StatusExtraTest.php | 0 .../{Drupal/node/Tests => src}/Plugin/views/field/NodeBulkFormTest.php | 0 .../Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php | 0 .../options => src}/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php | 0 .../Drupal/options => src}/Plugin/Field/FieldType/ListBooleanItem.php | 0 .../{lib/Drupal/options => src}/Plugin/Field/FieldType/ListFloatItem.php | 0 .../Drupal/options => src}/Plugin/Field/FieldType/ListIntegerItem.php | 0 .../{lib/Drupal/options => src}/Plugin/Field/FieldType/ListItemBase.php | 0 .../{lib/Drupal/options => src}/Plugin/Field/FieldType/ListTextItem.php | 0 .../Drupal/options => src}/Plugin/Field/FieldWidget/ButtonsWidget.php | 0 .../{lib/Drupal/options => src}/Plugin/Field/FieldWidget/OnOffWidget.php | 0 .../Drupal/options => src}/Plugin/Field/FieldWidget/OptionsWidgetBase.php | 0 .../{lib/Drupal/options => src}/Plugin/Field/FieldWidget/SelectWidget.php | 0 .../{lib/Drupal/options => src}/Tests/OptionsDynamicValuesTestBase.php | 0 .../Drupal/options => src}/Tests/OptionsDynamicValuesValidationTest.php | 0 .../options/{lib/Drupal/options => src}/Tests/OptionsFieldTest.php | 0 .../options/{lib/Drupal/options => src}/Tests/OptionsFieldUITest.php | 0 .../{lib/Drupal/options => src}/Tests/OptionsFieldUnitTestBase.php | 0 .../options/{lib/Drupal/options => src}/Tests/OptionsFormattersTest.php | 0 .../{lib/Drupal/options => src}/Tests/OptionsSelectDynamicValuesTest.php | 0 .../options/{lib/Drupal/options => src}/Tests/OptionsWidgetsTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Controller/PathController.php | 0 core/modules/path/{lib/Drupal/path => src}/Form/AddForm.php | 0 core/modules/path/{lib/Drupal/path => src}/Form/DeleteForm.php | 0 core/modules/path/{lib/Drupal/path => src}/Form/EditForm.php | 0 core/modules/path/{lib/Drupal/path => src}/Form/PathFilterForm.php | 0 core/modules/path/{lib/Drupal/path => src}/Form/PathFormBase.php | 0 .../{lib/Drupal/path => src}/Plugin/Field/FieldType/PathFieldItemList.php | 0 .../path/{lib/Drupal/path => src}/Plugin/Field/FieldType/PathItem.php | 0 .../path/{lib/Drupal/path => src}/Plugin/Field/FieldWidget/PathWidget.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathAdminTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathAliasTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathLanguageTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathLanguageUiTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathTaxonomyTermTest.php | 0 core/modules/path/{lib/Drupal/path => src}/Tests/PathTestBase.php | 0 .../{lib/Drupal/quickedit => src}/Access/EditEntityAccessCheck.php | 0 .../{lib/Drupal/quickedit => src}/Access/EditEntityFieldAccessCheck.php | 0 .../quickedit => src}/Access/EditEntityFieldAccessCheckInterface.php | 0 core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/BaseCommand.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Ajax/EntitySavedCommand.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Ajax/FieldFormCommand.php | 0 .../{lib/Drupal/quickedit => src}/Ajax/FieldFormSavedCommand.php | 0 .../Drupal/quickedit => src}/Ajax/FieldFormValidationErrorsCommand.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Annotation/InPlaceEditor.php | 0 core/modules/quickedit/{lib/Drupal/quickedit => src}/EditorSelector.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/EditorSelectorInterface.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Form/QuickEditFieldForm.php | 0 .../modules/quickedit/{lib/Drupal/quickedit => src}/MetadataGenerator.php | 0 .../{lib/Drupal/quickedit => src}/MetadataGeneratorInterface.php | 0 .../{lib/Drupal/quickedit => src}/Plugin/InPlaceEditor/FormEditor.php | 0 .../Drupal/quickedit => src}/Plugin/InPlaceEditor/PlainTextEditor.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorBase.php | 0 .../{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorInterface.php | 0 .../{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorManager.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/QuickEditController.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Tests/EditorSelectionTest.php | 0 .../{lib/Drupal/quickedit => src}/Tests/MetadataGeneratorTest.php | 0 .../{lib/Drupal/quickedit => src}/Tests/QuickEditAutocompleteTermTest.php | 0 .../{lib/Drupal/quickedit => src}/Tests/QuickEditLoadingTest.php | 0 .../quickedit/{lib/Drupal/quickedit => src}/Tests/QuickEditTestBase.php | 0 .../{lib/Drupal/quickedit_test => src}/MockEditEntityFieldAccessCheck.php | 0 .../Drupal/quickedit_test => src}/Plugin/InPlaceEditor/WysiwygEditor.php | 0 .../{Drupal/quickedit/Tests => src}/Access/EditEntityAccessCheckTest.php | 0 .../quickedit/Tests => src}/Access/EditEntityFieldAccessCheckTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/CommonDataConverter.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Entity/RdfMapping.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/RdfMappingInterface.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/SchemaOrgDataConverter.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/CommentAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/CrudTest.php | 0 .../rdf/{lib/Drupal/rdf => src}/Tests/Field/DateTimeFieldRdfaTest.php | 0 .../rdf/{lib/Drupal/rdf => src}/Tests/Field/EmailFieldRdfaTest.php | 0 .../{lib/Drupal/rdf => src}/Tests/Field/FieldRdfaDatatypeCallbackTest.php | 0 .../modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/FieldRdfaTestBase.php | 0 .../{lib/Drupal/rdf => src}/Tests/Field/TaxonomyTermReferenceRdfaTest.php | 0 .../rdf/{lib/Drupal/rdf => src}/Tests/Field/TelephoneFieldRdfaTest.php | 0 .../modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TestDataConverter.php | 0 .../modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TextFieldRdfaTest.php | 0 .../modules/rdf/{lib/Drupal/rdf => src}/Tests/FileFieldAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/GetNamespacesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/GetRdfNamespacesTest.php | 0 .../rdf/{lib/Drupal/rdf => src}/Tests/ImageFieldAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/NodeAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/RdfaAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/StandardProfileTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/TaxonomyAttributesTest.php | 0 .../rdf/{lib/Drupal/rdf => src}/Tests/TaxonomyTermFieldAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/TrackerAttributesTest.php | 0 core/modules/rdf/{lib/Drupal/rdf => src}/Tests/UserAttributesTest.php | 0 .../tests/{Drupal/rdf/Tests => src}/RdfMappingConfigEntityUnitTest.php | 0 .../Drupal/responsive_image => src}/Entity/ResponsiveImageMapping.php | 0 .../responsive_image => src}/Form/ResponsiveImageMappingDeleteForm.php | 0 .../Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php | 0 .../{lib/Drupal/responsive_image => src}/ResponsiveImageMappingForm.php | 0 .../Drupal/responsive_image => src}/ResponsiveImageMappingInterface.php | 0 .../Drupal/responsive_image => src}/ResponsiveImageMappingListBuilder.php | 0 .../Drupal/responsive_image => src}/Tests/ResponsiveImageAdminUITest.php | 0 .../responsive_image => src}/Tests/ResponsiveImageFieldDisplayTest.php | 0 .../responsive_image/Tests => src}/ResponsiveImageMappingEntityTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Access/CSRFAccessCheck.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Annotation/RestResource.php | 0 core/modules/rest/{lib/Drupal/rest => src}/LinkManager/LinkManager.php | 0 .../rest/{lib/Drupal/rest => src}/LinkManager/LinkManagerInterface.php | 0 .../rest/{lib/Drupal/rest => src}/LinkManager/RelationLinkManager.php | 0 .../{lib/Drupal/rest => src}/LinkManager/RelationLinkManagerInterface.php | 0 .../modules/rest/{lib/Drupal/rest => src}/LinkManager/TypeLinkManager.php | 0 .../{lib/Drupal/rest => src}/LinkManager/TypeLinkManagerInterface.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/Derivative/EntityDerivative.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Plugin/ResourceBase.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Plugin/ResourceInterface.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/Type/ResourcePluginManager.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/rest/resource/DBLogResource.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/rest/resource/EntityResource.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/views/display/RestExport.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/views/row/DataEntityRow.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/views/row/DataFieldRow.php | 0 .../rest/{lib/Drupal/rest => src}/Plugin/views/style/Serializer.php | 0 core/modules/rest/{lib/Drupal/rest => src}/RequestHandler.php | 0 core/modules/rest/{lib/Drupal/rest => src}/ResourceResponse.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Routing/ResourceRoutes.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/AuthTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/CreateTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/CsrfTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/DBLogTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/DeleteTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/NodeTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/RESTTestBase.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/ReadTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/ResourceTest.php | 0 core/modules/rest/{lib/Drupal/rest => src}/Tests/UpdateTest.php | 0 .../rest/{lib/Drupal/rest => src}/Tests/Views/StyleSerializerTest.php | 0 core/modules/rest/tests/{Drupal/rest/Tests => src}/CollectRoutesTest.php | 0 .../modules/search/{lib/Drupal/search => src}/Annotation/SearchPlugin.php | 0 .../search/{lib/Drupal/search => src}/Controller/SearchController.php | 0 core/modules/search/{lib/Drupal/search => src}/Entity/SearchPage.php | 0 core/modules/search/{lib/Drupal/search => src}/Form/ReindexConfirm.php | 0 core/modules/search/{lib/Drupal/search => src}/Form/SearchBlockForm.php | 0 core/modules/search/{lib/Drupal/search => src}/Form/SearchPageAddForm.php | 0 .../search/{lib/Drupal/search => src}/Form/SearchPageDeleteForm.php | 0 .../modules/search/{lib/Drupal/search => src}/Form/SearchPageEditForm.php | 0 core/modules/search/{lib/Drupal/search => src}/Form/SearchPageForm.php | 0 .../modules/search/{lib/Drupal/search => src}/Form/SearchPageFormBase.php | 0 .../search/{lib/Drupal/search => src}/Plugin/Block/SearchBlock.php | 0 .../{lib/Drupal/search => src}/Plugin/ConfigurableSearchPluginBase.php | 0 .../Drupal/search => src}/Plugin/ConfigurableSearchPluginInterface.php | 0 .../{lib/Drupal/search => src}/Plugin/Derivative/SearchLocalTask.php | 0 .../search/{lib/Drupal/search => src}/Plugin/SearchIndexingInterface.php | 0 core/modules/search/{lib/Drupal/search => src}/Plugin/SearchInterface.php | 0 core/modules/search/{lib/Drupal/search => src}/Plugin/SearchPluginBag.php | 0 .../modules/search/{lib/Drupal/search => src}/Plugin/SearchPluginBase.php | 0 .../search/{lib/Drupal/search => src}/Plugin/views/argument/Search.php | 0 .../search/{lib/Drupal/search => src}/Plugin/views/field/Score.php | 0 .../search/{lib/Drupal/search => src}/Plugin/views/filter/Search.php | 0 .../search/{lib/Drupal/search => src}/Plugin/views/row/SearchRow.php | 0 .../modules/search/{lib/Drupal/search => src}/Plugin/views/sort/Score.php | 0 .../search/{lib/Drupal/search => src}/Routing/SearchPageRoutes.php | 0 .../search/{lib/Drupal/search => src}/SearchPageAccessController.php | 0 core/modules/search/{lib/Drupal/search => src}/SearchPageInterface.php | 0 core/modules/search/{lib/Drupal/search => src}/SearchPageListBuilder.php | 0 core/modules/search/{lib/Drupal/search => src}/SearchPageRepository.php | 0 .../search/{lib/Drupal/search => src}/SearchPageRepositoryInterface.php | 0 core/modules/search/{lib/Drupal/search => src}/SearchPluginManager.php | 0 core/modules/search/{lib/Drupal/search => src}/SearchQuery.php | 0 .../{lib/Drupal/search => src}/Tests/SearchAdvancedSearchFormTest.php | 0 core/modules/search/{lib/Drupal/search => src}/Tests/SearchBlockTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchCommentCountToggleTest.php | 0 .../modules/search/{lib/Drupal/search => src}/Tests/SearchCommentTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchConfigSettingsFormTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchEmbedFormTest.php | 0 core/modules/search/{lib/Drupal/search => src}/Tests/SearchExactTest.php | 0 .../modules/search/{lib/Drupal/search => src}/Tests/SearchExcerptTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchKeywordsConditionsTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchLanguageTest.php | 0 core/modules/search/{lib/Drupal/search => src}/Tests/SearchMatchTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchMultilingualEntityTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchNodePunctuationTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchNodeUpdateAndDeletionTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchNumberMatchingTest.php | 0 .../modules/search/{lib/Drupal/search => src}/Tests/SearchNumbersTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchPageCacheTagsTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchPageOverrideTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchPageTextTest.php | 0 .../{lib/Drupal/search => src}/Tests/SearchPreprocessLangcodeTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchQueryAlterTest.php | 0 .../modules/search/{lib/Drupal/search => src}/Tests/SearchRankingTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchSetLocaleTest.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchSimplifyTest.php | 0 core/modules/search/{lib/Drupal/search => src}/Tests/SearchTestBase.php | 0 .../search/{lib/Drupal/search => src}/Tests/SearchTokenizerTest.php | 0 core/modules/search/{lib/Drupal/search => src}/ViewsSearchQuery.php | 0 .../{lib/Drupal/search_embedded_form => src}/Form/SearchEmbeddedForm.php | 0 .../search_extra_type => src}/Plugin/Search/SearchExtraTypeSearch.php | 0 .../tests/{Drupal/search/Tests => src}/SearchPageRepositoryTest.php | 0 .../search/tests/{Drupal/search/Tests => src}/SearchPluginBagTest.php | 0 .../{lib/Drupal/serialization => src}/Encoder/JsonEncoder.php | 0 .../{lib/Drupal/serialization => src}/Encoder/XmlEncoder.php | 0 .../Drupal/serialization => src}/EntityResolver/ChainEntityResolver.php | 0 .../serialization => src}/EntityResolver/EntityResolverInterface.php | 0 .../{lib/Drupal/serialization => src}/EntityResolver/TargetIdResolver.php | 0 .../serialization => src}/EntityResolver/UuidReferenceInterface.php | 0 .../{lib/Drupal/serialization => src}/EntityResolver/UuidResolver.php | 0 .../Drupal/serialization => src}/Normalizer/ComplexDataNormalizer.php | 0 .../Drupal/serialization => src}/Normalizer/ConfigEntityNormalizer.php | 0 .../{lib/Drupal/serialization => src}/Normalizer/EntityNormalizer.php | 0 .../{lib/Drupal/serialization => src}/Normalizer/ListNormalizer.php | 0 .../{lib/Drupal/serialization => src}/Normalizer/NormalizerBase.php | 0 .../{lib/Drupal/serialization => src}/Normalizer/TypedDataNormalizer.php | 0 .../Drupal/serialization => src}/RegisterEntityResolversCompilerPass.php | 0 .../serialization => src}/RegisterSerializationClassesCompilerPass.php | 0 .../{lib/Drupal/serialization => src}/SerializationServiceProvider.php | 0 .../{lib/Drupal/serialization => src}/Tests/EntityResolverTest.php | 0 .../{lib/Drupal/serialization => src}/Tests/EntitySerializationTest.php | 0 .../{lib/Drupal/serialization => src}/Tests/NormalizerTestBase.php | 0 .../{lib/Drupal/serialization => src}/Tests/SerializationTest.php | 0 .../{lib/Drupal/serialization_test => src}/SerializationTestEncoder.php | 0 .../Drupal/serialization_test => src}/SerializationTestNormalizer.php | 0 .../tests/{Drupal/serialization/Tests => src}/Encoder/JsonEncoderTest.php | 0 .../tests/{Drupal/serialization/Tests => src}/Encoder/XmlEncoderTest.php | 0 .../Tests => src}/EntityResolver/ChainEntityResolverTest.php | 0 .../serialization/Tests => src}/Normalizer/ConfigEntityNormalizerTest.php | 0 .../serialization/Tests => src}/Normalizer/EntityNormalizerTest.php | 0 .../{Drupal/serialization/Tests => src}/Normalizer/ListNormalizerTest.php | 0 .../{Drupal/serialization/Tests => src}/Normalizer/NormalizerBaseTest.php | 0 .../serialization/Tests => src}/Normalizer/TypedDataNormalizerTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/DrupalUnitTestBase.php | 0 .../{lib/Drupal/simpletest => src}/Form/SimpletestResultsForm.php | 0 .../{lib/Drupal/simpletest => src}/Form/SimpletestSettingsForm.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Form/SimpletestTestForm.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/InstallerTestBase.php | 0 core/modules/simpletest/{lib/Drupal/simpletest => src}/KernelTestBase.php | 0 core/modules/simpletest/{lib/Drupal/simpletest => src}/TestBase.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/TestServiceProvider.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/BrokenSetUpTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/BrowserTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/FolderTest.php | 0 .../simpletest => src}/Tests/InstallationProfileModuleTestsTest.php | 0 .../{lib/Drupal/simpletest => src}/Tests/KernelTestBaseTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/MailCaptureTest.php | 0 .../Drupal/simpletest => src}/Tests/MissingCheckedRequirementsTest.php | 0 .../Drupal/simpletest => src}/Tests/MissingDependentModuleUnitTest.php | 0 .../Drupal/simpletest => src}/Tests/OtherInstallationProfileTestsTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/SimpleTestTest.php | 0 .../simpletest/{lib/Drupal/simpletest => src}/Tests/UserHelpersTest.php | 0 core/modules/simpletest/{lib/Drupal/simpletest => src}/UnitTestBase.php | 0 core/modules/simpletest/{lib/Drupal/simpletest => src}/WebTestBase.php | 0 .../{lib/Drupal/phpunit_test => src}/PhpUnitTestDummyClass.php | 0 .../{Drupal/simpletest/Tests => src}/Fixtures/select_2nd_selected.html | 0 .../{Drupal/simpletest/Tests => src}/Fixtures/select_none_selected.html | 0 .../tests/{Drupal/simpletest/Tests => src}/PhpUnitAutoloaderTest.php | 0 .../tests/{Drupal/simpletest/Tests => src}/PhpUnitErrorTest.php | 0 .../simpletest/tests/{Drupal/simpletest/Tests => src}/TestBaseTest.php | 0 .../simpletest/tests/{Drupal/simpletest/Tests => src}/WebTestBaseTest.php | 0 .../simpletest/tests/{Drupal/simpletest/Tests => src}/phpunit_error.xml | 0 .../Drupal/statistics => src}/Plugin/Block/StatisticsPopularBlock.php | 0 .../statistics/{lib/Drupal/statistics => src}/StatisticsSettingsForm.php | 0 .../{lib/Drupal/statistics => src}/Tests/StatisticsAdminTest.php | 0 .../{lib/Drupal/statistics => src}/Tests/StatisticsLoggingTest.php | 0 .../{lib/Drupal/statistics => src}/Tests/StatisticsReportsTest.php | 0 .../{lib/Drupal/statistics => src}/Tests/StatisticsTestBase.php | 0 .../{lib/Drupal/statistics => src}/Tests/StatisticsTokenReplaceTest.php | 0 .../{lib/Drupal/statistics => src}/Tests/Views/IntegrationTest.php | 0 core/modules/syslog/{lib/Drupal/syslog => src}/Tests/SyslogTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Access/CronAccessCheck.php | 0 .../system/{lib/Drupal/system => src}/ActionConfigEntityInterface.php | 0 .../system/{lib/Drupal/system => src}/Controller/AdminController.php | 0 .../system/{lib/Drupal/system => src}/Controller/BatchController.php | 0 .../system/{lib/Drupal/system => src}/Controller/FormAjaxController.php | 0 .../system/{lib/Drupal/system => src}/Controller/SystemController.php | 0 .../system/{lib/Drupal/system => src}/Controller/SystemInfoController.php | 0 .../system/{lib/Drupal/system => src}/Controller/ThemeController.php | 0 .../system/{lib/Drupal/system => src}/Controller/TimezoneController.php | 0 core/modules/system/{lib/Drupal/system => src}/CronController.php | 0 .../system/{lib/Drupal/system => src}/DateFormatAccessController.php | 0 core/modules/system/{lib/Drupal/system => src}/DateFormatInterface.php | 0 core/modules/system/{lib/Drupal/system => src}/DateFormatListBuilder.php | 0 core/modules/system/{lib/Drupal/system => src}/Entity/Action.php | 0 core/modules/system/{lib/Drupal/system => src}/Entity/DateFormat.php | 0 core/modules/system/{lib/Drupal/system => src}/Entity/Menu.php | 0 .../{lib/Drupal/system => src}/EventSubscriber/AdminRouteSubscriber.php | 0 .../system/{lib/Drupal/system => src}/EventSubscriber/AutomaticCron.php | 0 core/modules/system/{lib/Drupal/system => src}/FileDownloadController.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/CronForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/DateFormatAddForm.php | 0 .../system/{lib/Drupal/system => src}/Form/DateFormatDeleteForm.php | 0 .../modules/system/{lib/Drupal/system => src}/Form/DateFormatEditForm.php | 0 .../modules/system/{lib/Drupal/system => src}/Form/DateFormatFormBase.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/FileSystemForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/ImageToolkitForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/LoggingForm.php | 0 .../system/{lib/Drupal/system => src}/Form/ModulesListConfirmForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/ModulesListForm.php | 0 .../{lib/Drupal/system => src}/Form/ModulesUninstallConfirmForm.php | 0 .../system/{lib/Drupal/system => src}/Form/ModulesUninstallForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/PerformanceForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/RegionalForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/RssFeedsForm.php | 0 .../system/{lib/Drupal/system => src}/Form/SiteInformationForm.php | 0 .../system/{lib/Drupal/system => src}/Form/SiteMaintenanceModeForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/ThemeAdminForm.php | 0 core/modules/system/{lib/Drupal/system => src}/Form/ThemeSettingsForm.php | 0 core/modules/system/{lib/Drupal/system => src}/MachineNameController.php | 0 core/modules/system/{lib/Drupal/system => src}/MenuAccessController.php | 0 core/modules/system/{lib/Drupal/system => src}/MenuInterface.php | 0 .../system/{lib/Drupal/system => src}/PathBasedBreadcrumbBuilder.php | 0 .../{lib/Drupal/system => src}/PathProcessor/PathProcessorFiles.php | 0 .../system/{lib/Drupal/system => src}/PhpStorage/MockPhpStorage.php | 0 core/modules/system/{lib/Drupal/system => src}/Plugin/Archiver/Tar.php | 0 core/modules/system/{lib/Drupal/system => src}/Plugin/Archiver/Zip.php | 0 .../{lib/Drupal/system => src}/Plugin/Block/SystemBrandingBlock.php | 0 .../{lib/Drupal/system => src}/Plugin/Block/SystemBreadcrumbBlock.php | 0 .../system/{lib/Drupal/system => src}/Plugin/Block/SystemHelpBlock.php | 0 .../system/{lib/Drupal/system => src}/Plugin/Block/SystemMainBlock.php | 0 .../system/{lib/Drupal/system => src}/Plugin/Block/SystemMenuBlock.php | 0 .../{lib/Drupal/system => src}/Plugin/Block/SystemPoweredByBlock.php | 0 .../{lib/Drupal/system => src}/Plugin/Derivative/SystemMenuBlock.php | 0 .../{lib/Drupal/system => src}/Plugin/Derivative/ThemeLocalTask.php | 0 .../system/{lib/Drupal/system => src}/Plugin/ImageToolkit/GDToolkit.php | 0 .../system/{lib/Drupal/system => src}/Plugin/views/field/BulkForm.php | 0 core/modules/system/{lib/Drupal/system => src}/SystemConfigSubscriber.php | 0 core/modules/system/{lib/Drupal/system => src}/SystemManager.php | 0 .../system/{lib/Drupal/system => src}/Tests/Action/ActionUnitTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Ajax/AjaxTestBase.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Ajax/CommandsTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/DialogTest.php | 0 .../{lib/Drupal/system => src}/Tests/Ajax/ElementValidationTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Ajax/FormValuesTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Ajax/FrameworkTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Ajax/MultiFormTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Batch/PageTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Batch/ProcessingTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Block/SystemMenuBlockTest.php | 0 .../{lib/Drupal/system => src}/Tests/Bootstrap/GetFilenameUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Bootstrap/MiscUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Bootstrap/PageCacheTest.php | 0 .../Drupal/system => src}/Tests/Bootstrap/ResettableStaticUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Cache/ApcuBackendUnitTest.php | 0 .../{lib/Drupal/system => src}/Tests/Cache/BackendChainUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Cache/CacheTestBase.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Cache/ClearTest.php | 0 .../{lib/Drupal/system => src}/Tests/Cache/DatabaseBackendTagTest.php | 0 .../{lib/Drupal/system => src}/Tests/Cache/DatabaseBackendUnitTest.php | 0 .../Drupal/system => src}/Tests/Cache/GenericCacheBackendUnitTestBase.php | 0 .../{lib/Drupal/system => src}/Tests/Cache/MemoryBackendUnitTest.php | 0 .../Drupal/system => src}/Tests/Cache/PageCacheTagsIntegrationTest.php | 0 .../{lib/Drupal/system => src}/Tests/Cache/PageCacheTagsTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Cache/PhpBackendUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/AddFeedTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Common/AlterTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/CascadingStylesheetsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/FormatDateTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/HtmlIdentifierUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/JavaScriptTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/MergeAttachmentsTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/NoJavaScriptAnonymousTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/RegionContentTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/RenderElementTypesTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Common/RenderTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/RenderWebTest.php | 0 .../Drupal/system => src}/Tests/Common/SimpleTestErrorCollectorTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/SizeUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/SystemListingTest.php | 0 .../{lib/Drupal/system => src}/Tests/Common/TableSortExtenderUnitTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Common/UrlTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/WriteRecordTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Common/XssUnitTest.php | 0 .../{lib/Drupal/system => src}/Tests/Condition/ConditionFormTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/AlterTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/BasicSyntaxTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/CaseSensitivityTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/ConnectionTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/ConnectionUnitTest.php | 0 .../Drupal/system => src}/Tests/Database/DatabaseExceptionWrapperTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/DatabaseTestBase.php | 0 .../{lib/Drupal/system => src}/Tests/Database/DatabaseWebTestBase.php | 0 .../{lib/Drupal/system => src}/Tests/Database/DeleteTruncateTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/FakeRecord.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/FetchTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/InsertDefaultsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/InsertLobTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/InsertTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/InvalidDataTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/LoggingTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/MergeTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/NextIdTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/QueryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/RangeQueryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/RegressionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/SchemaTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/SelectCloneTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/SelectComplexTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/SelectOrderedTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/SelectPagerDefaultTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/SelectSubqueryTest.php | 0 .../Drupal/system => src}/Tests/Database/SelectTableSortDefaultTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/SelectTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/SerializeQueryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/TaggingTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/TemporaryQueryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/TransactionTest.php | 0 .../{lib/Drupal/system => src}/Tests/Database/UpdateComplexTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/UpdateLobTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Database/UpdateTest.php | 0 .../{lib/Drupal/system => src}/Tests/Datetime/DateTimePlusIntlTest.php | 0 .../{lib/Drupal/system => src}/Tests/Datetime/DrupalDateTimeIntlTest.php | 0 .../{lib/Drupal/system => src}/Tests/Datetime/DrupalDateTimeTest.php | 0 .../Drupal/system => src}/Tests/DrupalKernel/ContentNegotiationTest.php | 0 .../Drupal/system => src}/Tests/DrupalKernel/DrupalKernelSiteTest.php | 0 .../{lib/Drupal/system => src}/Tests/DrupalKernel/DrupalKernelTest.php | 0 .../Drupal/system => src}/Tests/DrupalKernel/ServiceDestructionTest.php | 0 .../Drupal/system => src}/Tests/Entity/BundleConstraintValidatorTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/ConfigEntityImportTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/ConfigEntityQueryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityAccessTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityApiInfoTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityApiTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityCacheTagsTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityCrudHookTest.php | 0 .../Drupal/system => src}/Tests/Entity/EntityFieldDefaultValueTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityFieldTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityFormTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityLanguageTestBase.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityOperationsTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityQueryAggregateTest.php | 0 .../Drupal/system => src}/Tests/Entity/EntityQueryRelationshipTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityQueryTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityRevisionsTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityTranslationFormTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityTranslationTest.php | 0 .../system => src}/Tests/Entity/EntityTypeConstraintValidatorTest.php | 0 .../Drupal/system => src}/Tests/Entity/EntityTypedDataDefinitionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityUUIDTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/EntityUnitTestBase.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityValidationTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityViewBuilderTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/EntityViewControllerTest.php | 0 .../Drupal/system => src}/Tests/Entity/EntityWithUriCacheTagsTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Entity/FieldAccessTest.php | 0 .../{lib/Drupal/system => src}/Tests/Entity/FieldSqlStorageTest.php | 0 .../Drupal/system => src}/Tests/Entity/FieldTranslationSqlStorageTest.php | 0 .../{lib/Drupal/system => src}/Tests/Extension/InfoParserUnitTest.php | 0 .../{lib/Drupal/system => src}/Tests/Extension/ThemeHandlerTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/File/ConfigTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/DirectoryTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/File/FileTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/HtaccessUnitTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/File/MimeTypeTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/NameMungingTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/ReadOnlyStreamWrapperTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/RemoteFileDirectoryTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/RemoteFileScanDirectoryTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedCopyTest.php | 0 .../system => src}/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php | 0 .../Drupal/system => src}/Tests/File/RemoteFileUnmanagedDeleteTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedMoveTest.php | 0 .../Drupal/system => src}/Tests/File/RemoteFileUnmanagedSaveDataTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/ScanDirectoryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/StreamWrapperTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/UnmanagedCopyTest.php | 0 .../Drupal/system => src}/Tests/File/UnmanagedDeleteRecursiveTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/UnmanagedDeleteTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/UnmanagedMoveTest.php | 0 .../{lib/Drupal/system => src}/Tests/File/UnmanagedSaveDataTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/File/UrlRewritingTest.php | 0 .../{lib/Drupal/system => src}/Tests/FileTransfer/FileTransferTest.php | 0 .../{lib/Drupal/system => src}/Tests/FileTransfer/MockTestConnection.php | 0 .../{lib/Drupal/system => src}/Tests/FileTransfer/TestFileTransfer.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/AlterTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/ArbitraryRebuildTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Form/CheckboxTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/ConfirmFormTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/ElementTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/ElementsLabelsTest.php | 0 .../{lib/Drupal/system => src}/Tests/Form/ElementsTableSelectTest.php | 0 .../{lib/Drupal/system => src}/Tests/Form/ElementsVerticalTabsTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/EmailTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/FormCacheTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/FormObjectTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/FormTest.php | 0 .../{lib/Drupal/system => src}/Tests/Form/LanguageSelectElementTest.php | 0 .../{lib/Drupal/system => src}/Tests/Form/ModulesListFormWebTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/ProgrammaticTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/RebuildTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Form/RedirectTest.php | 0 .../Drupal/system => src}/Tests/Form/StateValuesCleanAdvancedTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/StateValuesCleanTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/StorageTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/SystemConfigFormTest.php | 0 .../system => src}/Tests/Form/TriggeringElementProgrammedUnitTest.php | 0 .../{lib/Drupal/system => src}/Tests/Form/TriggeringElementTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Form/UrlTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Form/ValidationTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Image/ToolkitGdTest.php | 0 .../{lib/Drupal/system => src}/Tests/Image/ToolkitSetupFormTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Image/ToolkitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Image/ToolkitTestBase.php | 0 .../Drupal/system => src}/Tests/Installer/DistributionProfileTest.php | 0 .../Drupal/system => src}/Tests/Installer/InstallerEmptySettingsTest.php | 0 .../Tests/Installer/InstallerExistingDatabaseSettingsTest.php | 0 .../system => src}/Tests/Installer/InstallerExistingSettingsTest.php | 0 .../system => src}/Tests/Installer/InstallerLanguageDirectionTest.php | 0 .../{lib/Drupal/system => src}/Tests/Installer/InstallerLanguageTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Installer/InstallerTest.php | 0 .../Drupal/system => src}/Tests/Installer/InstallerTranslationTest.php | 0 .../Tests/Installer/InstallerTranslationVersionUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Installer/SiteNameTest.php | 0 .../system => src}/Tests/KeyValueStore/DatabaseStorageExpirableTest.php | 0 .../Drupal/system => src}/Tests/KeyValueStore/DatabaseStorageTest.php | 0 .../Drupal/system => src}/Tests/KeyValueStore/GarbageCollectionTest.php | 0 .../Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php | 0 .../Tests/KeyValueStore/KeyValueContentEntityStorageTest.php | 0 .../{lib/Drupal/system => src}/Tests/KeyValueStore/MemoryStorageTest.php | 0 .../{lib/Drupal/system => src}/Tests/KeyValueStore/StorageTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Lock/LockFunctionalTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Lock/LockUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Mail/HtmlToTextTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Mail/MailTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Mail/WrapMailUnitTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Menu/BreadcrumbTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Menu/LinksTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Menu/LocalActionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Menu/LocalTasksTest.php | 0 .../{lib/Drupal/system => src}/Tests/Menu/MenuRouterRebuildTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Menu/MenuRouterTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Menu/MenuTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Menu/MenuTranslateTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/ClassLoaderTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/DependencyTest.php | 0 .../{lib/Drupal/system => src}/Tests/Module/HookRequirementsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/InstallTest.php | 0 .../{lib/Drupal/system => src}/Tests/Module/InstallUninstallTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/ModuleApiTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/ModuleTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/RequiredTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/UninstallTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Module/VersionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Page/DefaultMetatagsTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Pager/PagerTest.php | 0 .../{lib/Drupal/system => src}/Tests/ParamConverter/UpcastingTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Path/AliasTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Path/MatchPathTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Path/PathUnitTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/Path/UrlAliasFixtures.php | 0 .../{lib/Drupal/system => src}/Tests/Path/UrlAlterFunctionalTest.php | 0 .../{lib/Drupal/system => src}/Tests/PhpStorage/PhpStorageFactoryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/AlterDecoratorTest.php | 0 .../Drupal/system => src}/Tests/Plugin/CacheDecoratorLanguageTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/CacheDecoratorTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/ContextPluginTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/DerivativeTest.php | 0 .../system => src}/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php | 0 .../Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php | 0 .../Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php | 0 .../Drupal/system => src}/Tests/Plugin/Discovery/DiscoveryTestBase.php | 0 .../Drupal/system => src}/Tests/Plugin/Discovery/StaticDiscoveryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/FactoryTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/InspectionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Plugin/PluginTestBase.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Queue/QueueTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/MatcherDumperTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/MockAliasManager.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/MockMatcher.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/MockRouteProvider.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/RouteProviderTest.php | 0 .../{lib/Drupal/system => src}/Tests/Routing/RouterPermissionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Routing/RouterTest.php | 0 .../Drupal/system => src}/Tests/ServiceProvider/ServiceProviderTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Session/SessionHttpsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Session/SessionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/AccessDeniedTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/AdminMetaTagTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/System/AdminTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/CronQueueTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/CronRunTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/DateFormatsLockedTest.php | 0 .../Drupal/system => src}/Tests/System/DateFormatsMachineNameTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/DateTimeTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/DefaultMobileMetaTagsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/ErrorHandlerTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/System/FloodTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/FrontPageTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/IgnoreSlaveSubscriberTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/IndexPhpTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/InfoAlterTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/MainContentFallbackTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/PageNotFoundTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/PageTitleTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/PasswordHashingTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/RetrieveFileTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/System/ScriptTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/SettingsRewriteTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/ShutdownFunctionsTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/SiteMaintenanceTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/System/StatusTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/SystemAuthorizeTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/SystemConfigFormTestBase.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/System/ThemeTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/TokenReplaceUnitTest.php | 0 .../{lib/Drupal/system => src}/Tests/System/TokenReplaceUnitTestBase.php | 0 .../system/{lib/Drupal/system => src}/Tests/System/TokenScanTest.php | 0 .../{lib/Drupal/system => src}/Tests/Theme/EntityFilteringThemeTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Theme/FastTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/FunctionsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/HtmlAttributesTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/RegistryTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TableTest.php | 0 .../Drupal/system => src}/Tests/Theme/ThemeEarlyInitializationTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/ThemeInfoStylesTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/ThemeSettingsTest.php | 0 .../{lib/Drupal/system => src}/Tests/Theme/ThemeSuggestionsAlterTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeTest.php | 0 .../{lib/Drupal/system => src}/Tests/Theme/ThemeTestPhpTemplate.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/ThemeTestTwig.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigDebugMarkupTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigExtensionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigFilterTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigNamespaceTest.php | 0 .../modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigRawTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigSettingsTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Theme/TwigTransTest.php | 0 .../Drupal/system => src}/Tests/Transliteration/TransliterationTest.php | 0 .../Drupal/system => src}/Tests/TypedData/TypedDataDefinitionTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/TypedData/TypedDataTest.php | 0 .../Drupal/system => src}/Tests/Update/DependencyHookInvocationTest.php | 0 .../{lib/Drupal/system => src}/Tests/Update/DependencyMissingTest.php | 0 .../{lib/Drupal/system => src}/Tests/Update/DependencyOrderingTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Update/InvalidUpdateHook.php | 0 .../system/{lib/Drupal/system => src}/Tests/Update/UpdateScriptTest.php | 0 .../system/{lib/Drupal/system => src}/Tests/Update/UpdatesWith7x.php | 0 .../Tests/Validation/AllowedValuesConstraintValidatorTest.php | 0 .../Tests/Validation/ComplexDataConstraintValidatorTest.php | 0 core/modules/system/{lib/Drupal/system => src}/Theme/BatchNegotiator.php | 0 .../action_test/{lib/Drupal/action_test => src}/Plugin/Action/NoType.php | 0 .../{lib/Drupal/action_test => src}/Plugin/Action/SaveEntity.php | 0 .../ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Callbacks.php | 0 .../Drupal/ajax_forms_test => src}/Form/AjaxFormsTestCommandsForm.php | 0 .../Drupal/ajax_forms_test => src}/Form/AjaxFormsTestLazyLoadForm.php | 0 .../{lib/Drupal/ajax_forms_test => src}/Form/AjaxFormsTestSimpleForm.php | 0 .../Drupal/ajax_forms_test => src}/Form/AjaxFormsTestValidationForm.php | 0 .../{lib/Drupal/ajax_test => src}/Controller/AjaxTestController.php | 0 .../ajax_test/{lib/Drupal/ajax_test => src}/Form/AjaxTestDialogForm.php | 0 .../modules/ajax_test/{lib/Drupal/ajax_test => src}/Form/AjaxTestForm.php | 0 .../{lib/Drupal/batch_test => src}/Controller/BatchTestController.php | 0 .../batch_test/{lib/Drupal/batch_test => src}/Form/BatchTestForm.php | 0 .../{lib/Drupal/common_test => src}/Controller/CommonTestController.php | 0 .../condition_test/{lib/Drupal/condition_test => src}/FormController.php | 0 .../Drupal/database_test => src}/Controller/DatabaseTestController.php | 0 .../{lib/Drupal/database_test => src}/Form/DatabaseTestForm.php | 0 .../entity_cache_test_dependency => src}/Entity/EntityCacheTest.php | 0 .../{lib/Drupal/entity_test => src}/Controller/EntityTestController.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTest.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestBaseFieldDisplay.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestCache.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestDefaultAccess.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestLabel.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestLabelCallback.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestMul.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestMulRev.php | 0 .../{lib/Drupal/entity_test => src}/Entity/EntityTestNoLabel.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestRev.php | 0 .../{lib/Drupal/entity_test => src}/EntityTestAccessController.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/EntityTestDeleteForm.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/EntityTestForm.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/EntityTestListBuilder.php | 0 .../entity_test/{lib/Drupal/entity_test => src}/EntityTestViewBuilder.php | 0 .../Drupal/entity_test => src}/Plugin/Derivative/EntityTestLocalTasks.php | 0 .../{lib/Drupal/entity_test => src}/Routing/EntityTestRoutes.php | 0 .../{lib/Drupal/error_test => src}/Controller/ErrorTestController.php | 0 .../form_test/{lib/Drupal/form_test => src}/AutocompleteController.php | 0 .../tests/modules/form_test/{lib/Drupal/form_test => src}/Callbacks.php | 0 .../{lib/Drupal/form_test => src}/ConfirmFormArrayPathTestForm.php | 0 .../form_test/{lib/Drupal/form_test => src}/ConfirmFormTestForm.php | 0 .../{lib/Drupal/form_test => src}/Controller/FormTestController.php | 0 .../Drupal/form_test => src}/EventSubscriber/FormTestEventSubscriber.php | 0 .../modules/form_test/{lib/Drupal/form_test => src}/Form/FormTestForm.php | 0 .../form_test/{lib/Drupal/form_test => src}/Form/RedirectBlockForm.php | 0 .../form_test/{lib/Drupal/form_test => src}/FormTestArgumentsObject.php | 0 .../form_test/{lib/Drupal/form_test => src}/FormTestAutocompleteForm.php | 0 .../form_test/{lib/Drupal/form_test => src}/FormTestControllerObject.php | 0 .../modules/form_test/{lib/Drupal/form_test => src}/FormTestObject.php | 0 .../form_test/{lib/Drupal/form_test => src}/FormTestServiceObject.php | 0 .../{lib/Drupal/form_test => src}/Plugin/Block/RedirectFormBlock.php | 0 .../form_test/{lib/Drupal/form_test => src}/SystemConfigFormTestForm.php | 0 .../{lib/Drupal/image_test => src}/Plugin/ImageToolkit/BrokenToolkit.php | 0 .../{lib/Drupal/image_test => src}/Plugin/ImageToolkit/TestToolkit.php | 0 .../{lib/Drupal/menu_test => src}/Controller/MenuTestController.php | 0 .../menu_test => src}/EventSubscriber/MaintenanceModeSubscriber.php | 0 .../{lib/Drupal/menu_test => src}/Plugin/Derivative/LocalTaskTest.php | 0 .../Drupal/menu_test => src}/Plugin/Menu/LocalAction/TestLocalAction.php | 0 .../Drupal/menu_test => src}/Plugin/Menu/LocalAction/TestLocalAction4.php | 0 .../menu_test => src}/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php | 0 .../modules/menu_test/{lib/Drupal/menu_test => src}/TestControllers.php | 0 .../menu_test/{lib/Drupal/menu_test => src}/Theme/TestThemeNegotiator.php | 0 .../{lib/Drupal/module_autoload_test => src}/SomeClass.php | 0 .../{lib/Drupal/module_test => src}/Controller/ModuleTestController.php | 0 .../{lib/Drupal/paramconverter_test => src}/TestControllers.php | 0 .../plugin_test/{lib/Drupal/plugin_test => src}/Controller/PluginTest.php | 0 .../{lib/Drupal/plugin_test => src}/CustomDirectoryExample1.php | 0 .../{lib/Drupal/plugin_test => src}/CustomDirectoryExample2.php | 0 .../Drupal/plugin_test => src}/Plugin/AlterDecoratorTestPluginManager.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/Annotation/PluginExample.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/CachedMockBlockManager.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/DefaultsTestPluginManager.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/MockBlockManager.php | 0 .../plugin_test/{lib/Drupal/plugin_test => src}/Plugin/TestPluginBag.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/TestPluginManager.php | 0 .../plugin_test => src}/Plugin/plugin_test/custom_annotation/Example1.php | 0 .../plugin_test => src}/Plugin/plugin_test/custom_annotation/Example2.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Apple.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Banana.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Cherry.php | 0 .../plugin_test => src}/Plugin/plugin_test/fruit/NonAnnotatedClass.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Orange.php | 0 .../{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/README.txt | 0 .../Plugin/plugin_test/mock_block/MockComplexContextBlock.php | 0 .../plugin_test => src}/Plugin/plugin_test/mock_block/MockLayoutBlock.php | 0 .../Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php | 0 .../plugin_test => src}/Plugin/plugin_test/mock_block/MockMenuBlock.php | 0 .../Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php | 0 .../plugin_test => src}/Plugin/plugin_test/mock_block/MockTestBlock.php | 0 .../Plugin/plugin_test/mock_block/MockUserLoginBlock.php | 0 .../Plugin/plugin_test/mock_block/MockUserNameBlock.php | 0 .../Plugin/plugin_test/mock_block/TypedDataStringBlock.php | 0 .../{lib/Drupal/router_test => src}/Access/DefinedTestAccessCheck.php | 0 .../{lib/Drupal/router_test => src}/Access/TestAccessCheck.php | 0 .../{lib/Drupal/router_test => src}/RouteTestSubscriber.php | 0 .../{lib/Drupal/router_test => src}/RouterTestServiceProvider.php | 0 .../router_test_directory/{lib/Drupal/router_test => src}/TestContent.php | 0 .../{lib/Drupal/router_test => src}/TestControllers.php | 0 .../service_provider_test => src}/ServiceProviderTestServiceProvider.php | 0 .../{lib/Drupal/service_provider_test => src}/TestClass.php | 0 .../{lib/Drupal/service_provider_test => src}/TestFileUsage.php | 0 .../{lib/Drupal/session_test => src}/Controller/SessionTestController.php | 0 .../Drupal/session_test => src}/EventSubscriber/SessionTestSubscriber.php | 0 .../{lib/Drupal/session_test => src}/Form/SessionTestForm.php | 0 .../system_mail_failure_test => src}/Plugin/Mail/TestPhpMailFailure.php | 0 .../system_module_test => src}/EventSubscriber/HtmlPageSubscriber.php | 0 .../system_test => src}/Controller/PageCacheAcceptHeaderController.php | 0 .../{lib/Drupal/system_test => src}/Controller/SystemTestController.php | 0 .../system_test/{lib/Drupal/system_test => src}/MockFileTransfer.php | 0 .../test_page_test/{lib/Drupal/test_page_test => src}/Controller/Test.php | 0 .../Drupal/test_page_test => src}/Controller/TestPageTestController.php | 0 .../Drupal/theme_test => src}/EventSubscriber/ThemeTestSubscriber.php | 0 .../{lib/Drupal/theme_test => src}/Theme/CustomThemeNegotiator.php | 0 .../{lib/Drupal/theme_test => src}/Theme/HighPriorityThemeNegotiator.php | 0 .../theme_test/{lib/Drupal/theme_test => src}/ThemeTestController.php | 0 .../Drupal/twig_extension_test => src}/TwigExtension/TestExtension.php | 0 .../Drupal/twig_extension_test => src}/TwigExtensionTestController.php | 0 .../{lib/Drupal/twig_theme_test => src}/TwigThemeTestController.php | 0 .../Drupal/url_alter_test => src}/Controller/URLAlterTestController.php | 0 .../url_alter_test/{lib/Drupal/url_alter_test => src}/PathProcessor.php | 0 .../{lib/Drupal/url_alter_test => src}/PathProcessorTest.php | 0 .../system/Tests => src}/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php | 0 .../{Drupal/system/Tests => src}/Controller/SystemControllerTest.php | 0 .../system/Tests => src}/Transliteration/MachineNameControllerTest.php | 0 .../tests/themes/test_theme/{lib/Drupal/test_theme => src}/ThemeClass.php | 0 .../{lib/Drupal/taxonomy => src}/Controller/TaxonomyController.php | 0 .../Drupal/taxonomy => src}/Controller/TermAutocompleteController.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Entity/Term.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Entity/Vocabulary.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/OverviewTerms.php | 0 .../modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/TermDeleteForm.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Form/VocabularyDeleteForm.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Form/VocabularyResetForm.php | 0 .../Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php | 0 .../Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/LinkFormatter.php | 0 .../taxonomy => src}/Plugin/Field/FieldFormatter/PlainFormatter.php | 0 .../taxonomy => src}/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php | 0 .../Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php | 0 .../Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php | 0 .../taxonomy => src}/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php | 0 .../Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php | 0 .../Plugin/Validation/Constraint/TermParentConstraint.php | 0 .../Plugin/Validation/Constraint/TermParentConstraintValidator.php | 0 .../taxonomy => src}/Plugin/entity_reference/selection/TermSelection.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument/IndexTid.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument/IndexTidDepth.php | 0 .../taxonomy => src}/Plugin/views/argument/IndexTidDepthModifier.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument/Taxonomy.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument/VocabularyVid.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument_default/Tid.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/argument_validator/Term.php | 0 .../Drupal/taxonomy => src}/Plugin/views/argument_validator/TermName.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/Language.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/LinkEdit.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/Taxonomy.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/field/TaxonomyIndexTid.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/filter/TaxonomyIndexTid.php | 0 .../Drupal/taxonomy => src}/Plugin/views/filter/TaxonomyIndexTidDepth.php | 0 .../Drupal/taxonomy => src}/Plugin/views/relationship/NodeTermData.php | 0 .../{lib/Drupal/taxonomy => src}/Plugin/views/wizard/TaxonomyTerm.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/TermAccessController.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/TermBreadcrumbBuilder.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermForm.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermInterface.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermStorage.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/TermStorageInterface.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/TermTranslationHandler.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermViewBuilder.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/EfqTest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/LegacyTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/LoadMultipleTest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/RssTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyImageTest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/TaxonomyTermIndentationTest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/TaxonomyTermReferenceItemTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyTestBase.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermCacheTagsTest.php | 0 .../Drupal/taxonomy => src}/Tests/TermFieldMultipleVocabularyTest.php | 0 .../modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermFieldTest.php | 0 .../modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermIndexTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermLanguageTest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermTranslationUITest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermUnitTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermValidationTest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/ThemeTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/TokenReplaceTest.php | 0 .../Drupal/taxonomy => src}/Tests/Views/RelationshipNodeTermDataTest.php | 0 .../taxonomy => src}/Tests/Views/RelationshipRepresentativeNode.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyIndexTidUiTest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyParentUITest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyTestBase.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyCrudTest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/VocabularyLanguageTest.php | 0 .../{lib/Drupal/taxonomy => src}/Tests/VocabularyPermissionsTest.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyUiTest.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyForm.php | 0 .../modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyInterface.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/VocabularyListBuilder.php | 0 core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyStorage.php | 0 .../taxonomy/{lib/Drupal/taxonomy => src}/VocabularyStorageInterface.php | 0 .../tests/{Drupal/taxonomy/Tests => src}/Menu/TaxonomyLocalTasksTest.php | 0 .../Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php | 0 .../Drupal/telephone => src}/Plugin/Field/FieldType/TelephoneItem.php | 0 .../telephone => src}/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php | 0 .../telephone/{lib/Drupal/telephone => src}/Tests/TelephoneFieldTest.php | 0 .../telephone/{lib/Drupal/telephone => src}/Tests/TelephoneItemTest.php | 0 .../text => src}/Plugin/Field/FieldFormatter/TextDefaultFormatter.php | 0 .../Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php | 0 .../text => src}/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php | 0 .../text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextItem.php | 0 .../text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextItemBase.php | 0 .../text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextLongItem.php | 0 .../Drupal/text => src}/Plugin/Field/FieldType/TextWithSummaryItem.php | 0 .../{lib/Drupal/text => src}/Plugin/Field/FieldWidget/TextareaWidget.php | 0 .../text => src}/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php | 0 .../{lib/Drupal/text => src}/Plugin/Field/FieldWidget/TextfieldWidget.php | 0 .../text/{lib/Drupal/text => src}/Tests/Formatter/TextPlainUnitTest.php | 0 core/modules/text/{lib/Drupal/text => src}/Tests/TextFieldTest.php | 0 core/modules/text/{lib/Drupal/text => src}/Tests/TextSummaryTest.php | 0 .../text/{lib/Drupal/text => src}/Tests/TextWithSummaryItemTest.php | 0 core/modules/text/{lib/Drupal/text => src}/TextProcessed.php | 0 .../toolbar/{lib/Drupal/toolbar => src}/Controller/ToolbarController.php | 0 .../toolbar/{lib/Drupal/toolbar => src}/Tests/ToolbarAdminMenuTest.php | 0 .../toolbar/{lib/Drupal/toolbar => src}/Tests/ToolbarHookToolbarTest.php | 0 .../{lib/Drupal/toolbar => src}/Tests/ToolbarMenuTranslationTest.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Annotation/Tip.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Entity/Tour.php | 0 .../tour/{lib/Drupal/tour => src}/Plugin/tour/tip/TipPluginText.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Tests/TourPluginTest.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTest.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTestBase.php | 0 core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTestBasic.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TipPluginBase.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TipPluginInterface.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TipPluginManager.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TipsBag.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TourInterface.php | 0 core/modules/tour/{lib/Drupal/tour => src}/TourViewBuilder.php | 0 core/modules/tour/tests/{Drupal/tour/Tests => src}/Entity/TourTest.php | 0 .../{lib/Drupal/tour_test => src}/Controller/TourTestController.php | 0 .../{lib/Drupal/tour_test => src}/Plugin/tour/tip/TipPluginImage.php | 0 .../{lib/Drupal/tracker => src}/Access/ViewOwnTrackerAccessCheck.php | 0 .../tracker/{lib/Drupal/tracker => src}/Controller/TrackerPage.php | 0 .../tracker/{lib/Drupal/tracker => src}/Controller/TrackerUserRecent.php | 0 .../tracker/{lib/Drupal/tracker => src}/Controller/TrackerUserTab.php | 0 .../tracker/{lib/Drupal/tracker => src}/Plugin/Menu/UserTrackerTab.php | 0 .../tracker/{lib/Drupal/tracker => src}/Plugin/views/argument/UserUid.php | 0 .../tracker/{lib/Drupal/tracker => src}/Plugin/views/filter/UserUid.php | 0 .../tracker/{lib/Drupal/tracker => src}/Tests/TrackerNodeAccessTest.php | 0 core/modules/tracker/{lib/Drupal/tracker => src}/Tests/TrackerTest.php | 0 .../tracker/{lib/Drupal/tracker => src}/Tests/Views/TrackerTestBase.php | 0 .../{lib/Drupal/tracker => src}/Tests/Views/TrackerUserUidTest.php | 0 .../update/{lib/Drupal/update => src}/Access/UpdateManagerAccessCheck.php | 0 .../update/{lib/Drupal/update => src}/Controller/UpdateController.php | 0 core/modules/update/{lib/Drupal/update => src}/Form/UpdateForm.php | 0 .../modules/update/{lib/Drupal/update => src}/Tests/UpdateContribTest.php | 0 core/modules/update/{lib/Drupal/update => src}/Tests/UpdateCoreTest.php | 0 core/modules/update/{lib/Drupal/update => src}/Tests/UpdateTestBase.php | 0 core/modules/update/{lib/Drupal/update => src}/Tests/UpdateUploadTest.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateFetcher.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateFetcherInterface.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateManager.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateManagerInterface.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateProcessor.php | 0 .../update/{lib/Drupal/update => src}/UpdateProcessorInterface.php | 0 core/modules/update/{lib/Drupal/update => src}/UpdateSettingsForm.php | 0 .../{lib/Drupal/update_test => src}/Controller/UpdateTestController.php | 0 .../update_test/{lib/Drupal/update_test => src}/MockFileTransfer.php | 0 .../update/tests/{Drupal/update/Tests => src}/UpdateFetcherTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Access/LoginStatusCheck.php | 0 .../user/{lib/Drupal/user => src}/Access/PermissionAccessCheck.php | 0 core/modules/user/{lib/Drupal/user => src}/Access/RegisterAccessCheck.php | 0 core/modules/user/{lib/Drupal/user => src}/Access/RoleAccessCheck.php | 0 core/modules/user/{lib/Drupal/user => src}/AccountForm.php | 0 core/modules/user/{lib/Drupal/user => src}/AccountSettingsForm.php | 0 core/modules/user/{lib/Drupal/user => src}/Cache/UserCacheContext.php | 0 .../modules/user/{lib/Drupal/user => src}/Cache/UserRolesCacheContext.php | 0 .../{lib/Drupal/user => src}/Controller/UserAutocompleteController.php | 0 core/modules/user/{lib/Drupal/user => src}/Controller/UserController.php | 0 core/modules/user/{lib/Drupal/user => src}/Entity/Role.php | 0 core/modules/user/{lib/Drupal/user => src}/Entity/User.php | 0 core/modules/user/{lib/Drupal/user => src}/EntityOwnerInterface.php | 0 .../Drupal/user => src}/EventSubscriber/MaintenanceModeSubscriber.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserCancelForm.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserForm.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserLoginForm.php | 0 .../user/{lib/Drupal/user => src}/Form/UserMultipleCancelConfirm.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserPasswordForm.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserPermissionsForm.php | 0 .../{lib/Drupal/user => src}/Form/UserPermissionsRoleSpecificForm.php | 0 core/modules/user/{lib/Drupal/user => src}/Form/UserRoleDelete.php | 0 core/modules/user/{lib/Drupal/user => src}/PermissionsHash.php | 0 core/modules/user/{lib/Drupal/user => src}/PermissionsHashInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/Action/AddRoleUser.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/Action/BlockUser.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/Action/CancelUser.php | 0 .../user/{lib/Drupal/user => src}/Plugin/Action/ChangeUserRoleBase.php | 0 .../user/{lib/Drupal/user => src}/Plugin/Action/RemoveRoleUser.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/Action/UnblockUser.php | 0 .../modules/user/{lib/Drupal/user => src}/Plugin/Block/UserLoginBlock.php | 0 .../user => src}/Plugin/LanguageNegotiation/LanguageNegotiationUser.php | 0 .../Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/Search/UserSearch.php | 0 .../Drupal/user => src}/Plugin/Validation/Constraint/UserMailUnique.php | 0 .../user => src}/Plugin/Validation/Constraint/UserNameConstraint.php | 0 .../Plugin/Validation/Constraint/UserNameConstraintValidator.php | 0 .../Drupal/user => src}/Plugin/Validation/Constraint/UserNameUnique.php | 0 .../user => src}/Plugin/Validation/Constraint/UserUniqueValidator.php | 0 .../user => src}/Plugin/entity_reference/selection/UserSelection.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/access/Permission.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/access/Role.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/argument/RolesRid.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument/Uid.php | 0 .../Drupal/user => src}/Plugin/views/argument_default/CurrentUser.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/argument_default/User.php | 0 .../{lib/Drupal/user => src}/Plugin/views/argument_validator/User.php | 0 .../{lib/Drupal/user => src}/Plugin/views/argument_validator/UserName.php | 0 .../modules/user/{lib/Drupal/user => src}/Plugin/views/field/Language.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Link.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/field/LinkCancel.php | 0 .../modules/user/{lib/Drupal/user => src}/Plugin/views/field/LinkEdit.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Mail.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Name.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/field/Permissions.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Roles.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/User.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/field/UserBulkForm.php | 0 .../modules/user/{lib/Drupal/user => src}/Plugin/views/field/UserData.php | 0 .../modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Current.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Name.php | 0 .../user/{lib/Drupal/user => src}/Plugin/views/filter/Permissions.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Roles.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/row/UserRow.php | 0 core/modules/user/{lib/Drupal/user => src}/Plugin/views/wizard/Users.php | 0 core/modules/user/{lib/Drupal/user => src}/ProfileForm.php | 0 core/modules/user/{lib/Drupal/user => src}/ProfileTranslationHandler.php | 0 core/modules/user/{lib/Drupal/user => src}/RegisterForm.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleAccessController.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleForm.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleListBuilder.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleStorage.php | 0 core/modules/user/{lib/Drupal/user => src}/RoleStorageInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/TempStore.php | 0 core/modules/user/{lib/Drupal/user => src}/TempStoreException.php | 0 core/modules/user/{lib/Drupal/user => src}/TempStoreFactory.php | 0 .../modules/user/{lib/Drupal/user => src}/Tests/TempStoreDatabaseTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserAccountFormFieldsTest.php | 0 .../modules/user/{lib/Drupal/user => src}/Tests/UserAccountLinksTests.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserActionConfigSchemaTest.php | 0 .../modules/user/{lib/Drupal/user => src}/Tests/UserAdminLanguageTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminListingTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserAdminSettingsFormTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserAutocompleteTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserBlocksTests.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserCacheTagsTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserCancelTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserCreateFailMailTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserCreateTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserDeleteTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserEditTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserEditedOwnAccountTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserEntityCallbacksTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserEntityReferenceTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserEntityTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserInstallTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserLanguageCreationTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserLanguageTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserLoginTest.php | 0 .../modules/user/{lib/Drupal/user => src}/Tests/UserPasswordResetTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserPermissionsTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserPictureTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserRegistrationTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserRoleAdminTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/UserRolesAssignmentTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserSaveTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserSearchTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserSignatureTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserTimeZoneTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserTokenReplaceTest.php | 0 .../modules/user/{lib/Drupal/user => src}/Tests/UserTranslationUITest.php | 0 .../Drupal/user => src}/Tests/UserValidateCurrentPassCustomFormTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/UserValidationTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/AccessPermissionTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessRoleTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/AccessRoleUITest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessTestBase.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/ArgumentDefaultTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/ArgumentValidateTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/Views/BulkFormTest.php | 0 .../{lib/Drupal/user => src}/Tests/Views/HandlerArgumentUserUidTest.php | 0 .../{lib/Drupal/user => src}/Tests/Views/HandlerFieldPermissionTest.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/HandlerFieldRoleTest.php | 0 .../{lib/Drupal/user => src}/Tests/Views/HandlerFieldUserNameTest.php | 0 .../{lib/Drupal/user => src}/Tests/Views/HandlerFilterPermissionTest.php | 0 .../{lib/Drupal/user => src}/Tests/Views/HandlerFilterUserNameTest.php | 0 .../Drupal/user => src}/Tests/Views/RelationshipRepresentativeNode.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/Views/UserDataTest.php | 0 core/modules/user/{lib/Drupal/user => src}/Tests/Views/UserTestBase.php | 0 .../user/{lib/Drupal/user => src}/Tests/Views/UserUnitTestBase.php | 0 core/modules/user/{lib/Drupal/user => src}/Theme/AdminNegotiator.php | 0 core/modules/user/{lib/Drupal/user => src}/UserAccessController.php | 0 core/modules/user/{lib/Drupal/user => src}/UserAuth.php | 0 core/modules/user/{lib/Drupal/user => src}/UserAuthInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/UserAutocomplete.php | 0 core/modules/user/{lib/Drupal/user => src}/UserData.php | 0 core/modules/user/{lib/Drupal/user => src}/UserDataInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/UserInterface.php | 0 core/modules/user/{lib/Drupal/user => src}/UserListBuilder.php | 0 core/modules/user/{lib/Drupal/user => src}/UserStorage.php | 0 core/modules/user/{lib/Drupal/user => src}/UserStorageInterface.php | 0 .../{lib/Drupal/user_form_test => src}/Form/TestCurrentPassword.php | 0 .../user/tests/{Drupal/user/Tests => src}/Menu/UserLocalTasksTest.php | 0 .../modules/user/tests/{Drupal/user/Tests => src}/PermissionsHashTest.php | 0 .../tests/{Drupal/user/Tests => src}/Plugin/Action/AddRoleUserTest.php | 0 .../tests/{Drupal/user/Tests => src}/Plugin/Action/RemoveRoleUserTest.php | 0 .../tests/{Drupal/user/Tests => src}/Plugin/Action/RoleUserTestBase.php | 0 .../user/tests/{Drupal/user/Tests => src}/Plugin/Core/Entity/UserTest.php | 0 .../{Drupal/user/Tests => src}/Plugin/views/field/UserBulkFormTest.php | 0 core/modules/user/tests/{Drupal/user/Tests => src}/TempStoreTest.php | 0 core/modules/user/tests/{Drupal/user/Tests => src}/UserAuthTest.php | 0 .../user/tests/{Drupal/user/Tests => src}/Views/Argument/RolesRidTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Ajax/HighlightCommand.php | 0 core/modules/views/{lib/Drupal/views => src}/Ajax/ReplaceTitleCommand.php | 0 core/modules/views/{lib/Drupal/views => src}/Ajax/ScrollTopCommand.php | 0 core/modules/views/{lib/Drupal/views => src}/Ajax/ShowButtonsCommand.php | 0 .../views/{lib/Drupal/views => src}/Ajax/TriggerPreviewCommand.php | 0 core/modules/views/{lib/Drupal/views => src}/Ajax/ViewAjaxResponse.php | 0 core/modules/views/{lib/Drupal/views => src}/Analyzer.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsAccess.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArea.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArgument.php | 0 .../views/{lib/Drupal/views => src}/Annotation/ViewsArgumentDefault.php | 0 .../views/{lib/Drupal/views => src}/Annotation/ViewsArgumentValidator.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsCache.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsDisplay.php | 0 .../views/{lib/Drupal/views => src}/Annotation/ViewsDisplayExtender.php | 0 .../views/{lib/Drupal/views => src}/Annotation/ViewsExposedForm.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsField.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsFilter.php | 0 .../{lib/Drupal/views => src}/Annotation/ViewsHandlerAnnotationBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsJoin.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsPager.php | 0 .../{lib/Drupal/views => src}/Annotation/ViewsPluginAnnotationBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsQuery.php | 0 .../views/{lib/Drupal/views => src}/Annotation/ViewsRelationship.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsRow.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsSort.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsStyle.php | 0 core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsWizard.php | 0 .../views/{lib/Drupal/views => src}/Controller/ViewAjaxController.php | 0 core/modules/views/{lib/Drupal/views => src}/DisplayBag.php | 0 .../{lib/Drupal/views => src}/Entity/Render/CurrentLanguageRenderer.php | 0 .../{lib/Drupal/views => src}/Entity/Render/DefaultLanguageRenderer.php | 0 .../views/{lib/Drupal/views => src}/Entity/Render/RendererBase.php | 0 .../Drupal/views => src}/Entity/Render/TranslationLanguageRenderer.php | 0 core/modules/views/{lib/Drupal/views => src}/Entity/View.php | 0 .../views/{lib/Drupal/views => src}/EventSubscriber/RouteSubscriber.php | 0 core/modules/views/{lib/Drupal/views => src}/ExposedFormCache.php | 0 core/modules/views/{lib/Drupal/views => src}/Form/ViewsExposedForm.php | 0 core/modules/views/{lib/Drupal/views => src}/Form/ViewsForm.php | 0 core/modules/views/{lib/Drupal/views => src}/Form/ViewsFormMainForm.php | 0 core/modules/views/{lib/Drupal/views => src}/ManyToOneHelper.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/Block/ViewsBlock.php | 0 .../views/{lib/Drupal/views => src}/Plugin/Block/ViewsBlockBase.php | 0 .../{lib/Drupal/views => src}/Plugin/Block/ViewsExposedFilterBlock.php | 0 .../{lib/Drupal/views => src}/Plugin/Derivative/DefaultWizardDeriver.php | 0 .../views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsBlock.php | 0 .../views => src}/Plugin/Derivative/ViewsEntityArgumentValidator.php | 0 .../views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsEntityRow.php | 0 .../Drupal/views => src}/Plugin/Derivative/ViewsExposedFilterBlock.php | 0 .../views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsLocalTask.php | 0 .../views/{lib/Drupal/views => src}/Plugin/ViewsHandlerManager.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/ViewsPluginManager.php | 0 .../views => src}/Plugin/entity_reference/selection/ViewsSelection.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/BrokenHandlerTrait.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/HandlerBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/PluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/PluginInterface.php | 0 .../{lib/Drupal/views => src}/Plugin/views/access/AccessPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/access/None.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/area/AreaPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Broken.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Entity.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/area/HTTPStatusCode.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/area/Messages.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Result.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Text.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/area/TextCustom.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Title.php | 0 .../Drupal/views => src}/Plugin/views/area/TokenizeAreaPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/View.php | 0 .../Drupal/views => src}/Plugin/views/argument/ArgumentPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Broken.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Date.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/DayDate.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Formula.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/FullDate.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument/GroupByNumeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/ManyToOne.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/MonthDate.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Null.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Numeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/String.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/WeekDate.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument/YearDate.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument/YearMonthDate.php | 0 .../Plugin/views/argument_default/ArgumentDefaultPluginBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument_default/Fixed.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/argument_default/Raw.php | 0 .../Plugin/views/argument_validator/ArgumentValidatorPluginBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument_validator/Entity.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument_validator/None.php | 0 .../{lib/Drupal/views => src}/Plugin/views/argument_validator/Numeric.php | 0 .../{lib/Drupal/views => src}/Plugin/views/cache/CachePluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/None.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/Tag.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/Time.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/display/Attachment.php | 0 .../{lib/Drupal/views => src}/Plugin/views/display/DefaultDisplay.php | 0 .../{lib/Drupal/views => src}/Plugin/views/display/DisplayPluginBase.php | 0 .../Drupal/views => src}/Plugin/views/display/DisplayRouterInterface.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/display/Embed.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/views/display/Feed.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/views/display/Page.php | 0 .../{lib/Drupal/views => src}/Plugin/views/display/PathPluginBase.php | 0 .../Plugin/views/display_extender/DefaultDisplayExtender.php | 0 .../Plugin/views/display_extender/DisplayExtenderPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/exposed_form/Basic.php | 0 .../views => src}/Plugin/views/exposed_form/ExposedFormPluginBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/exposed_form/InputRequired.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Boolean.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/views/field/Broken.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Counter.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/views/field/Custom.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Date.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Dropbutton.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/EntityLabel.php | 0 .../{lib/Drupal/views => src}/Plugin/views/field/FieldPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/FileSize.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Links.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/MachineName.php | 0 .../modules/views/{lib/Drupal/views => src}/Plugin/views/field/Markup.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Numeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/PrerenderList.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Serialized.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/field/TimeInterval.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Url.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Xss.php | 0 .../{lib/Drupal/views => src}/Plugin/views/filter/BooleanOperator.php | 0 .../Drupal/views => src}/Plugin/views/filter/BooleanOperatorString.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Broken.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Bundle.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Combine.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Date.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Equality.php | 0 .../{lib/Drupal/views => src}/Plugin/views/filter/FilterPluginBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/filter/GroupByNumeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/InOperator.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/ManyToOne.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Numeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/filter/String.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/join/JoinPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/join/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/join/Subquery.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Full.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Mini.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/None.php | 0 .../{lib/Drupal/views => src}/Plugin/views/pager/PagerPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Some.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/pager/SqlBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/query/QueryPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/query/Sql.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/relationship/Broken.php | 0 .../{lib/Drupal/views => src}/Plugin/views/relationship/GroupwiseMax.php | 0 .../views => src}/Plugin/views/relationship/RelationshipPluginBase.php | 0 .../{lib/Drupal/views => src}/Plugin/views/relationship/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/row/EntityRow.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/row/Fields.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/row/RowPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/row/RssFields.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Broken.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Date.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/sort/GroupByNumeric.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/sort/MenuHierarchy.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Random.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/sort/SortPluginBase.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/sort/Standard.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/style/DefaultStyle.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/style/DefaultSummary.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Grid.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/style/HtmlList.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/style/Mapping.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Rss.php | 0 .../{lib/Drupal/views => src}/Plugin/views/style/StylePluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Table.php | 0 .../{lib/Drupal/views => src}/Plugin/views/style/UnformattedSummary.php | 0 .../views/{lib/Drupal/views => src}/Plugin/views/wizard/Standard.php | 0 .../{lib/Drupal/views => src}/Plugin/views/wizard/WizardException.php | 0 .../{lib/Drupal/views => src}/Plugin/views/wizard/WizardInterface.php | 0 .../{lib/Drupal/views => src}/Plugin/views/wizard/WizardPluginBase.php | 0 core/modules/views/{lib/Drupal/views => src}/ResultRow.php | 0 .../views/{lib/Drupal/views => src}/Routing/ViewPageController.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/BasicTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/DefaultViewsTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Entity/FieldEntityTest.php | 0 .../{lib/Drupal/views => src}/Tests/Entity/FilterEntityBundleTest.php | 0 .../{lib/Drupal/views => src}/Tests/Entity/RowEntityRenderersTest.php | 0 .../{lib/Drupal/views => src}/Tests/Entity/ViewEntityDependenciesTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/GlossaryTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/AreaEntityTest.php | 0 .../{lib/Drupal/views => src}/Tests/Handler/AreaHTTPStatusCodeTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/AreaTextTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/AreaTitleTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/AreaViewTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/ArgumentDateTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/ArgumentNullTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/ArgumentStringTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldBooleanTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldCounterTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldCustomTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldDateTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldDropButtonTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldFileSizeTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldUnitTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldUrlTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldWebTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FieldXssTest.php | 0 .../views => src}/Tests/Handler/FilterBooleanOperatorStringTest.php | 0 .../{lib/Drupal/views => src}/Tests/Handler/FilterBooleanOperatorTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FilterCombineTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FilterDateTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FilterEqualityTest.php | 0 .../{lib/Drupal/views => src}/Tests/Handler/FilterInOperatorTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FilterNumericTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/FilterStringTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/HandlerAliasTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/HandlerAllTest.php | 0 .../modules/views/{lib/Drupal/views => src}/Tests/Handler/HandlerTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/HandlerTestBase.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/RelationshipTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/SortDateTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Handler/SortRandomTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Handler/SortTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ModuleTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/AccessTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/ArgumentDefaultTest.php | 0 .../{lib/Drupal/views => src}/Tests/Plugin/ArgumentValidatorTest.php | 0 .../{lib/Drupal/views => src}/Tests/Plugin/BlockDependenciesTest.php | 0 .../modules/views/{lib/Drupal/views => src}/Tests/Plugin/CacheTagTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/CacheTest.php | 0 .../{lib/Drupal/views => src}/Tests/Plugin/DisplayAttachmentTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/DisplayExtenderTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/DisplayFeedTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/DisplayPageTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/DisplayPageWebTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/DisplayUnitTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/ExposedFormTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/FilterTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/JoinTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/MiniPagerTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/PagerTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/PluginTestBase.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/PluginUnitTestBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/QueryTest.php | 0 .../{lib/Drupal/views => src}/Tests/Plugin/RelationshipJoinTestBase.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/RowEntityTest.php | 0 .../modules/views/{lib/Drupal/views => src}/Tests/Plugin/SqlQueryTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleGridTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleMappingTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleTableTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleTableUnitTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleTestBase.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/StyleUnformattedTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Plugin/ViewsBlockTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/PluginInstanceTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/QueryGroupByTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/SearchIntegrationTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/SearchMultilingualTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/TestHelperPlugin.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/TokenReplaceTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewAjaxTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewElementTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewExecutableTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewRenderTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewStorageTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewTestBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewTestData.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewUnitTestBase.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewsHooksTest.php | 0 .../{lib/Drupal/views => src}/Tests/ViewsTaxonomyAutocompleteTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/ViewsTemplateTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/ViewsThemeIntegrationTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/BasicTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Wizard/ItemsPerPageTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/MenuTest.php | 0 core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/SortingTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Wizard/TaggedWithTest.php | 0 .../{lib/Drupal/views => src}/Tests/Wizard/WizardPluginBaseUnitTest.php | 0 .../views/{lib/Drupal/views => src}/Tests/Wizard/WizardTestBase.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewAccessController.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewExecutable.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewExecutableFactory.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewStorageInterface.php | 0 core/modules/views/{lib/Drupal/views => src}/Views.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewsAccessCheck.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewsData.php | 0 core/modules/views/{lib/Drupal/views => src}/ViewsDataHelper.php | 0 .../{lib/Drupal/views_test_data => src}/Form/ViewsTestDataElementForm.php | 0 .../Drupal/views_test_data => src}/Plugin/views/access/StaticTest.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/area/TestExample.php | 0 .../Plugin/views/argument_default/ArgumentDefaultTest.php | 0 .../views_test_data => src}/Plugin/views/display/DisplayNoAreaTest.php | 0 .../Drupal/views_test_data => src}/Plugin/views/display/DisplayTest.php | 0 .../Plugin/views/display_extender/DisplayExtenderTest.php | 0 .../Plugin/views/display_extender/DisplayExtenderTest2.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/field/FieldTest.php | 0 .../Drupal/views_test_data => src}/Plugin/views/filter/FilterTest.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/join/JoinTest.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/query/QueryTest.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/row/RowTest.php | 0 .../Drupal/views_test_data => src}/Plugin/views/style/MappingTest.php | 0 .../views_test_data => src}/Plugin/views/style/StyleTemplateTest.php | 0 .../{lib/Drupal/views_test_data => src}/Plugin/views/style/StyleTest.php | 0 .../{Drupal/views/Tests => src}/Controller/ViewAjaxControllerTest.php | 0 core/modules/views/tests/{Drupal/views/Tests => src}/Entity/ViewTest.php | 0 .../{Drupal/views/Tests => src}/EventSubscriber/RouteSubscriberTest.php | 0 .../tests/{Drupal/views/Tests => src}/Plugin/Block/ViewsBlockTest.php | 0 .../{Drupal/views/Tests => src}/Plugin/Derivative/ViewsLocalTaskTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/Plugin/area/MessagesTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/Plugin/area/ResultTest.php | 0 .../tests/{Drupal/views/Tests => src}/Plugin/argument_default/RawTest.php | 0 .../{Drupal/views/Tests => src}/Plugin/argument_validator/EntityTest.php | 0 .../{Drupal/views/Tests => src}/Plugin/display/PathPluginBaseTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/Plugin/field/CounterTest.php | 0 .../{Drupal/views/Tests => src}/Plugin/pager/PagerPluginBaseTest.php | 0 core/modules/views/tests/{Drupal/views/Tests => src}/PluginBaseTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/PluginTypeListTest.php | 0 .../tests/{Drupal/views/Tests => src}/Routing/ViewPageControllerTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/ViewExecutableUnitTest.php | 0 .../views/tests/{Drupal/views/Tests => src}/ViewsDataHelperTest.php | 0 core/modules/views/tests/{Drupal/views/Tests => src}/ViewsDataTest.php | 0 core/modules/views/tests/{Drupal/views/Tests => src}/ViewsTest.php | 0 .../{lib/Drupal/views_ui => src}/Controller/ViewsUIController.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/AdvancedSettingsForm.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/AddHandler.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Analyze.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandler.php | 0 .../{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandlerExtra.php | 0 .../{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandlerGroup.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Display.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/EditDetails.php | 0 .../modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Rearrange.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/RearrangeFilter.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ReorderDisplays.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ViewsFormBase.php | 0 .../{lib/Drupal/views_ui => src}/Form/Ajax/ViewsFormInterface.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Form/BasicSettingsForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/BreakLockForm.php | 0 .../{lib/Drupal/views_ui => src}/ParamConverter/ViewUIConverter.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/AnalyzeTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/CachedDataUITest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/CustomBooleanTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/DefaultViewsTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayAttachmentTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayExtenderUITest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayPath.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayTestCRUD.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/ExposedFormUITest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/FieldUITest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/FilterBooleanWebTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/GroupByTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/HandlerTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/OverrideDisplaysTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/PreviewTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/QueryTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/RearrangeFieldsTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/RedirectTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/RowUITest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/SettingsTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/StorageTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/StyleUITest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/TagTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/UITestBase.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/ViewEditTest.php | 0 .../views_ui/{lib/Drupal/views_ui => src}/Tests/ViewsUITourTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/WizardTest.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewAddForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewCloneForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewDeleteForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewEditForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewFormBase.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewListBuilder.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewPreviewForm.php | 0 core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewUI.php | 0 .../{Drupal/views_ui/Tests => src}/Form/Ajax/RearrangeFilterTest.php | 0 .../views_ui/tests/{Drupal/views_ui/Tests => src}/ViewListBuilderTest.php | 0 .../views_ui/tests/{Drupal/views_ui/Tests => src}/ViewUIObjectTest.php | 0 .../xmlrpc/{lib/Drupal/xmlrpc => src}/Controller/XmlrpcController.php | 0 core/modules/xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcBasicTest.php | 0 .../xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcMessagesTest.php | 0 .../xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcValidatorTest.php | 0 core/profiles/minimal/{lib/Drupal/minimal => src}/Tests/MinimalTest.php | 0 .../profiles/standard/{lib/Drupal/standard => src}/Tests/StandardTest.php | 0 .../Tests/SystemListingCompatibleTest.php | 0 2878 files changed, 0 insertions(+), 0 deletions(-) rename core/modules/action/{lib/Drupal/action => src}/ActionAddForm.php (100%) rename core/modules/action/{lib/Drupal/action => src}/ActionEditForm.php (100%) rename core/modules/action/{lib/Drupal/action => src}/ActionFormBase.php (100%) rename core/modules/action/{lib/Drupal/action => src}/ActionListBuilder.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Form/ActionAdminManageForm.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Form/ActionDeleteForm.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Plugin/Action/EmailAction.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Plugin/Action/GotoAction.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Plugin/Action/MessageAction.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Tests/ActionUninstallTest.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Tests/BulkFormTest.php (100%) rename core/modules/action/{lib/Drupal/action => src}/Tests/ConfigurationTest.php (100%) rename core/modules/action/tests/{Drupal/action/Tests => src}/Menu/ActionLocalTasksTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Annotation/AggregatorFetcher.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Annotation/AggregatorParser.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Annotation/AggregatorProcessor.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Controller/AggregatorController.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Entity/Feed.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Entity/Item.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedForm.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedStorage.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedStorageInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/FeedViewBuilder.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Form/FeedDeleteForm.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Form/FeedItemsDeleteForm.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Form/OpmlFeedAdd.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Form/SettingsForm.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemStorage.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemStorageInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemViewBuilder.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemsImporter.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/ItemsImporterInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/AggregatorPluginManager.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/AggregatorPluginSettingsBase.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/Block/AggregatorFeedBlock.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/FetcherInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/ParserInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/ProcessorInterface.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/aggregator/fetcher/DefaultFetcher.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/aggregator/parser/DefaultParser.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/aggregator/processor/DefaultProcessor.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/views/argument/Fid.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/views/argument/Iid.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/views/field/TitleLink.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/views/field/Xss.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Plugin/views/row/Rss.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/AddFeedTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/AggregatorConfigurationTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/AggregatorCronTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/AggregatorRenderingTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/AggregatorTestBase.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/DeleteFeedItemTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/DeleteFeedTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/FeedFetcherPluginTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/FeedLanguageTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/FeedParserTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/FeedProcessorPluginTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/ImportOpmlTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/UpdateFeedItemTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/UpdateFeedTest.php (100%) rename core/modules/aggregator/{lib/Drupal/aggregator => src}/Tests/Views/IntegrationTest.php (100%) rename core/modules/aggregator/tests/modules/aggregator_test/{lib/Drupal/aggregator_test => src}/Controller/AggregatorTestRssController.php (100%) rename core/modules/aggregator/tests/modules/aggregator_test/{lib/Drupal/aggregator_test => src}/Plugin/aggregator/fetcher/TestFetcher.php (100%) rename core/modules/aggregator/tests/modules/aggregator_test/{lib/Drupal/aggregator_test => src}/Plugin/aggregator/parser/TestParser.php (100%) rename core/modules/aggregator/tests/modules/aggregator_test/{lib/Drupal/aggregator_test => src}/Plugin/aggregator/processor/TestProcessor.php (100%) rename core/modules/aggregator/tests/{Drupal/aggregator/Tests => src}/Menu/AggregatorLocalTasksTest.php (100%) rename core/modules/aggregator/tests/{Drupal/aggregator/Tests => src}/Plugin/AggregatorPluginSettingsBaseTest.php (100%) rename core/modules/ban/{lib/Drupal/ban => src}/BanIpManager.php (100%) rename core/modules/ban/{lib/Drupal/ban => src}/BanIpManagerInterface.php (100%) mode change 100755 => 100644 rename core/modules/ban/{lib/Drupal/ban => src}/EventSubscriber/BanSubscriber.php (100%) rename core/modules/ban/{lib/Drupal/ban => src}/Form/BanAdmin.php (100%) rename core/modules/ban/{lib/Drupal/ban => src}/Form/BanDelete.php (100%) rename core/modules/ban/{lib/Drupal/ban => src}/Tests/IpAddressBlockingTest.php (100%) rename core/modules/basic_auth/{lib/Drupal/basic_auth => src}/Authentication/Provider/BasicAuth.php (100%) rename core/modules/basic_auth/{lib/Drupal/basic_auth => src}/Tests/Authentication/BasicAuthTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Controller/CustomBlockController.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockAccessController.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockForm.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockInterface.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockListBuilder.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockTranslationHandler.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockTypeForm.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockTypeInterface.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockTypeListBuilder.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/CustomBlockViewBuilder.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Entity/CustomBlock.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Entity/CustomBlockType.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Form/CustomBlockDeleteForm.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Form/CustomBlockTypeDeleteForm.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Plugin/Block/CustomBlockBlock.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Plugin/Derivative/CustomBlock.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockCacheTagsTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockCreationTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockFieldTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockListTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockPageViewTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockRevisionsTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockSaveTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockTestBase.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockTranslationUITest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/CustomBlockTypeTest.php (100%) rename core/modules/block/custom_block/{lib/Drupal/custom_block => src}/Tests/PageEditTest.php (100%) rename core/modules/block/custom_block/tests/{Drupal/custom_block/Tests => src}/Menu/CustomBlockLocalTasksTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Annotation/Block.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockAccessController.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockBase.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockForm.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockInterface.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockListBuilder.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockManager.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockManagerInterface.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockPluginBag.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockPluginInterface.php (100%) rename core/modules/block/{lib/Drupal/block => src}/BlockViewBuilder.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Controller/BlockAddController.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Controller/BlockController.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Controller/BlockListController.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Controller/CategoryAutocompleteController.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Entity/Block.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Form/BlockDeleteForm.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Plugin/Derivative/ThemeLocalTask.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Plugin/views/display/Block.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockAdminThemeTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockCacheTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockHiddenRegionTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockHookOperationTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockHtmlTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockInterfaceTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockInvalidRegionTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockLanguageCacheTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockLanguageTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockPreprocessUnitTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockRenderOrderTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockStorageUnitTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockSystemBrandingTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockTemplateSuggestionsUnitTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockTestBase.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockTitleXSSTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockUiTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/BlockViewBuilderTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/NewDefaultThemeBlocksTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/NonDefaultBlockAdminTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Tests/Views/DisplayBlockTest.php (100%) rename core/modules/block/{lib/Drupal/block => src}/Theme/AdminDemoNegotiator.php (100%) rename core/modules/block/tests/modules/block_test/{lib/Drupal/block_test => src}/Plugin/Block/TestBlockInstantiation.php (100%) rename core/modules/block/tests/modules/block_test/{lib/Drupal/block_test => src}/Plugin/Block/TestCacheBlock.php (100%) rename core/modules/block/tests/modules/block_test/{lib/Drupal/block_test => src}/Plugin/Block/TestHtmlBlock.php (100%) rename core/modules/block/tests/modules/block_test/{lib/Drupal/block_test => src}/Plugin/Block/TestXSSTitleBlock.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/BlockBaseTest.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/BlockConfigEntityUnitTest.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/BlockFormTest.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/CategoryAutocompleteTest.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/Menu/BlockLocalTasksTest.php (100%) rename core/modules/block/tests/{Drupal/block/Tests => src}/Plugin/views/display/BlockTest.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Access/BookNodeIsRemovableAccessCheck.php (100%) rename core/modules/book/{lib/Drupal/book => src}/BookBreadcrumbBuilder.php (100%) rename core/modules/book/{lib/Drupal/book => src}/BookExport.php (100%) rename core/modules/book/{lib/Drupal/book => src}/BookManager.php (100%) rename core/modules/book/{lib/Drupal/book => src}/BookManagerInterface.php (100%) rename core/modules/book/{lib/Drupal/book => src}/BookOutline.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Controller/BookController.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Form/BookAdminEditForm.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Form/BookOutlineForm.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Form/BookRemoveForm.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Form/BookSettingsForm.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Plugin/Block/BookNavigationBlock.php (100%) rename core/modules/book/{lib/Drupal/book => src}/Tests/BookTest.php (100%) rename core/modules/book/tests/{Drupal/book/Tests => src}/BookManagerTest.php (100%) rename core/modules/book/tests/{Drupal/book/Tests => src}/Menu/BookLocalTasksTest.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/BreakpointGroupInterface.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/BreakpointInterface.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Entity/Breakpoint.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Entity/BreakpointGroup.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/InvalidBreakpointException.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/InvalidBreakpointMediaQueryException.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/InvalidBreakpointNameException.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/InvalidBreakpointSourceException.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/InvalidBreakpointSourceTypeException.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointAPITest.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointCRUDTest.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupAPITest.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupCRUDTest.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointGroupTestBase.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointTestBase.php (100%) rename core/modules/breakpoint/{lib/Drupal/breakpoint => src}/Tests/BreakpointThemeTest.php (100%) rename core/modules/breakpoint/tests/{Drupal/breakpoint/Tests => src}/BreakpointConfigEntityUnitTest.php (100%) rename core/modules/breakpoint/tests/{Drupal/breakpoint/Tests => src}/BreakpointGroupConfigEntityUnitTest.php (100%) rename core/modules/breakpoint/tests/{Drupal/breakpoint/Tests => src}/BreakpointMediaQueryTest.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Annotation/CKEditorPlugin.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginBase.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginButtonsInterface.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginConfigurableInterface.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginContextualInterface.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginInterface.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/CKEditorPluginManager.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalImage.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalImageCaption.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/DrupalLink.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/Internal.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/CKEditorPlugin/StylesCombo.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Plugin/Editor/CKEditor.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorAdminTest.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorLoadingTest.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorPluginManagerTest.php (100%) rename core/modules/ckeditor/{lib/Drupal/ckeditor => src}/Tests/CKEditorTest.php (100%) rename core/modules/ckeditor/tests/modules/{lib/Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/Llama.php (100%) rename core/modules/ckeditor/tests/modules/{lib/Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/LlamaButton.php (100%) rename core/modules/ckeditor/tests/modules/{lib/Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/LlamaContextual.php (100%) rename core/modules/ckeditor/tests/modules/{lib/Drupal/ckeditor_test => src}/Plugin/CKEditorPlugin/LlamaContextualAndButton.php (100%) rename core/modules/color/{lib/Drupal/color => src}/Tests/ColorConfigSchemaTest.php (100%) rename core/modules/color/{lib/Drupal/color => src}/Tests/ColorTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentAccessController.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentBreadcrumbBuilder.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentFieldNameItem.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentFieldNameValue.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentForm.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentInterface.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentManager.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentManagerInterface.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentStatistics.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentStatisticsInterface.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentStorage.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentStorageInterface.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentTranslationHandler.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/CommentViewBuilder.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Controller/AdminController.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Controller/CommentController.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Entity/Comment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Form/CommentAdminOverview.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Form/ConfirmDeleteMultiple.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Form/DeleteForm.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Action/PublishComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Action/SaveComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Action/UnpublishByKeywordComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Action/UnpublishComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Field/FieldType/CommentItem.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Field/FieldType/CommentItemInterface.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Field/FieldWidget/CommentWidget.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Menu/LocalTask/UnapprovedComments.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Validation/Constraint/CommentNameConstraint.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/Validation/Constraint/CommentNameConstraintValidator.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/entity_reference/selection/CommentSelection.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/argument/UserUid.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/Comment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/Depth.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/EntityLink.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/LastTimestamp.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/Link.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkApprove.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkDelete.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkEdit.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/LinkReply.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/NodeComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/NodeNewComments.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/StatisticsLastCommentName.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/StatisticsLastUpdated.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/field/Username.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/filter/NodeComment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/filter/StatisticsLastUpdated.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/filter/UserUid.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/row/CommentRow.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/row/Rss.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/sort/StatisticsLastCommentName.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/sort/StatisticsLastUpdated.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/sort/Thread.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Plugin/views/wizard/Comment.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Routing/CommentBundleEnhancer.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentActionsTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentAdminTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentAnonymousTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentBlockTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentBookTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentCSSTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentCacheTagsTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentDefaultFormatterCacheTagsTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentFieldsTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentInterfaceTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentLanguageTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentLinksAlterTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentLinksTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentNewIndicatorTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentNodeAccessTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentNodeChangesTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentNonNodeTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentPagerTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentPreviewTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentRssTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentStatisticsTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentTestBase.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentThreadingTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentTokenReplaceTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentTranslationUITest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentUninstallTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/CommentValidationTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/ArgumentUserUIDTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/CommentRowTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/CommentTestBase.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/DefaultViewRecentComments.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/FilterUserUIDTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/RowRssTest.php (100%) rename core/modules/comment/{lib/Drupal/comment => src}/Tests/Views/WizardTest.php (100%) rename core/modules/comment/tests/{Drupal/comment/Tests => src}/CommentStatisticsUnitTest.php (100%) rename core/modules/comment/tests/{Drupal/comment/Tests => src}/Entity/CommentLockTest.php (100%) rename core/modules/comment/tests/{Drupal/comment/Tests => src}/Routing/CommentBundleEnhancerTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Controller/ConfigController.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Form/ConfigExportForm.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Form/ConfigImportForm.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Form/ConfigSingleExportForm.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Form/ConfigSingleImportForm.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Form/ConfigSync.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigCRUDTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigDependencyTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigDiffTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityFormOverrideTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityListTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityStatusTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityStatusUITest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityStorageTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEntityUnitTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigEventsTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigExportImportUITest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigExportUITest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigFileContentTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigFormOverrideTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImportAllTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImportRecreateTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImportRenameValidationTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImportUITest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImportUploadTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigImporterTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigInstallTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigInstallWebTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigLanguageOverrideTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigLanguageOverrideWebTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigModuleOverridesTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigOtherModuleTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigOverrideTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigOverridesPriorityTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigSchemaTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigSchemaTestBase.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigSingleImportExportTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/ConfigSnapshotTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/DefaultConfigTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/Storage/CachedStorageTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/Storage/ConfigStorageTestBase.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/Storage/DatabaseStorageTest.php (100%) rename core/modules/config/{lib/Drupal/config => src}/Tests/Storage/FileStorageTest.php (100%) rename core/modules/config/tests/config_collection_install_test/{lib/Drupal/config_collection_install_test => src}/EventSubscriber.php (100%) rename core/modules/config/tests/config_events_test/{lib/Drupal/config_events_test => src}/EventSubscriber.php (100%) rename core/modules/config/tests/config_import_test/{lib/Drupal/config_import_test => src}/EventSubscriber.php (100%) rename core/modules/config/tests/config_override/{lib/Drupal/config_override => src}/ConfigOverrider.php (100%) rename core/modules/config/tests/config_override/{lib/Drupal/config_override => src}/ConfigOverriderLowPriority.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestAccessController.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestController.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestForm.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestInterface.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestListBuilder.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/ConfigTestStorage.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/Entity/ConfigQueryTest.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/Entity/ConfigTest.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/Form/ConfigTestDeleteForm.php (100%) rename core/modules/config/tests/config_test/{lib/Drupal/config_test => src}/TestInstallStorage.php (100%) rename core/modules/config/tests/{Drupal/config/Tests => src}/Menu/ConfigLocalTasksTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Access/ConfigTranslationFormAccess.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Access/ConfigTranslationOverviewAccess.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigEntityMapper.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigFieldInstanceMapper.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigMapperInterface.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigMapperManager.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigMapperManagerInterface.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/ConfigNamesMapper.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationBlockListBuilder.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationController.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationEntityListBuilder.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationEntityListBuilderInterface.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationFieldInstanceListBuilder.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationListController.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Controller/ConfigTranslationMapperList.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Form/ConfigTranslationAddForm.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Form/ConfigTranslationDeleteForm.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Form/ConfigTranslationEditForm.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Form/ConfigTranslationFormBase.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/FormElement/DateFormat.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/FormElement/ElementInterface.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/FormElement/Textarea.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/FormElement/Textfield.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Plugin/Derivative/ConfigTranslationContextualLinks.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Plugin/Derivative/ConfigTranslationLocalTasks.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Routing/RouteSubscriber.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationFormTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationListUiTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationOverviewTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationUiTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationUiThemeTest.php (100%) rename core/modules/config_translation/{lib/Drupal/config_translation => src}/Tests/ConfigTranslationViewListUiTest.php (100%) rename core/modules/config_translation/tests/{Drupal/config_translation/Tests => src}/ConfigEntityMapperTest.php (100%) rename core/modules/config_translation/tests/{Drupal/config_translation/Tests => src}/ConfigMapperManagerTest.php (100%) rename core/modules/config_translation/tests/{Drupal/config_translation/Tests => src}/ConfigNamesMapperTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Access/ContactPageAccess.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/CategoryAccessController.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/CategoryForm.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/CategoryInterface.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/CategoryListBuilder.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Controller/ContactController.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Entity/Category.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Entity/Message.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Form/CategoryDeleteForm.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/MessageForm.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/MessageInterface.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/MessageViewBuilder.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Plugin/views/field/ContactLink.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/ContactAuthenticatedUserTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/ContactPersonalTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/ContactSitewideTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/MessageEntityTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/Views/ContactFieldsTest.php (100%) rename core/modules/contact/{lib/Drupal/contact => src}/Tests/Views/ContactLinkTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Access/ContentTranslationManageAccessCheck.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Access/ContentTranslationOverviewAccess.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/ContentTranslationHandler.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/ContentTranslationHandlerInterface.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/ContentTranslationManager.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/ContentTranslationManagerInterface.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Controller/ContentTranslationController.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/FieldTranslationSynchronizer.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/FieldTranslationSynchronizerInterface.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Form/ContentTranslationDeleteForm.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Plugin/Derivative/ContentTranslationContextualLinks.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Plugin/Derivative/ContentTranslationLocalTasks.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Plugin/views/field/TranslationLink.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Routing/ContentTranslationRouteSubscriber.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTestTranslationUITest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationContextualLinksTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationSettingsTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationSyncImageTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationSyncUnitTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationTestBase.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationUITest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/ContentTranslationWorkflowsTest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/Views/ContentTranslationViewsUITest.php (100%) rename core/modules/content_translation/{lib/Drupal/content_translation => src}/Tests/Views/TranslationLinkTest.php (100%) rename core/modules/content_translation/tests/{Drupal/content_translation/Tests => src}/Menu/ContentTranslationLocalTasksTest.php (100%) rename core/modules/contextual/{lib/Drupal/contextual => src}/ContextualController.php (100%) rename core/modules/contextual/{lib/Drupal/contextual => src}/Plugin/views/field/ContextualLinks.php (100%) rename core/modules/contextual/{lib/Drupal/contextual => src}/Tests/ContextualDynamicContextTest.php (100%) rename core/modules/contextual/{lib/Drupal/contextual => src}/Tests/ContextualUnitTest.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/DateHelper.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/DateTimeComputed.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldType/DateTimeFieldItemList.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldType/DateTimeItem.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Tests/DateTimeFieldTest.php (100%) rename core/modules/datetime/{lib/Drupal/datetime => src}/Tests/DateTimeItemTest.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Controller/DbLogController.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Form/DblogClearLogForm.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Form/DblogFilterForm.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Plugin/views/field/DblogMessage.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Plugin/views/field/DblogOperations.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Plugin/views/wizard/Watchdog.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Tests/DbLogTest.php (100%) rename core/modules/dblog/{lib/Drupal/dblog => src}/Tests/Views/ViewsIntegrationTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Ajax/EditorDialogSave.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Ajax/GetUntransformedTextCommand.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Annotation/Editor.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/EditorController.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/EditorInterface.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/EditorXssFilter/Standard.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/EditorXssFilterInterface.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Entity/Editor.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Form/EditorImageDialog.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Form/EditorLinkDialog.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Plugin/EditorBase.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Plugin/EditorManager.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Plugin/EditorPluginInterface.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Plugin/InPlaceEditor/Editor.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorAdminTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorFileUsageTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorLoadingTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorManagerTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/EditorSecurityTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/QuickEditIntegrationLoadingTest.php (100%) rename core/modules/editor/{lib/Drupal/editor => src}/Tests/QuickEditIntegrationTest.php (100%) rename core/modules/editor/tests/modules/{lib/Drupal/editor_test => src}/EditorXssFilter/Insecure.php (100%) rename core/modules/editor/tests/modules/{lib/Drupal/editor_test => src}/Plugin/Editor/UnicornEditor.php (100%) rename core/modules/editor/tests/{Drupal/editor/Tests => src}/EditorConfigEntityUnitTest.php (100%) rename core/modules/editor/tests/{Drupal/editor/Tests => src}/EditorXssFilter/StandardTest.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Controller/EntityDisplayModeController.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityFormDisplay.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityFormMode.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityViewDisplay.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Entity/EntityViewMode.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayBase.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayModeBase.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayModeInterface.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityDisplayModeListBuilder.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityFormModeInterface.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityFormModeListBuilder.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/EntityViewModeInterface.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeAddForm.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeDeleteForm.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeEditForm.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Form/EntityDisplayModeFormBase.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Form/EntityFormModeAddForm.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Tests/EntityDisplayModeTest.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Tests/EntityDisplayTest.php (100%) rename core/modules/entity/{lib/Drupal/entity => src}/Tests/EntityFormDisplayTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Annotation/EntityReferenceSelection.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/ConfigurableEntityReferenceItem.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/EntityReferenceAutocomplete.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/EntityReferenceController.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Derivative/SelectionBase.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldWidget/AutocompleteTagsWidget.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldWidget/AutocompleteWidget.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Field/FieldWidget/AutocompleteWidgetBase.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Type/Selection/SelectionBroken.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Type/Selection/SelectionInterface.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/Type/SelectionPluginManager.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/entity_reference/selection/SelectionBase.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/views/display/EntityReference.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/views/row/EntityReference.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Plugin/views/style/EntityReference.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/RecursiveRenderingException.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceAdminTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceAutoCreateTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceAutocompleteTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceFieldDefaultValueTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceFieldTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceFormatterTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceIntegrationTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceItemTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceSelectionAccessTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/EntityReferenceSelectionSortTest.php (100%) rename core/modules/entity_reference/{lib/Drupal/entity_reference => src}/Tests/Views/SelectionTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/ConfigImporterFieldPurger.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Entity/FieldConfig.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Entity/FieldInstanceConfig.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Field.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldConfigInterface.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldConfigStorage.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldConfigUpdateForbiddenException.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldException.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldInfo.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldInstanceConfigAccessController.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldInstanceConfigInterface.php (100%) rename core/modules/field/{lib/Drupal/field => src}/FieldInstanceConfigStorage.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Plugin/views/argument/FieldList.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Plugin/views/argument/ListString.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Plugin/views/field/Field.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Plugin/views/filter/FieldList.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Plugin/views/relationship/EntityReverse.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/BulkDeleteTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/ConfigFieldDefinitionTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/CrudTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/DisplayApiTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Email/EmailFieldTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Email/EmailItemTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldAccessTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldAttachOtherTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldAttachStorageTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldEntityCountTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldHelpTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldImportChangeTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldImportCreateTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldImportDeleteTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldImportDeleteUninstallTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldImportDeleteUninstallUiTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldInfoTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldInstanceCrudTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldTestBase.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldUnitTestBase.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FieldValidationTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/FormTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/NestedFormTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Number/NumberFieldTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Number/NumberItemTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/ShapeItemTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/TestItemTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/TranslationTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/TranslationWebTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Views/ApiDataTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Views/FieldTestBase.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Views/FieldUITest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/Views/HandlerFieldFieldTest.php (100%) rename core/modules/field/{lib/Drupal/field => src}/Tests/reEnableModuleFieldTest.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Form/NestedEntityTestForm.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldType/HiddenTestItem.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldType/ShapeItem.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldType/TestItem.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldWidget/TestFieldWidget.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php (100%) rename core/modules/field/tests/modules/field_test/{lib/Drupal/field_test => src}/Plugin/Validation/Constraint/TestFieldConstraint.php (100%) rename core/modules/field/tests/{Drupal/field/Tests => src}/FieldConfigEntityUnitTest.php (100%) rename core/modules/field/tests/{Drupal/field/Tests => src}/FieldInstanceConfigEntityUnitTest.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Access/FormModeAccessCheck.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Access/ViewModeAccessCheck.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/DisplayOverview.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/DisplayOverviewBase.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldConfigListBuilder.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldInstanceConfigListBuilder.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldOverview.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/FieldUI.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Form/FieldEditForm.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Form/FieldInstanceConfigDeleteForm.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Form/FieldInstanceEditForm.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/FormDisplayOverview.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/OverviewBase.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Plugin/Derivative/FieldUiLocalTask.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Routing/RouteSubscriber.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Tests/FieldUIRouteTest.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Tests/FieldUiTestBase.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Tests/ManageDisplayTest.php (100%) rename core/modules/field_ui/{lib/Drupal/field_ui => src}/Tests/ManageFieldsTest.php (100%) rename core/modules/field_ui/tests/modules/field_ui_test/{lib/Drupal/field_ui_test => src}/Entity/FieldUITestNoBundle.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Controller/FileWidgetAjaxController.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Entity/File.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileInterface.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileStorage.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileStorageInterface.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileUsage/DatabaseFileUsageBackend.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileUsage/FileUsageBase.php (100%) rename core/modules/file/{lib/Drupal/file => src}/FileUsage/FileUsageInterface.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldFormatter/FileFormatterBase.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldFormatter/GenericFileFormatter.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldFormatter/TableFormatter.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldFormatter/UrlPlainFormatter.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldType/FileFieldItemList.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldType/FileItem.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/Field/FieldWidget/FileWidget.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/entity_reference/selection/FileSelection.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/argument/Fid.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/Extension.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/File.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/FileMime.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/Status.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/field/Uri.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/filter/Status.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Plugin/views/wizard/File.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/CopyTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/DeleteTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/DownloadTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldDisplayTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldPathTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldRSSContentTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldRevisionTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldTestBase.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldValidateTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileFieldWidgetTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileItemTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileListingTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileManagedFileElementTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileManagedTestBase.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileManagedUnitTestBase.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FilePrivateTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/FileTokenReplaceTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/LoadTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/MoveTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/RemoteFileSaveUploadTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/SaveDataTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/SaveTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/SaveUploadTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/SpaceUsedTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/UsageTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/ValidateTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/ValidatorTest.php (100%) rename core/modules/file/{lib/Drupal/file => src}/Tests/Views/ExtensionViewsFieldTest.php (100%) rename core/modules/file/tests/file_module_test/{lib/Drupal/file_module_test => src}/Form/FileModuleTestForm.php (100%) rename core/modules/file/tests/file_test/{lib/Drupal/file_test => src}/DummyReadOnlyStreamWrapper.php (100%) rename core/modules/file/tests/file_test/{lib/Drupal/file_test => src}/DummyRemoteStreamWrapper.php (100%) rename core/modules/file/tests/file_test/{lib/Drupal/file_test => src}/DummyStreamWrapper.php (100%) rename core/modules/file/tests/file_test/{lib/Drupal/file_test => src}/Form/FileTestForm.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Annotation/Filter.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Controller/FilterController.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Entity/FilterFormat.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterBag.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatAccess.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatAddForm.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatEditForm.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatFormBase.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatInterface.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterFormatListBuilder.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/FilterPluginManager.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Form/FilterDisableForm.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/DataType/FilterFormat.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterAutoP.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterCaption.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtml.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlCorrector.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlEscape.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterHtmlImageSecure.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterNull.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/Filter/FilterUrl.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/FilterBase.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Plugin/FilterInterface.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterAPITest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterAdminTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterCrudTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterDefaultConfigTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterDefaultFormatTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterFormatAccessTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterHooksTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterHtmlImageSecureTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterNoFormatTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterSecurityTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterSettingsTest.php (100%) rename core/modules/filter/{lib/Drupal/filter => src}/Tests/FilterUnitTest.php (100%) rename core/modules/filter/tests/filter_test/{lib/Drupal/filter_test => src}/Plugin/Filter/FilterTestReplace.php (100%) rename core/modules/filter/tests/filter_test/{lib/Drupal/filter_test => src}/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php (100%) rename core/modules/filter/tests/filter_test/{lib/Drupal/filter_test => src}/Plugin/Filter/FilterTestUncacheable.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Breadcrumb/ForumBreadcrumbBuilderBase.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Breadcrumb/ForumListingBreadcrumbBuilder.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Breadcrumb/ForumNodeBreadcrumbBuilder.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Controller/ForumController.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Form/ContainerForm.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Form/DeleteForm.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Form/ForumForm.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Form/Overview.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/ForumManager.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/ForumManagerInterface.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/ForumSettingsForm.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Plugin/Block/ActiveTopicsBlock.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Plugin/Block/ForumBlockBase.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Plugin/Block/NewTopicsBlock.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumBlockTest.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumIndexTest.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumNodeAccessTest.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumTest.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/ForumUninstallTest.php (100%) rename core/modules/forum/{lib/Drupal/forum => src}/Tests/Views/ForumIntegrationTest.php (100%) rename core/modules/forum/tests/{Drupal/forum/Tests => src}/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php (100%) rename core/modules/forum/tests/{Drupal/forum/Tests => src}/Breadcrumb/ForumListingBreadcrumbBuilderTest.php (100%) rename core/modules/forum/tests/{Drupal/forum/Tests => src}/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php (100%) rename core/modules/forum/tests/{Drupal/forum/Tests => src}/ForumManagerTest.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Encoder/JsonEncoder.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/HalSubscriber.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/ContentEntityNormalizer.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/EntityReferenceItemNormalizer.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/FieldItemNormalizer.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/FieldNormalizer.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/FileEntityNormalizer.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Normalizer/NormalizerBase.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Tests/DenormalizeTest.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Tests/EntityTest.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Tests/FileDenormalizeTest.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Tests/NormalizeTest.php (100%) rename core/modules/hal/{lib/Drupal/hal => src}/Tests/NormalizerTestBase.php (100%) rename core/modules/hal/tests/{Drupal/hal/Tests => src}/FieldItemNormalizerDenormalizeExceptionsUnitTest.php (100%) rename core/modules/hal/tests/{Drupal/hal/Tests => src}/FieldNormalizerDenormalizeExceptionsUnitTest.php (100%) rename core/modules/hal/tests/{Drupal/hal/Tests => src}/NormalizerDenormalizeExceptionsUnitTestBase.php (100%) rename core/modules/help/{lib/Drupal/help => src}/Controller/HelpController.php (100%) rename core/modules/help/{lib/Drupal/help => src}/Tests/HelpTest.php (100%) rename core/modules/help/{lib/Drupal/help => src}/Tests/NoHelpTest.php (100%) rename core/modules/history/{lib/Drupal/history => src}/Controller/HistoryController.php (100%) rename core/modules/history/{lib/Drupal/history => src}/Plugin/views/field/HistoryUserTimestamp.php (100%) rename core/modules/history/{lib/Drupal/history => src}/Plugin/views/filter/HistoryUserTimestamp.php (100%) rename core/modules/history/{lib/Drupal/history => src}/Tests/HistoryTest.php (100%) rename core/modules/history/{lib/Drupal/history => src}/Tests/Views/HistoryTimestampTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Annotation/ImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ConfigurableImageEffectInterface.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Controller/ImageStyleDownloadController.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Entity/ImageStyle.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectAddForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectDeleteForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectEditForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageEffectFormBase.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleAddForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleDeleteForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleEditForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleFlushForm.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Form/ImageStyleFormBase.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageEffectBag.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageEffectBase.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageEffectInterface.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageEffectManager.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageStyleInterface.php (100%) rename core/modules/image/{lib/Drupal/image => src}/ImageStyleListBuilder.php (100%) rename core/modules/image/{lib/Drupal/image => src}/PathProcessor/PathProcessorImageStyles.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/Field/FieldFormatter/ImageFormatter.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/Field/FieldFormatter/ImageFormatterBase.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/Field/FieldType/ImageItem.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/Field/FieldWidget/ImageWidget.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/CropImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/DesaturateImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/ResizeImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/RotateImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/ScaleAndCropImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Plugin/ImageEffect/ScaleImageEffect.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Routing/ImageStyleRoutes.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/FileMoveTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageAdminStylesTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageDimensionsTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageEffectsTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageFieldDefaultImagesTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageFieldDisplayTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageFieldTestBase.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageFieldValidateTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageItemTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageStyleFlushTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageStylesPathAndUrlTest.php (100%) rename core/modules/image/{lib/Drupal/image => src}/Tests/ImageThemeFunctionTest.php (100%) rename core/modules/image/tests/modules/image_module_test/{lib/Drupal/image_module_test => src}/Plugin/ImageEffect/NullTestImageEffect.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Config/LanguageConfigFactoryOverride.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Config/LanguageConfigFactoryOverrideInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/ConfigurableLanguageManager.php (100%) rename core/modules/language/{lib/Drupal/language => src}/ConfigurableLanguageManagerInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Controller/LanguageController.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Entity/Language.php (100%) rename core/modules/language/{lib/Drupal/language => src}/EventSubscriber/ConfigSubscriber.php (100%) rename core/modules/language/{lib/Drupal/language => src}/EventSubscriber/LanguageRequestSubscriber.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Exception/DeleteDefaultLanguageException.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Exception/LanguageException.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/ContentLanguageSettingsForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/LanguageAddForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/LanguageDeleteForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/LanguageEditForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/LanguageFormBase.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationBrowserDeleteForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationBrowserForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationConfigureForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationSelectedForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationSessionForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Form/NegotiationUrlForm.php (100%) rename core/modules/language/{lib/Drupal/language => src}/HttpKernel/PathProcessorLanguage.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageAccessController.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageListBuilder.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageNegotiationMethodBase.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageNegotiationMethodInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageNegotiationMethodManager.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageNegotiator.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageNegotiatorInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageServiceProvider.php (100%) rename core/modules/language/{lib/Drupal/language => src}/LanguageSwitcherInterface.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/Block/LanguageBlock.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/Condition/Language.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/Derivative/LanguageBlock.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationSession.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationUI.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationUrl.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/views/argument/LanguageArgument.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/views/field/LanguageField.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Plugin/views/filter/LanguageFilter.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/Condition/LanguageConditionTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageBrowserDetectionUnitTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageConfigSchemaTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageConfigurationElementTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageConfigurationTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageCustomLanguageConfigurationTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageDependencyInjectionTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageFallbackTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageListModuleInstallTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageListTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageNegotiationInfoTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguagePathMonolingualTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageSwitchingTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageTestBase.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageUILanguageNegotiationTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/LanguageUrlRewritingTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/Views/ArgumentLanguageTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/Views/FieldLanguageTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/Views/FilterLanguageTest.php (100%) rename core/modules/language/{lib/Drupal/language => src}/Tests/Views/LanguageTestBase.php (100%) rename core/modules/language/tests/language_elements_test/{lib/Drupal/language_elements_test => src}/Form/LanguageElementsTestForm.php (100%) rename core/modules/language/tests/language_test/{lib/Drupal/language_test => src}/Controller/LanguageTestController.php (100%) rename core/modules/language/tests/language_test/{lib/Drupal/language_test => src}/Plugin/LanguageNegotiation/LanguageNegotiationTest.php (100%) rename core/modules/language/tests/language_test/{lib/Drupal/language_test => src}/Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php (100%) rename core/modules/language/tests/{Drupal/language/Tests => src}/LanguageNegotiationUrlTest.php (100%) rename core/modules/language/tests/{Drupal/language/Tests => src}/Menu/LanguageLocalTasks.php (100%) rename core/modules/link/{lib/Drupal/link => src}/LinkItemInterface.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Plugin/Field/FieldFormatter/LinkFormatter.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Plugin/Field/FieldType/LinkItem.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Plugin/Field/FieldWidget/LinkWidget.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Plugin/Validation/Constraint/LinkTypeConstraint.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Tests/LinkFieldTest.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Tests/LinkFieldUITest.php (100%) rename core/modules/link/{lib/Drupal/link => src}/Tests/LinkItemTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Controller/LocaleController.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/ExportForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/ImportForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/LocaleForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/LocaleSettingsForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/TranslateEditForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/TranslateFilterForm.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Form/TranslateFormBase.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Gettext.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Locale.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/LocaleConfigManager.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/LocaleLookup.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/LocaleTranslation.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/LocaleTypedConfig.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/PoDatabaseReader.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/PoDatabaseWriter.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/SourceString.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/StringBase.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/StringDatabaseStorage.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/StringInterface.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/StringStorageException.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/StringStorageInterface.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleConfigManagerTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleConfigTranslationTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleContentTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleExportTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleImportFunctionalTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleJavascriptTranslation.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleLibraryInfoAlterTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocalePathTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocalePluralFormatTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleStringTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleTranslateStringTourTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleTranslationUiTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateBase.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateCronTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateInterfaceTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/Tests/LocaleUpdateTest.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/TranslationString.php (100%) rename core/modules/locale/{lib/Drupal/locale => src}/TranslationsStream.php (100%) rename core/modules/locale/tests/{Drupal/locale/Tests => src}/LocaleLookupTest.php (100%) rename core/modules/locale/tests/{Drupal/locale/Tests => src}/LocaleTranslationTest.php (100%) rename core/modules/locale/tests/{Drupal/locale/Tests => src}/Menu/LocaleLocalTasksTest.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/Entity/MenuLink.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkAccessController.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkForm.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkInterface.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkStorage.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuLinkStorageInterface.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuTree.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/MenuTreeInterface.php (100%) rename core/modules/menu_link/{lib/Drupal/menu_link => src}/StaticMenuLinks.php (100%) rename core/modules/menu_link/tests/{Drupal/menu_link/Tests => src}/MenuTreeTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Controller/MenuController.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuDeleteForm.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuLinkDeleteForm.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Form/MenuLinkResetForm.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuForm.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuListBuilder.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/MenuSettingsForm.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuCacheTagsTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuLanguageTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuNodeTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuUninstallTest.php (100%) rename core/modules/menu_ui/{lib/Drupal/menu_ui => src}/Tests/MenuWebTestBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Annotation/MigrateDestination.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Annotation/MigrateProcessPlugin.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Annotation/MigrateSource.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Entity/Migration.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Entity/MigrationInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateBuildDependencyInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateException.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateExecutable.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateMessage.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateMessageInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigratePassword.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateServiceProvider.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateSkipProcessException.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrateSkipRowException.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/MigrationStorage.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/Derivative/MigrateEntity.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/Derivative/MigrateEntityRevision.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateDestinationInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateDestinationPluginManager.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateEntityDestinationFieldInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateIdMapInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigratePluginManager.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateProcessInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/MigrateSourceInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/RequirementsInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/SourceEntityInterface.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/Book.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/ComponentEntityDisplayBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/Config.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/DestinationBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/Entity.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityComment.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityConfigBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityContentBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityDateFormat.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityFieldConfig.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityFieldInstance.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityFile.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityRevision.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntitySearchPage.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityUser.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/EntityViewMode.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/Null.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/PerComponentEntityDisplay.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/PerComponentEntityFormDisplay.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/destination/UrlAlias.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/id_map/Sql.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Callback.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Concat.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/DedupeBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/DedupeEntity.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/DefaultValue.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Extract.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Flatten.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Get.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Iterator.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/MachineName.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/Migration.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/SkipProcessOnEmpty.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/SkipRowOnEmpty.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/process/StaticMap.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/source/EmptySource.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/source/SourcePluginBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Plugin/migrate/source/SqlBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/ProcessPluginBase.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Row.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Source.php (100%) rename core/modules/migrate/{lib/Drupal/migrate => src}/Tests/MigrateTestBase.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateExecutableTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateExecuteableMemoryExceededTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateSqlIdMapEnsureTablesTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateSqlIdMapTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateSqlSourceTestCase.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/MigrateTestCase.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/RowTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/TestMigrateExecutable.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/TestSqlIdMap.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/destination/PerComponentEntityDisplayTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/destination/PerComponentEntityFormDisplayTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/CallbackTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/ConcatTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/DedupeEntityTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/ExtractTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/FlattenTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/GetTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/IteratorTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/MachineNameTest.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/MigrateProcessTestCase.php (100%) rename core/modules/migrate/tests/{Drupal/migrate/Tests => src}/process/StaticMapTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Entity/Migration.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Entity/MigrationInterface.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/MigrationStorage.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/MigrateLoadInterface.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/load/LoadEntity.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/load/d6/LoadTermNode.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/BlockPluginId.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/BlockSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldIdGenerator.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldInstanceDefaults.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldInstanceSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FieldTypeDefaults.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FileImageHandler.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FileUri.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/FilterFormatPermission.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/NodeUpdate7008.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/SearchConfigurationRankings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/SystemUpdate7000.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/UserPicture.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/UserUpdate7002.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/process/d6/UserUpdate8002.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/DrupalSqlBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/Variable.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/VariableMultiRow.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Action.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/AggregatorFeed.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/AggregatorItem.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Block.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Book.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Box.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/CckFieldRevision.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/CckFieldValues.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Comment.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/CommentVariable.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ContactCategory.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ContactSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Field.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/FieldInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/FieldInstancePerViewMode.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/File.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/FilterFormat.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Menu.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Node.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/NodeRevision.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/NodeType.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ProfileField.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ProfileFieldValues.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Role.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Term.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/TermNode.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/TermNodeRevision.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Upload.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UploadInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UrlAlias.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/User.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UserPicture.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UserPictureFile.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/UserPictureInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ViewMode.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/ViewModeBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/Vocabulary.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/VocabularyBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Plugin/migrate/source/d6/VocabularyPerType.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ActionSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6AggregatorFeed.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6AggregatorItem.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6AggregatorSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Block.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Book.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6BookSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Box.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Comment.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6CommentVariable.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ContactCategory.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ContactSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DateFormat.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DblogSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6DumpBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FieldInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FieldSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6File.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FileSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6FilterFormat.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6ForumSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6LocaleSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Menu.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6MenuSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Node.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeBodyInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeRevision.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6NodeType.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SearchPage.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SearchSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SimpletestSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6StatisticsSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SyslogSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemCron.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemFile.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemFilter.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemImage.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemImageGd.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemMaintenance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemPerformance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemRss.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemSite.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6SystemTheme.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TaxonomySettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TaxonomyTerm.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TaxonomyVocabulary.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TermNode.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6TextSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UpdateSettings.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6Upload.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UploadField.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UploadInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UrlAlias.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6User.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserMail.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserProfileFields.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6UserRole.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/Dump/Drupal6VocabularyField.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/MigrateDrupalTestBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/MigrateFullDrupalTestBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateActionConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateAggregatorConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateAggregatorFeedTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateAggregatorItemTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateBlockTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateBookConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateBookTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCckFieldRevisionTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCckFieldValuesTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentVariableDisplayBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentVariableEntityDisplay.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentVariableEntityFormDisplay.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentVariableField.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCommentVariableInstance.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateContactCategoryTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateContactConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateCustomBlockTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateDateFormatTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateDblogConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateDrupal6Test.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldFormatterSettingsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldInstanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFieldWidgetSettingsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFileConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFileTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateFilterFormatTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateForumConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateLocaleConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateMenuConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateMenuTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeRevisionTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTestBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateNodeTypeTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateProfileValuesTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSearchConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSearchPageTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSimpletestConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateStatisticsConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSyslogConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemCronTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemFileTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemFilterTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemImageGdTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemImageTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemMaintenanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemPerformanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemRssTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemSiteTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateSystemThemeTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTaxonomyConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTaxonomyTermTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTaxonomyVocabularyTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTermNodeRevisionTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTermNodeTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTermNodeTestBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateTextConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUpdateConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadBase.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadEntityDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadEntityFormDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadFieldTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadInstanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUploadTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUrlAliasTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserConfigsTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureEntityDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureEntityFormDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureFieldTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureFileTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserPictureInstanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserProfileEntityDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserProfileEntityFormDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserProfileFieldInstanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserProfileFieldTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserRoleTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateUserTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateViewModesTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateVocabularyEntityDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateVocabularyEntityFormDisplayTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateVocabularyFieldInstanceTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/d6/MigrateVocabularyFieldTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/dependencies/MigrateDependenciesTest.php (100%) rename core/modules/migrate_drupal/{lib/Drupal/migrate_drupal => src}/Tests/destination/ConfigDestinationTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/VariableMultiRowSourceWithHighwaterTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/VariableMultiRowTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/VariableMultiRowTestBase.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/VariableTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ActionTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/AggregatorFeedTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/AggregatorItemTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/BlockTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/BoxTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/CommentSourceWithHighwaterTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/CommentTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/CommentTestBase.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ContactCategoryTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/Drupal6SqlBaseTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FieldInstancePerViewModeTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FieldInstanceTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FieldTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FileTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/FilterFormatTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/MenuTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/NodeRevisionTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/NodeTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/NodeTypeTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ProfileFieldTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/RoleTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TermSourceWithVocabularyFilterTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TermTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TermTestBase.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TestComment.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/TestTerm.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/UrlAliasTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/UserPictureTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/UserTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/ViewModeTest.php (100%) rename core/modules/migrate_drupal/tests/{Drupal/migrate_drupal/Tests => src}/source/d6/VocabularyTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Access/NodeAddAccessCheck.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Access/NodeRevisionAccessCheck.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Controller/NodeController.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Controller/NodeViewController.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Entity/Node.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Entity/NodeType.php (100%) rename core/modules/node/{lib/Drupal/node => src}/EventSubscriber/NodeAdminRouteSubscriber.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/DeleteMultiple.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/NodeDeleteForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/NodeRevisionDeleteForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/NodeRevisionRevertForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/NodeTypeDeleteConfirm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Form/RebuildPermissionsForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeAccessController.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeAccessControllerInterface.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeGrantDatabaseStorage.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeGrantDatabaseStorageInterface.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeInterface.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeListBuilder.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeStorage.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeStorageInterface.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeTranslationHandler.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeTypeAccessController.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeTypeForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeTypeInterface.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeTypeListBuilder.php (100%) rename core/modules/node/{lib/Drupal/node => src}/NodeViewBuilder.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/AssignOwnerNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/DeleteNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/DemoteNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/PromoteNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/PublishNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/SaveNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/StickyNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/UnpublishByKeywordNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/UnpublishNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Action/UnstickyNode.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Block/SyndicateBlock.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Condition/NodeType.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/Search/NodeSearch.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/entity_reference/selection/NodeSelection.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/area/ListingEmpty.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Nid.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Type.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/UidRevision.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument/Vid.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/argument_default/Node.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Language.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Link.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/LinkDelete.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/LinkEdit.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Node.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/NodeBulkForm.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Path.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Revision.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/RevisionLink.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/RevisionLinkDelete.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/RevisionLinkRevert.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/field/Type.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/filter/Access.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/filter/Status.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/filter/UidRevision.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/row/NodeRow.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/row/Rss.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/wizard/Node.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Plugin/views/wizard/NodeRevision.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Condition/NodeConditionTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Config/NodeImportChangeTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Config/NodeImportCreateTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/MultiStepNodeFormBasicOptionsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessBaseTableTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessFieldTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessLanguageAwareCombinationTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessLanguageAwareTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessLanguageTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessPagerTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessRebuildTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessRecordsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAccessTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeAdminTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeBlockFunctionalTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeCacheTagsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeCreationTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeEntityViewModeAlterTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeFieldMultilingualTestCase.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeFormButtonsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeLastChangedTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeLoadMultipleTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodePostSettingsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeQueryAlterTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeRSSContentTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionPermissionsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionsAllTestCase.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeRevisionsUiTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeSaveTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeSyndicateBlockTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTemplateSuggestionsTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTestBase.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTitleTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTitleXSSTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTokenReplaceTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTranslationUITest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTypeInitialLanguageTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTypePersistenceTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTypeRenameConfigImportTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeTypeTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeValidationTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeViewLanguageTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/NodeViewTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/PageEditTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/PagePreviewTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/PageViewTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/SummaryLengthTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/BulkFormTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/FieldTypeTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/FilterUidRevisionTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/FrontPageTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/NodeContextualLinksTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/NodeIntegrationTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/NodeRevisionWizardTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/NodeTestBase.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/RevisionRelationships.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/RowPluginTest.php (100%) rename core/modules/node/{lib/Drupal/node => src}/Tests/Views/StatusExtraTest.php (100%) rename core/modules/node/tests/{Drupal/node/Tests => src}/Plugin/views/field/NodeBulkFormTest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldType/ListBooleanItem.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldType/ListFloatItem.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldType/ListIntegerItem.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldType/ListItemBase.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldType/ListTextItem.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldWidget/ButtonsWidget.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldWidget/OnOffWidget.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldWidget/OptionsWidgetBase.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Plugin/Field/FieldWidget/SelectWidget.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsDynamicValuesTestBase.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsDynamicValuesValidationTest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsFieldTest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsFieldUITest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsFieldUnitTestBase.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsFormattersTest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsSelectDynamicValuesTest.php (100%) rename core/modules/options/{lib/Drupal/options => src}/Tests/OptionsWidgetsTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Controller/PathController.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Form/AddForm.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Form/DeleteForm.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Form/EditForm.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Form/PathFilterForm.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Form/PathFormBase.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Plugin/Field/FieldType/PathFieldItemList.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Plugin/Field/FieldType/PathItem.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Plugin/Field/FieldWidget/PathWidget.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathAdminTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathAliasTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathLanguageTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathLanguageUiTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathTaxonomyTermTest.php (100%) rename core/modules/path/{lib/Drupal/path => src}/Tests/PathTestBase.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Access/EditEntityAccessCheck.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Access/EditEntityFieldAccessCheck.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Access/EditEntityFieldAccessCheckInterface.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/BaseCommand.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/EntitySavedCommand.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/FieldFormCommand.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/FieldFormSavedCommand.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Ajax/FieldFormValidationErrorsCommand.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Annotation/InPlaceEditor.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/EditorSelector.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/EditorSelectorInterface.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Form/QuickEditFieldForm.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/MetadataGenerator.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/MetadataGeneratorInterface.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditor/FormEditor.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditor/PlainTextEditor.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorBase.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorInterface.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Plugin/InPlaceEditorManager.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/QuickEditController.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Tests/EditorSelectionTest.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Tests/MetadataGeneratorTest.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Tests/QuickEditAutocompleteTermTest.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Tests/QuickEditLoadingTest.php (100%) rename core/modules/quickedit/{lib/Drupal/quickedit => src}/Tests/QuickEditTestBase.php (100%) rename core/modules/quickedit/tests/modules/{lib/Drupal/quickedit_test => src}/MockEditEntityFieldAccessCheck.php (100%) rename core/modules/quickedit/tests/modules/{lib/Drupal/quickedit_test => src}/Plugin/InPlaceEditor/WysiwygEditor.php (100%) rename core/modules/quickedit/tests/{Drupal/quickedit/Tests => src}/Access/EditEntityAccessCheckTest.php (100%) rename core/modules/quickedit/tests/{Drupal/quickedit/Tests => src}/Access/EditEntityFieldAccessCheckTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/CommonDataConverter.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Entity/RdfMapping.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/RdfMappingInterface.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/SchemaOrgDataConverter.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/CommentAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/CrudTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/DateTimeFieldRdfaTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/EmailFieldRdfaTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/FieldRdfaDatatypeCallbackTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/FieldRdfaTestBase.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TaxonomyTermReferenceRdfaTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TelephoneFieldRdfaTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TestDataConverter.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/Field/TextFieldRdfaTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/FileFieldAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/GetNamespacesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/GetRdfNamespacesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/ImageFieldAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/NodeAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/RdfaAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/StandardProfileTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/TaxonomyAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/TaxonomyTermFieldAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/TrackerAttributesTest.php (100%) rename core/modules/rdf/{lib/Drupal/rdf => src}/Tests/UserAttributesTest.php (100%) rename core/modules/rdf/tests/{Drupal/rdf/Tests => src}/RdfMappingConfigEntityUnitTest.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/Entity/ResponsiveImageMapping.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/Form/ResponsiveImageMappingDeleteForm.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/ResponsiveImageMappingForm.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/ResponsiveImageMappingInterface.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/ResponsiveImageMappingListBuilder.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/Tests/ResponsiveImageAdminUITest.php (100%) rename core/modules/responsive_image/{lib/Drupal/responsive_image => src}/Tests/ResponsiveImageFieldDisplayTest.php (100%) rename core/modules/responsive_image/tests/{Drupal/responsive_image/Tests => src}/ResponsiveImageMappingEntityTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Access/CSRFAccessCheck.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Annotation/RestResource.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/LinkManager.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/LinkManagerInterface.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/RelationLinkManager.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/RelationLinkManagerInterface.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/TypeLinkManager.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/LinkManager/TypeLinkManagerInterface.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/Derivative/EntityDerivative.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/ResourceBase.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/ResourceInterface.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/Type/ResourcePluginManager.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/rest/resource/DBLogResource.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/rest/resource/EntityResource.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/views/display/RestExport.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/views/row/DataEntityRow.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/views/row/DataFieldRow.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Plugin/views/style/Serializer.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/RequestHandler.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/ResourceResponse.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Routing/ResourceRoutes.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/AuthTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/CreateTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/CsrfTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/DBLogTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/DeleteTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/NodeTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/RESTTestBase.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/ReadTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/ResourceTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/UpdateTest.php (100%) rename core/modules/rest/{lib/Drupal/rest => src}/Tests/Views/StyleSerializerTest.php (100%) rename core/modules/rest/tests/{Drupal/rest/Tests => src}/CollectRoutesTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Annotation/SearchPlugin.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Controller/SearchController.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Entity/SearchPage.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/ReindexConfirm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchBlockForm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchPageAddForm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchPageDeleteForm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchPageEditForm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchPageForm.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Form/SearchPageFormBase.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/Block/SearchBlock.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/ConfigurableSearchPluginBase.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/ConfigurableSearchPluginInterface.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/Derivative/SearchLocalTask.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/SearchIndexingInterface.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/SearchInterface.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/SearchPluginBag.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/SearchPluginBase.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/views/argument/Search.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/views/field/Score.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/views/filter/Search.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/views/row/SearchRow.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Plugin/views/sort/Score.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Routing/SearchPageRoutes.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPageAccessController.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPageInterface.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPageListBuilder.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPageRepository.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPageRepositoryInterface.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchPluginManager.php (100%) rename core/modules/search/{lib/Drupal/search => src}/SearchQuery.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchAdvancedSearchFormTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchBlockTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchCommentCountToggleTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchCommentTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchConfigSettingsFormTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchEmbedFormTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchExactTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchExcerptTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchKeywordsConditionsTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchLanguageTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchMatchTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchMultilingualEntityTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchNodePunctuationTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchNodeUpdateAndDeletionTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchNumberMatchingTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchNumbersTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchPageCacheTagsTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchPageOverrideTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchPageTextTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchPreprocessLangcodeTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchQueryAlterTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchRankingTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchSetLocaleTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchSimplifyTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchTestBase.php (100%) rename core/modules/search/{lib/Drupal/search => src}/Tests/SearchTokenizerTest.php (100%) rename core/modules/search/{lib/Drupal/search => src}/ViewsSearchQuery.php (100%) rename core/modules/search/tests/modules/search_embedded_form/{lib/Drupal/search_embedded_form => src}/Form/SearchEmbeddedForm.php (100%) rename core/modules/search/tests/modules/search_extra_type/{lib/Drupal/search_extra_type => src}/Plugin/Search/SearchExtraTypeSearch.php (100%) rename core/modules/search/tests/{Drupal/search/Tests => src}/SearchPageRepositoryTest.php (100%) rename core/modules/search/tests/{Drupal/search/Tests => src}/SearchPluginBagTest.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Encoder/JsonEncoder.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Encoder/XmlEncoder.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/EntityResolver/ChainEntityResolver.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/EntityResolver/EntityResolverInterface.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/EntityResolver/TargetIdResolver.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/EntityResolver/UuidReferenceInterface.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/EntityResolver/UuidResolver.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/ComplexDataNormalizer.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/ConfigEntityNormalizer.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/EntityNormalizer.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/ListNormalizer.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/NormalizerBase.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Normalizer/TypedDataNormalizer.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/RegisterEntityResolversCompilerPass.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/RegisterSerializationClassesCompilerPass.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/SerializationServiceProvider.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Tests/EntityResolverTest.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Tests/EntitySerializationTest.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Tests/NormalizerTestBase.php (100%) rename core/modules/serialization/{lib/Drupal/serialization => src}/Tests/SerializationTest.php (100%) rename core/modules/serialization/tests/serialization_test/{lib/Drupal/serialization_test => src}/SerializationTestEncoder.php (100%) rename core/modules/serialization/tests/serialization_test/{lib/Drupal/serialization_test => src}/SerializationTestNormalizer.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Encoder/JsonEncoderTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Encoder/XmlEncoderTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/EntityResolver/ChainEntityResolverTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Normalizer/ConfigEntityNormalizerTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Normalizer/EntityNormalizerTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Normalizer/ListNormalizerTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Normalizer/NormalizerBaseTest.php (100%) rename core/modules/serialization/tests/{Drupal/serialization/Tests => src}/Normalizer/TypedDataNormalizerTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/DrupalUnitTestBase.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Form/SimpletestResultsForm.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Form/SimpletestSettingsForm.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Form/SimpletestTestForm.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/InstallerTestBase.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/KernelTestBase.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/TestBase.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/TestServiceProvider.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/BrokenSetUpTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/BrowserTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/FolderTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/InstallationProfileModuleTestsTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/KernelTestBaseTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/MailCaptureTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/MissingCheckedRequirementsTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/MissingDependentModuleUnitTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/OtherInstallationProfileTestsTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/SimpleTestTest.php (100%) mode change 100755 => 100644 rename core/modules/simpletest/{lib/Drupal/simpletest => src}/Tests/UserHelpersTest.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/UnitTestBase.php (100%) rename core/modules/simpletest/{lib/Drupal/simpletest => src}/WebTestBase.php (100%) rename core/modules/simpletest/tests/modules/phpunit_test/{lib/Drupal/phpunit_test => src}/PhpUnitTestDummyClass.php (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/Fixtures/select_2nd_selected.html (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/Fixtures/select_none_selected.html (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/PhpUnitAutoloaderTest.php (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/PhpUnitErrorTest.php (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/TestBaseTest.php (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/WebTestBaseTest.php (100%) rename core/modules/simpletest/tests/{Drupal/simpletest/Tests => src}/phpunit_error.xml (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Plugin/Block/StatisticsPopularBlock.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/StatisticsSettingsForm.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/StatisticsAdminTest.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/StatisticsLoggingTest.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/StatisticsReportsTest.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/StatisticsTestBase.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/StatisticsTokenReplaceTest.php (100%) rename core/modules/statistics/{lib/Drupal/statistics => src}/Tests/Views/IntegrationTest.php (100%) rename core/modules/syslog/{lib/Drupal/syslog => src}/Tests/SyslogTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Access/CronAccessCheck.php (100%) rename core/modules/system/{lib/Drupal/system => src}/ActionConfigEntityInterface.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/AdminController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/BatchController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/FormAjaxController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/SystemController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/SystemInfoController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/ThemeController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Controller/TimezoneController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/CronController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/DateFormatAccessController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/DateFormatInterface.php (100%) rename core/modules/system/{lib/Drupal/system => src}/DateFormatListBuilder.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Entity/Action.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Entity/DateFormat.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Entity/Menu.php (100%) rename core/modules/system/{lib/Drupal/system => src}/EventSubscriber/AdminRouteSubscriber.php (100%) rename core/modules/system/{lib/Drupal/system => src}/EventSubscriber/AutomaticCron.php (100%) rename core/modules/system/{lib/Drupal/system => src}/FileDownloadController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/CronForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/DateFormatAddForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/DateFormatDeleteForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/DateFormatEditForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/DateFormatFormBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/FileSystemForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ImageToolkitForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/LoggingForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ModulesListConfirmForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ModulesListForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ModulesUninstallConfirmForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ModulesUninstallForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/PerformanceForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/RegionalForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/RssFeedsForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/SiteInformationForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/SiteMaintenanceModeForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ThemeAdminForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Form/ThemeSettingsForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/MachineNameController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/MenuAccessController.php (100%) rename core/modules/system/{lib/Drupal/system => src}/MenuInterface.php (100%) rename core/modules/system/{lib/Drupal/system => src}/PathBasedBreadcrumbBuilder.php (100%) rename core/modules/system/{lib/Drupal/system => src}/PathProcessor/PathProcessorFiles.php (100%) rename core/modules/system/{lib/Drupal/system => src}/PhpStorage/MockPhpStorage.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Archiver/Tar.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Archiver/Zip.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemBrandingBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemBreadcrumbBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemHelpBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemMainBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemMenuBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Block/SystemPoweredByBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Derivative/SystemMenuBlock.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/Derivative/ThemeLocalTask.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/ImageToolkit/GDToolkit.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Plugin/views/field/BulkForm.php (100%) rename core/modules/system/{lib/Drupal/system => src}/SystemConfigSubscriber.php (100%) rename core/modules/system/{lib/Drupal/system => src}/SystemManager.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Action/ActionUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/AjaxTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/CommandsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/DialogTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/ElementValidationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/FormValuesTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/FrameworkTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Ajax/MultiFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Batch/PageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Batch/ProcessingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Block/SystemMenuBlockTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Bootstrap/GetFilenameUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Bootstrap/MiscUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Bootstrap/PageCacheTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Bootstrap/ResettableStaticUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/ApcuBackendUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/BackendChainUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/CacheTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/ClearTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/DatabaseBackendTagTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/DatabaseBackendUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/GenericCacheBackendUnitTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/MemoryBackendUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/PageCacheTagsIntegrationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/PageCacheTagsTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Cache/PhpBackendUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/AddFeedTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/AlterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/CascadingStylesheetsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/FormatDateTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/HtmlIdentifierUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/JavaScriptTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/MergeAttachmentsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/NoJavaScriptAnonymousTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/RegionContentTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/RenderElementTypesTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/RenderTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/RenderWebTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/SimpleTestErrorCollectorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/SizeUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/SystemListingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/TableSortExtenderUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/UrlTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/WriteRecordTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Common/XssUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Condition/ConditionFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/AlterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/BasicSyntaxTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/CaseSensitivityTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/ConnectionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/ConnectionUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/DatabaseExceptionWrapperTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/DatabaseTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/DatabaseWebTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/DeleteTruncateTest.php (100%) mode change 100755 => 100644 rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/FakeRecord.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/FetchTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/InsertDefaultsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/InsertLobTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/InsertTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/InvalidDataTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/LoggingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/MergeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/NextIdTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/QueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/RangeQueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/RegressionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SchemaTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectCloneTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectComplexTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectOrderedTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectPagerDefaultTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectSubqueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectTableSortDefaultTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SelectTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/SerializeQueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/TaggingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/TemporaryQueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/TransactionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/UpdateComplexTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/UpdateLobTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Database/UpdateTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Datetime/DateTimePlusIntlTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Datetime/DrupalDateTimeIntlTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Datetime/DrupalDateTimeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/DrupalKernel/ContentNegotiationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/DrupalKernel/DrupalKernelSiteTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/DrupalKernel/DrupalKernelTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/DrupalKernel/ServiceDestructionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/BundleConstraintValidatorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/ConfigEntityImportTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/ConfigEntityQueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityAccessTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityApiInfoTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityApiTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityCacheTagsTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityCrudHookTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityFieldDefaultValueTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityFieldTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityLanguageTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityOperationsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityQueryAggregateTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityQueryRelationshipTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityQueryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityRevisionsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityTranslationFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityTranslationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityTypeConstraintValidatorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityTypedDataDefinitionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityUUIDTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityUnitTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityValidationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityViewBuilderTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityViewControllerTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/EntityWithUriCacheTagsTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/FieldAccessTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/FieldSqlStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Entity/FieldTranslationSqlStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Extension/InfoParserUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Extension/ThemeHandlerTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/ConfigTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/DirectoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/FileTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/HtaccessUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/MimeTypeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/NameMungingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/ReadOnlyStreamWrapperTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileDirectoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileScanDirectoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedCopyTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedDeleteTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedMoveTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/RemoteFileUnmanagedSaveDataTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/ScanDirectoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/StreamWrapperTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UnmanagedCopyTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UnmanagedDeleteRecursiveTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UnmanagedDeleteTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UnmanagedMoveTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UnmanagedSaveDataTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/File/UrlRewritingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/FileTransfer/FileTransferTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/FileTransfer/MockTestConnection.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/FileTransfer/TestFileTransfer.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/AlterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ArbitraryRebuildTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/CheckboxTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ConfirmFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ElementTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ElementsLabelsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ElementsTableSelectTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ElementsVerticalTabsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/EmailTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/FormCacheTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/FormObjectTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/FormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/LanguageSelectElementTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ModulesListFormWebTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ProgrammaticTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/RebuildTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/RedirectTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/StateValuesCleanAdvancedTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/StateValuesCleanTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/StorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/SystemConfigFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/TriggeringElementProgrammedUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/TriggeringElementTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/UrlTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Form/ValidationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Image/ToolkitGdTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Image/ToolkitSetupFormTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Image/ToolkitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Image/ToolkitTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/DistributionProfileTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerEmptySettingsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerExistingDatabaseSettingsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerExistingSettingsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerLanguageDirectionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerLanguageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerTranslationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/InstallerTranslationVersionUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Installer/SiteNameTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/DatabaseStorageExpirableTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/DatabaseStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/GarbageCollectionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/KeyValueContentEntityStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/MemoryStorageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/KeyValueStore/StorageTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Lock/LockFunctionalTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Lock/LockUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Mail/HtmlToTextTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Mail/MailTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Mail/WrapMailUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/BreadcrumbTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/LinksTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/LocalActionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/LocalTasksTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/MenuRouterRebuildTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/MenuRouterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/MenuTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Menu/MenuTranslateTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/ClassLoaderTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/DependencyTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/HookRequirementsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/InstallTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/InstallUninstallTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/ModuleApiTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/ModuleTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/RequiredTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/UninstallTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Module/VersionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Page/DefaultMetatagsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Pager/PagerTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/ParamConverter/UpcastingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Path/AliasTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Path/MatchPathTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Path/PathUnitTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Path/UrlAliasFixtures.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Path/UrlAlterFunctionalTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/PhpStorage/PhpStorageFactoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/AlterDecoratorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/CacheDecoratorLanguageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/CacheDecoratorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/ContextPluginTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/DerivativeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/Discovery/DiscoveryTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/Discovery/StaticDiscoveryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/FactoryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/InspectionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Plugin/PluginTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Queue/QueueTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/MatcherDumperTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/MockAliasManager.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/MockMatcher.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/MockRouteProvider.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/RouteProviderTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/RouterPermissionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Routing/RouterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/ServiceProvider/ServiceProviderTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Session/SessionHttpsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Session/SessionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/AccessDeniedTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/AdminMetaTagTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/AdminTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/CronQueueTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/CronRunTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/DateFormatsLockedTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/DateFormatsMachineNameTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/DateTimeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/DefaultMobileMetaTagsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/ErrorHandlerTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/FloodTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/FrontPageTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/IgnoreSlaveSubscriberTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/IndexPhpTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/InfoAlterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/MainContentFallbackTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/PageNotFoundTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/PageTitleTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/PasswordHashingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/RetrieveFileTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/ScriptTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/SettingsRewriteTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/ShutdownFunctionsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/SiteMaintenanceTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/StatusTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/SystemAuthorizeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/SystemConfigFormTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/ThemeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/TokenReplaceUnitTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/TokenReplaceUnitTestBase.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/System/TokenScanTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/EntityFilteringThemeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/FastTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/FunctionsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/HtmlAttributesTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/RegistryTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TableTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeEarlyInitializationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeInfoStylesTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeSettingsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeSuggestionsAlterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeTestPhpTemplate.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/ThemeTestTwig.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigDebugMarkupTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigExtensionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigFilterTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigNamespaceTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigRawTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigSettingsTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Theme/TwigTransTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Transliteration/TransliterationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/TypedData/TypedDataDefinitionTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/TypedData/TypedDataTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/DependencyHookInvocationTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/DependencyMissingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/DependencyOrderingTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/InvalidUpdateHook.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/UpdateScriptTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Update/UpdatesWith7x.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Validation/AllowedValuesConstraintValidatorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Tests/Validation/ComplexDataConstraintValidatorTest.php (100%) rename core/modules/system/{lib/Drupal/system => src}/Theme/BatchNegotiator.php (100%) rename core/modules/system/tests/modules/action_test/{lib/Drupal/action_test => src}/Plugin/Action/NoType.php (100%) rename core/modules/system/tests/modules/action_test/{lib/Drupal/action_test => src}/Plugin/Action/SaveEntity.php (100%) rename core/modules/system/tests/modules/ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Callbacks.php (100%) rename core/modules/system/tests/modules/ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Form/AjaxFormsTestCommandsForm.php (100%) rename core/modules/system/tests/modules/ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Form/AjaxFormsTestLazyLoadForm.php (100%) rename core/modules/system/tests/modules/ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Form/AjaxFormsTestSimpleForm.php (100%) rename core/modules/system/tests/modules/ajax_forms_test/{lib/Drupal/ajax_forms_test => src}/Form/AjaxFormsTestValidationForm.php (100%) rename core/modules/system/tests/modules/ajax_test/{lib/Drupal/ajax_test => src}/Controller/AjaxTestController.php (100%) rename core/modules/system/tests/modules/ajax_test/{lib/Drupal/ajax_test => src}/Form/AjaxTestDialogForm.php (100%) rename core/modules/system/tests/modules/ajax_test/{lib/Drupal/ajax_test => src}/Form/AjaxTestForm.php (100%) rename core/modules/system/tests/modules/batch_test/{lib/Drupal/batch_test => src}/Controller/BatchTestController.php (100%) rename core/modules/system/tests/modules/batch_test/{lib/Drupal/batch_test => src}/Form/BatchTestForm.php (100%) rename core/modules/system/tests/modules/common_test/{lib/Drupal/common_test => src}/Controller/CommonTestController.php (100%) rename core/modules/system/tests/modules/condition_test/{lib/Drupal/condition_test => src}/FormController.php (100%) rename core/modules/system/tests/modules/database_test/{lib/Drupal/database_test => src}/Controller/DatabaseTestController.php (100%) rename core/modules/system/tests/modules/database_test/{lib/Drupal/database_test => src}/Form/DatabaseTestForm.php (100%) rename core/modules/system/tests/modules/entity_cache_test_dependency/{lib/Drupal/entity_cache_test_dependency => src}/Entity/EntityCacheTest.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Controller/EntityTestController.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTest.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestBaseFieldDisplay.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestCache.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestDefaultAccess.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestLabel.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestLabelCallback.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestMul.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestMulRev.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestNoLabel.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Entity/EntityTestRev.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/EntityTestAccessController.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/EntityTestDeleteForm.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/EntityTestForm.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/EntityTestListBuilder.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/EntityTestViewBuilder.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Plugin/Derivative/EntityTestLocalTasks.php (100%) rename core/modules/system/tests/modules/entity_test/{lib/Drupal/entity_test => src}/Routing/EntityTestRoutes.php (100%) rename core/modules/system/tests/modules/error_test/{lib/Drupal/error_test => src}/Controller/ErrorTestController.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/AutocompleteController.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/Callbacks.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/ConfirmFormArrayPathTestForm.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/ConfirmFormTestForm.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/Controller/FormTestController.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/EventSubscriber/FormTestEventSubscriber.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/Form/FormTestForm.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/Form/RedirectBlockForm.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/FormTestArgumentsObject.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/FormTestAutocompleteForm.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/FormTestControllerObject.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/FormTestObject.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/FormTestServiceObject.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/Plugin/Block/RedirectFormBlock.php (100%) rename core/modules/system/tests/modules/form_test/{lib/Drupal/form_test => src}/SystemConfigFormTestForm.php (100%) rename core/modules/system/tests/modules/image_test/{lib/Drupal/image_test => src}/Plugin/ImageToolkit/BrokenToolkit.php (100%) rename core/modules/system/tests/modules/image_test/{lib/Drupal/image_test => src}/Plugin/ImageToolkit/TestToolkit.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Controller/MenuTestController.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/EventSubscriber/MaintenanceModeSubscriber.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Plugin/Derivative/LocalTaskTest.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Plugin/Menu/LocalAction/TestLocalAction.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Plugin/Menu/LocalAction/TestLocalAction4.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/TestControllers.php (100%) rename core/modules/system/tests/modules/menu_test/{lib/Drupal/menu_test => src}/Theme/TestThemeNegotiator.php (100%) rename core/modules/system/tests/modules/module_autoload_test/{lib/Drupal/module_autoload_test => src}/SomeClass.php (100%) rename core/modules/system/tests/modules/module_test/{lib/Drupal/module_test => src}/Controller/ModuleTestController.php (100%) rename core/modules/system/tests/modules/paramconverter_test/{lib/Drupal/paramconverter_test => src}/TestControllers.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Controller/PluginTest.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/CustomDirectoryExample1.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/CustomDirectoryExample2.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/AlterDecoratorTestPluginManager.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/Annotation/PluginExample.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/CachedMockBlockManager.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/DefaultsTestPluginManager.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/MockBlockManager.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/TestPluginBag.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/TestPluginManager.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/custom_annotation/Example1.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/custom_annotation/Example2.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Apple.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Banana.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Cherry.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/NonAnnotatedClass.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/Orange.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/fruit/README.txt (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockComplexContextBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockLayoutBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockMenuBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockTestBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockUserLoginBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/MockUserNameBlock.php (100%) rename core/modules/system/tests/modules/plugin_test/{lib/Drupal/plugin_test => src}/Plugin/plugin_test/mock_block/TypedDataStringBlock.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/Access/DefinedTestAccessCheck.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/Access/TestAccessCheck.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/RouteTestSubscriber.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/RouterTestServiceProvider.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/TestContent.php (100%) rename core/modules/system/tests/modules/router_test_directory/{lib/Drupal/router_test => src}/TestControllers.php (100%) rename core/modules/system/tests/modules/service_provider_test/{lib/Drupal/service_provider_test => src}/ServiceProviderTestServiceProvider.php (100%) rename core/modules/system/tests/modules/service_provider_test/{lib/Drupal/service_provider_test => src}/TestClass.php (100%) rename core/modules/system/tests/modules/service_provider_test/{lib/Drupal/service_provider_test => src}/TestFileUsage.php (100%) rename core/modules/system/tests/modules/session_test/{lib/Drupal/session_test => src}/Controller/SessionTestController.php (100%) rename core/modules/system/tests/modules/session_test/{lib/Drupal/session_test => src}/EventSubscriber/SessionTestSubscriber.php (100%) rename core/modules/system/tests/modules/session_test/{lib/Drupal/session_test => src}/Form/SessionTestForm.php (100%) rename core/modules/system/tests/modules/system_mail_failure_test/{lib/Drupal/system_mail_failure_test => src}/Plugin/Mail/TestPhpMailFailure.php (100%) rename core/modules/system/tests/modules/system_module_test/{lib/Drupal/system_module_test => src}/EventSubscriber/HtmlPageSubscriber.php (100%) rename core/modules/system/tests/modules/system_test/{lib/Drupal/system_test => src}/Controller/PageCacheAcceptHeaderController.php (100%) rename core/modules/system/tests/modules/system_test/{lib/Drupal/system_test => src}/Controller/SystemTestController.php (100%) rename core/modules/system/tests/modules/system_test/{lib/Drupal/system_test => src}/MockFileTransfer.php (100%) rename core/modules/system/tests/modules/test_page_test/{lib/Drupal/test_page_test => src}/Controller/Test.php (100%) rename core/modules/system/tests/modules/test_page_test/{lib/Drupal/test_page_test => src}/Controller/TestPageTestController.php (100%) rename core/modules/system/tests/modules/theme_test/{lib/Drupal/theme_test => src}/EventSubscriber/ThemeTestSubscriber.php (100%) rename core/modules/system/tests/modules/theme_test/{lib/Drupal/theme_test => src}/Theme/CustomThemeNegotiator.php (100%) rename core/modules/system/tests/modules/theme_test/{lib/Drupal/theme_test => src}/Theme/HighPriorityThemeNegotiator.php (100%) rename core/modules/system/tests/modules/theme_test/{lib/Drupal/theme_test => src}/ThemeTestController.php (100%) rename core/modules/system/tests/modules/twig_extension_test/{lib/Drupal/twig_extension_test => src}/TwigExtension/TestExtension.php (100%) rename core/modules/system/tests/modules/twig_extension_test/{lib/Drupal/twig_extension_test => src}/TwigExtensionTestController.php (100%) rename core/modules/system/tests/modules/twig_theme_test/{lib/Drupal/twig_theme_test => src}/TwigThemeTestController.php (100%) rename core/modules/system/tests/modules/url_alter_test/{lib/Drupal/url_alter_test => src}/Controller/URLAlterTestController.php (100%) rename core/modules/system/tests/modules/url_alter_test/{lib/Drupal/url_alter_test => src}/PathProcessor.php (100%) rename core/modules/system/tests/modules/url_alter_test/{lib/Drupal/url_alter_test => src}/PathProcessorTest.php (100%) rename core/modules/system/tests/{Drupal/system/Tests => src}/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php (100%) rename core/modules/system/tests/{Drupal/system/Tests => src}/Controller/SystemControllerTest.php (100%) rename core/modules/system/tests/{Drupal/system/Tests => src}/Transliteration/MachineNameControllerTest.php (100%) rename core/modules/system/tests/themes/test_theme/{lib/Drupal/test_theme => src}/ThemeClass.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Controller/TaxonomyController.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Controller/TermAutocompleteController.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Entity/Term.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Entity/Vocabulary.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/OverviewTerms.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/TermDeleteForm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/VocabularyDeleteForm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Form/VocabularyResetForm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/LinkFormatter.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/PlainFormatter.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Validation/Constraint/TermParentConstraint.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/Validation/Constraint/TermParentConstraintValidator.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/entity_reference/selection/TermSelection.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument/IndexTid.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument/IndexTidDepth.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument/IndexTidDepthModifier.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument/Taxonomy.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument/VocabularyVid.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument_default/Tid.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument_validator/Term.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/argument_validator/TermName.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/Language.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/LinkEdit.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/Taxonomy.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/field/TaxonomyIndexTid.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/filter/TaxonomyIndexTid.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/filter/TaxonomyIndexTidDepth.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/relationship/NodeTermData.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Plugin/views/wizard/TaxonomyTerm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermAccessController.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermBreadcrumbBuilder.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermForm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermInterface.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermStorage.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermStorageInterface.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermTranslationHandler.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/TermViewBuilder.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/EfqTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/LegacyTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/LoadMultipleTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/RssTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyImageTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyTermIndentationTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyTermReferenceItemTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TaxonomyTestBase.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermCacheTagsTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermFieldMultipleVocabularyTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermFieldTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermIndexTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermLanguageTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermTranslationUITest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermUnitTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TermValidationTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/ThemeTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/TokenReplaceTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/Views/RelationshipNodeTermDataTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/Views/RelationshipRepresentativeNode.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyIndexTidUiTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyParentUITest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/Views/TaxonomyTestBase.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyCrudTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyLanguageTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyPermissionsTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/Tests/VocabularyUiTest.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyForm.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyInterface.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyListBuilder.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyStorage.php (100%) rename core/modules/taxonomy/{lib/Drupal/taxonomy => src}/VocabularyStorageInterface.php (100%) rename core/modules/taxonomy/tests/{Drupal/taxonomy/Tests => src}/Menu/TaxonomyLocalTasksTest.php (100%) rename core/modules/telephone/{lib/Drupal/telephone => src}/Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php (100%) rename core/modules/telephone/{lib/Drupal/telephone => src}/Plugin/Field/FieldType/TelephoneItem.php (100%) rename core/modules/telephone/{lib/Drupal/telephone => src}/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php (100%) rename core/modules/telephone/{lib/Drupal/telephone => src}/Tests/TelephoneFieldTest.php (100%) rename core/modules/telephone/{lib/Drupal/telephone => src}/Tests/TelephoneItemTest.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldFormatter/TextDefaultFormatter.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextItem.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextItemBase.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextLongItem.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldType/TextWithSummaryItem.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldWidget/TextareaWidget.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Plugin/Field/FieldWidget/TextfieldWidget.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Tests/Formatter/TextPlainUnitTest.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Tests/TextFieldTest.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Tests/TextSummaryTest.php (100%) rename core/modules/text/{lib/Drupal/text => src}/Tests/TextWithSummaryItemTest.php (100%) rename core/modules/text/{lib/Drupal/text => src}/TextProcessed.php (100%) rename core/modules/toolbar/{lib/Drupal/toolbar => src}/Controller/ToolbarController.php (100%) rename core/modules/toolbar/{lib/Drupal/toolbar => src}/Tests/ToolbarAdminMenuTest.php (100%) rename core/modules/toolbar/{lib/Drupal/toolbar => src}/Tests/ToolbarHookToolbarTest.php (100%) rename core/modules/toolbar/{lib/Drupal/toolbar => src}/Tests/ToolbarMenuTranslationTest.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Annotation/Tip.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Entity/Tour.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Plugin/tour/tip/TipPluginText.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Tests/TourPluginTest.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTest.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTestBase.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/Tests/TourTestBasic.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TipPluginBase.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TipPluginInterface.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TipPluginManager.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TipsBag.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TourInterface.php (100%) rename core/modules/tour/{lib/Drupal/tour => src}/TourViewBuilder.php (100%) rename core/modules/tour/tests/{Drupal/tour/Tests => src}/Entity/TourTest.php (100%) rename core/modules/tour/tests/tour_test/{lib/Drupal/tour_test => src}/Controller/TourTestController.php (100%) rename core/modules/tour/tests/tour_test/{lib/Drupal/tour_test => src}/Plugin/tour/tip/TipPluginImage.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Access/ViewOwnTrackerAccessCheck.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Controller/TrackerPage.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Controller/TrackerUserRecent.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Controller/TrackerUserTab.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Plugin/Menu/UserTrackerTab.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Plugin/views/argument/UserUid.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Plugin/views/filter/UserUid.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Tests/TrackerNodeAccessTest.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Tests/TrackerTest.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Tests/Views/TrackerTestBase.php (100%) rename core/modules/tracker/{lib/Drupal/tracker => src}/Tests/Views/TrackerUserUidTest.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Access/UpdateManagerAccessCheck.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Controller/UpdateController.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Form/UpdateForm.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Tests/UpdateContribTest.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Tests/UpdateCoreTest.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Tests/UpdateTestBase.php (100%) rename core/modules/update/{lib/Drupal/update => src}/Tests/UpdateUploadTest.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateFetcher.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateFetcherInterface.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateManager.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateManagerInterface.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateProcessor.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateProcessorInterface.php (100%) rename core/modules/update/{lib/Drupal/update => src}/UpdateSettingsForm.php (100%) rename core/modules/update/tests/modules/update_test/{lib/Drupal/update_test => src}/Controller/UpdateTestController.php (100%) rename core/modules/update/tests/modules/update_test/{lib/Drupal/update_test => src}/MockFileTransfer.php (100%) rename core/modules/update/tests/{Drupal/update/Tests => src}/UpdateFetcherTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Access/LoginStatusCheck.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Access/PermissionAccessCheck.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Access/RegisterAccessCheck.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Access/RoleAccessCheck.php (100%) rename core/modules/user/{lib/Drupal/user => src}/AccountForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/AccountSettingsForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Cache/UserCacheContext.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Cache/UserRolesCacheContext.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Controller/UserAutocompleteController.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Controller/UserController.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Entity/Role.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Entity/User.php (100%) rename core/modules/user/{lib/Drupal/user => src}/EntityOwnerInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/EventSubscriber/MaintenanceModeSubscriber.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserCancelForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserLoginForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserMultipleCancelConfirm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserPasswordForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserPermissionsForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserPermissionsRoleSpecificForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Form/UserRoleDelete.php (100%) rename core/modules/user/{lib/Drupal/user => src}/PermissionsHash.php (100%) rename core/modules/user/{lib/Drupal/user => src}/PermissionsHashInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/AddRoleUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/BlockUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/CancelUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/ChangeUserRoleBase.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/RemoveRoleUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Action/UnblockUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Block/UserLoginBlock.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/LanguageNegotiation/LanguageNegotiationUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Search/UserSearch.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Validation/Constraint/UserMailUnique.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Validation/Constraint/UserNameConstraint.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Validation/Constraint/UserNameConstraintValidator.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Validation/Constraint/UserNameUnique.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/Validation/Constraint/UserUniqueValidator.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/entity_reference/selection/UserSelection.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/access/Permission.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/access/Role.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument/RolesRid.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument/Uid.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument_default/CurrentUser.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument_default/User.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument_validator/User.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/argument_validator/UserName.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Language.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Link.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/LinkCancel.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/LinkEdit.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Mail.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Name.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Permissions.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/Roles.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/User.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/UserBulkForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/field/UserData.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Current.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Name.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Permissions.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/filter/Roles.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/row/UserRow.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Plugin/views/wizard/Users.php (100%) rename core/modules/user/{lib/Drupal/user => src}/ProfileForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/ProfileTranslationHandler.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RegisterForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleAccessController.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleForm.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleListBuilder.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleStorage.php (100%) rename core/modules/user/{lib/Drupal/user => src}/RoleStorageInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/TempStore.php (100%) rename core/modules/user/{lib/Drupal/user => src}/TempStoreException.php (100%) rename core/modules/user/{lib/Drupal/user => src}/TempStoreFactory.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/TempStoreDatabaseTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAccountFormFieldsTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAccountLinksTests.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserActionConfigSchemaTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminLanguageTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminListingTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminSettingsFormTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAdminTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserAutocompleteTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserBlocksTests.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserCacheTagsTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserCancelTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserCreateFailMailTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserCreateTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserDeleteTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserEditTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserEditedOwnAccountTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserEntityCallbacksTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserEntityReferenceTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserEntityTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserInstallTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserLanguageCreationTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserLanguageTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserLoginTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserPasswordResetTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserPermissionsTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserPictureTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserRegistrationTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserRoleAdminTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserRolesAssignmentTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserSaveTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserSearchTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserSignatureTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserTimeZoneTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserTokenReplaceTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserTranslationUITest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserValidateCurrentPassCustomFormTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/UserValidationTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessPermissionTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessRoleTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessRoleUITest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/AccessTestBase.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/ArgumentDefaultTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/ArgumentValidateTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/BulkFormTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerArgumentUserUidTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerFieldPermissionTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerFieldRoleTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerFieldUserNameTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerFilterPermissionTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/HandlerFilterUserNameTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/RelationshipRepresentativeNode.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/UserDataTest.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/UserTestBase.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Tests/Views/UserUnitTestBase.php (100%) rename core/modules/user/{lib/Drupal/user => src}/Theme/AdminNegotiator.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserAccessController.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserAuth.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserAuthInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserAutocomplete.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserData.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserDataInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserInterface.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserListBuilder.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserStorage.php (100%) rename core/modules/user/{lib/Drupal/user => src}/UserStorageInterface.php (100%) rename core/modules/user/tests/modules/user_form_test/{lib/Drupal/user_form_test => src}/Form/TestCurrentPassword.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Menu/UserLocalTasksTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/PermissionsHashTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Plugin/Action/AddRoleUserTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Plugin/Action/RemoveRoleUserTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Plugin/Action/RoleUserTestBase.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Plugin/Core/Entity/UserTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Plugin/views/field/UserBulkFormTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/TempStoreTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/UserAuthTest.php (100%) rename core/modules/user/tests/{Drupal/user/Tests => src}/Views/Argument/RolesRidTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/HighlightCommand.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/ReplaceTitleCommand.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/ScrollTopCommand.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/ShowButtonsCommand.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/TriggerPreviewCommand.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Ajax/ViewAjaxResponse.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Analyzer.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsAccess.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArea.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArgument.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArgumentDefault.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsArgumentValidator.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsCache.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsDisplay.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsDisplayExtender.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsExposedForm.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsField.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsFilter.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsHandlerAnnotationBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsJoin.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsPager.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsPluginAnnotationBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsQuery.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsRelationship.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsRow.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsSort.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsStyle.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Annotation/ViewsWizard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Controller/ViewAjaxController.php (100%) rename core/modules/views/{lib/Drupal/views => src}/DisplayBag.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Entity/Render/CurrentLanguageRenderer.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Entity/Render/DefaultLanguageRenderer.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Entity/Render/RendererBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Entity/Render/TranslationLanguageRenderer.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Entity/View.php (100%) rename core/modules/views/{lib/Drupal/views => src}/EventSubscriber/RouteSubscriber.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ExposedFormCache.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Form/ViewsExposedForm.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Form/ViewsForm.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Form/ViewsFormMainForm.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ManyToOneHelper.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Block/ViewsBlock.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Block/ViewsBlockBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Block/ViewsExposedFilterBlock.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/DefaultWizardDeriver.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsBlock.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsEntityArgumentValidator.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsEntityRow.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsExposedFilterBlock.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/Derivative/ViewsLocalTask.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/ViewsHandlerManager.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/ViewsPluginManager.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/entity_reference/selection/ViewsSelection.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/BrokenHandlerTrait.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/HandlerBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/PluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/PluginInterface.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/access/AccessPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/access/None.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/AreaPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Entity.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/HTTPStatusCode.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Messages.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Result.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Text.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/TextCustom.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/Title.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/TokenizeAreaPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/area/View.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/ArgumentPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Date.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/DayDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Formula.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/FullDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/GroupByNumeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/ManyToOne.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/MonthDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Null.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Numeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/String.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/WeekDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/YearDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument/YearMonthDate.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_default/ArgumentDefaultPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_default/Fixed.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_default/Raw.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_validator/Entity.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_validator/None.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/argument_validator/Numeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/CachePluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/None.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/Tag.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/cache/Time.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/Attachment.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/DefaultDisplay.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/DisplayPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/DisplayRouterInterface.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/Embed.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/Feed.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/Page.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display/PathPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display_extender/DefaultDisplayExtender.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/display_extender/DisplayExtenderPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/exposed_form/Basic.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/exposed_form/ExposedFormPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/exposed_form/InputRequired.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Boolean.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Counter.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Custom.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Date.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Dropbutton.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/EntityLabel.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/FieldPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/FileSize.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Links.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/MachineName.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Markup.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Numeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/PrerenderList.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Serialized.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/TimeInterval.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Url.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/field/Xss.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/BooleanOperator.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/BooleanOperatorString.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Bundle.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Combine.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Date.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Equality.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/FilterPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/GroupByNumeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/InOperator.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/ManyToOne.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Numeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/filter/String.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/join/JoinPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/join/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/join/Subquery.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Full.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Mini.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/None.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/PagerPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/Some.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/pager/SqlBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/query/QueryPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/query/Sql.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/relationship/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/relationship/GroupwiseMax.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/relationship/RelationshipPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/relationship/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/row/EntityRow.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/row/Fields.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/row/RowPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/row/RssFields.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Broken.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Date.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/GroupByNumeric.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/MenuHierarchy.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Random.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/SortPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/sort/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/DefaultStyle.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/DefaultSummary.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Grid.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/HtmlList.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Mapping.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Rss.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/StylePluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/Table.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/style/UnformattedSummary.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/wizard/Standard.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/wizard/WizardException.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/wizard/WizardInterface.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Plugin/views/wizard/WizardPluginBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ResultRow.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Routing/ViewPageController.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/BasicTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/DefaultViewsTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Entity/FieldEntityTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Entity/FilterEntityBundleTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Entity/RowEntityRenderersTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Entity/ViewEntityDependenciesTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/GlossaryTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaEntityTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaHTTPStatusCodeTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaTextTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaTitleTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/AreaViewTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/ArgumentDateTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/ArgumentNullTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/ArgumentStringTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldBooleanTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldCounterTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldCustomTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldDateTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldDropButtonTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldFileSizeTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldUnitTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldUrlTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldWebTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FieldXssTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterBooleanOperatorStringTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterBooleanOperatorTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterCombineTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterDateTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterEqualityTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterInOperatorTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterNumericTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/FilterStringTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/HandlerAliasTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/HandlerAllTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/HandlerTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/HandlerTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/RelationshipTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/SortDateTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/SortRandomTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Handler/SortTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ModuleTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/AccessTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/ArgumentDefaultTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/ArgumentValidatorTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/BlockDependenciesTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/CacheTagTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/CacheTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayAttachmentTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayExtenderTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayFeedTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayPageTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayPageWebTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/DisplayUnitTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/ExposedFormTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/FilterTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/JoinTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/MiniPagerTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/PagerTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/PluginTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/PluginUnitTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/QueryTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/RelationshipJoinTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/RowEntityTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/SqlQueryTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleGridTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleMappingTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleTableTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleTableUnitTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/StyleUnformattedTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Plugin/ViewsBlockTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/PluginInstanceTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/QueryGroupByTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/SearchIntegrationTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/SearchMultilingualTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/TestHelperPlugin.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/TokenReplaceTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewAjaxTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewElementTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewExecutableTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewRenderTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewStorageTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewTestData.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewUnitTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewsHooksTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewsTaxonomyAutocompleteTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewsTemplateTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/ViewsThemeIntegrationTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/BasicTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/ItemsPerPageTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/MenuTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/SortingTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/TaggedWithTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/WizardPluginBaseUnitTest.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Tests/Wizard/WizardTestBase.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewAccessController.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewExecutable.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewExecutableFactory.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewStorageInterface.php (100%) rename core/modules/views/{lib/Drupal/views => src}/Views.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewsAccessCheck.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewsData.php (100%) rename core/modules/views/{lib/Drupal/views => src}/ViewsDataHelper.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Form/ViewsTestDataElementForm.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/access/StaticTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/area/TestExample.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/argument_default/ArgumentDefaultTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/display/DisplayNoAreaTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/display/DisplayTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/display_extender/DisplayExtenderTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/display_extender/DisplayExtenderTest2.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/field/FieldTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/filter/FilterTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/join/JoinTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/query/QueryTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/row/RowTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/style/MappingTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/style/StyleTemplateTest.php (100%) rename core/modules/views/tests/modules/views_test_data/{lib/Drupal/views_test_data => src}/Plugin/views/style/StyleTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Controller/ViewAjaxControllerTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Entity/ViewTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/EventSubscriber/RouteSubscriberTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/Block/ViewsBlockTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/Derivative/ViewsLocalTaskTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/area/MessagesTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/area/ResultTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/argument_default/RawTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/argument_validator/EntityTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/display/PathPluginBaseTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/field/CounterTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Plugin/pager/PagerPluginBaseTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/PluginBaseTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/PluginTypeListTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/Routing/ViewPageControllerTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/ViewExecutableUnitTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/ViewsDataHelperTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/ViewsDataTest.php (100%) rename core/modules/views/tests/{Drupal/views/Tests => src}/ViewsTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Controller/ViewsUIController.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/AdvancedSettingsForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/AddHandler.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Analyze.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandler.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandlerExtra.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ConfigHandlerGroup.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Display.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/EditDetails.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/Rearrange.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/RearrangeFilter.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ReorderDisplays.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ViewsFormBase.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/Ajax/ViewsFormInterface.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/BasicSettingsForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Form/BreakLockForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ParamConverter/ViewUIConverter.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/AnalyzeTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/CachedDataUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/CustomBooleanTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DefaultViewsTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayAttachmentTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayExtenderUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayPath.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/DisplayTestCRUD.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/ExposedFormUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/FieldUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/FilterBooleanWebTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/GroupByTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/HandlerTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/OverrideDisplaysTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/PreviewTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/QueryTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/RearrangeFieldsTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/RedirectTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/RowUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/SettingsTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/StorageTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/StyleUITest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/TagTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/UITestBase.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/ViewEditTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/ViewsUITourTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/Tests/WizardTest.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewAddForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewCloneForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewDeleteForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewEditForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewFormBase.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewListBuilder.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewPreviewForm.php (100%) rename core/modules/views_ui/{lib/Drupal/views_ui => src}/ViewUI.php (100%) rename core/modules/views_ui/tests/{Drupal/views_ui/Tests => src}/Form/Ajax/RearrangeFilterTest.php (100%) rename core/modules/views_ui/tests/{Drupal/views_ui/Tests => src}/ViewListBuilderTest.php (100%) rename core/modules/views_ui/tests/{Drupal/views_ui/Tests => src}/ViewUIObjectTest.php (100%) rename core/modules/xmlrpc/{lib/Drupal/xmlrpc => src}/Controller/XmlrpcController.php (100%) rename core/modules/xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcBasicTest.php (100%) rename core/modules/xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcMessagesTest.php (100%) rename core/modules/xmlrpc/{lib/Drupal/xmlrpc => src}/Tests/XmlRpcValidatorTest.php (100%) rename core/profiles/minimal/{lib/Drupal/minimal => src}/Tests/MinimalTest.php (100%) rename core/profiles/standard/{lib/Drupal/standard => src}/Tests/StandardTest.php (100%) rename core/profiles/testing/modules/drupal_system_listing_compatible_test/{lib/Drupal/drupal_system_listing_compatible_test => src}/Tests/SystemListingCompatibleTest.php (100%) diff --git a/core/modules/action/lib/Drupal/action/ActionAddForm.php b/core/modules/action/src/ActionAddForm.php similarity index 100% rename from core/modules/action/lib/Drupal/action/ActionAddForm.php rename to core/modules/action/src/ActionAddForm.php diff --git a/core/modules/action/lib/Drupal/action/ActionEditForm.php b/core/modules/action/src/ActionEditForm.php similarity index 100% rename from core/modules/action/lib/Drupal/action/ActionEditForm.php rename to core/modules/action/src/ActionEditForm.php diff --git a/core/modules/action/lib/Drupal/action/ActionFormBase.php b/core/modules/action/src/ActionFormBase.php similarity index 100% rename from core/modules/action/lib/Drupal/action/ActionFormBase.php rename to core/modules/action/src/ActionFormBase.php diff --git a/core/modules/action/lib/Drupal/action/ActionListBuilder.php b/core/modules/action/src/ActionListBuilder.php similarity index 100% rename from core/modules/action/lib/Drupal/action/ActionListBuilder.php rename to core/modules/action/src/ActionListBuilder.php diff --git a/core/modules/action/lib/Drupal/action/Form/ActionAdminManageForm.php b/core/modules/action/src/Form/ActionAdminManageForm.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Form/ActionAdminManageForm.php rename to core/modules/action/src/Form/ActionAdminManageForm.php diff --git a/core/modules/action/lib/Drupal/action/Form/ActionDeleteForm.php b/core/modules/action/src/Form/ActionDeleteForm.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Form/ActionDeleteForm.php rename to core/modules/action/src/Form/ActionDeleteForm.php diff --git a/core/modules/action/lib/Drupal/action/Plugin/Action/EmailAction.php b/core/modules/action/src/Plugin/Action/EmailAction.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Plugin/Action/EmailAction.php rename to core/modules/action/src/Plugin/Action/EmailAction.php diff --git a/core/modules/action/lib/Drupal/action/Plugin/Action/GotoAction.php b/core/modules/action/src/Plugin/Action/GotoAction.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Plugin/Action/GotoAction.php rename to core/modules/action/src/Plugin/Action/GotoAction.php diff --git a/core/modules/action/lib/Drupal/action/Plugin/Action/MessageAction.php b/core/modules/action/src/Plugin/Action/MessageAction.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Plugin/Action/MessageAction.php rename to core/modules/action/src/Plugin/Action/MessageAction.php diff --git a/core/modules/action/lib/Drupal/action/Tests/ActionUninstallTest.php b/core/modules/action/src/Tests/ActionUninstallTest.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Tests/ActionUninstallTest.php rename to core/modules/action/src/Tests/ActionUninstallTest.php diff --git a/core/modules/action/lib/Drupal/action/Tests/BulkFormTest.php b/core/modules/action/src/Tests/BulkFormTest.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Tests/BulkFormTest.php rename to core/modules/action/src/Tests/BulkFormTest.php diff --git a/core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php b/core/modules/action/src/Tests/ConfigurationTest.php similarity index 100% rename from core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php rename to core/modules/action/src/Tests/ConfigurationTest.php diff --git a/core/modules/action/tests/Drupal/action/Tests/Menu/ActionLocalTasksTest.php b/core/modules/action/tests/src/Menu/ActionLocalTasksTest.php similarity index 100% rename from core/modules/action/tests/Drupal/action/Tests/Menu/ActionLocalTasksTest.php rename to core/modules/action/tests/src/Menu/ActionLocalTasksTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorFetcher.php b/core/modules/aggregator/src/Annotation/AggregatorFetcher.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorFetcher.php rename to core/modules/aggregator/src/Annotation/AggregatorFetcher.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorParser.php b/core/modules/aggregator/src/Annotation/AggregatorParser.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorParser.php rename to core/modules/aggregator/src/Annotation/AggregatorParser.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorProcessor.php b/core/modules/aggregator/src/Annotation/AggregatorProcessor.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Annotation/AggregatorProcessor.php rename to core/modules/aggregator/src/Annotation/AggregatorProcessor.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php b/core/modules/aggregator/src/Controller/AggregatorController.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Controller/AggregatorController.php rename to core/modules/aggregator/src/Controller/AggregatorController.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php b/core/modules/aggregator/src/Entity/Feed.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Entity/Feed.php rename to core/modules/aggregator/src/Entity/Feed.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Entity/Item.php b/core/modules/aggregator/src/Entity/Item.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Entity/Item.php rename to core/modules/aggregator/src/Entity/Item.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedForm.php b/core/modules/aggregator/src/FeedForm.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/FeedForm.php rename to core/modules/aggregator/src/FeedForm.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedInterface.php b/core/modules/aggregator/src/FeedInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/FeedInterface.php rename to core/modules/aggregator/src/FeedInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedStorage.php b/core/modules/aggregator/src/FeedStorage.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/FeedStorage.php rename to core/modules/aggregator/src/FeedStorage.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedStorageInterface.php b/core/modules/aggregator/src/FeedStorageInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/FeedStorageInterface.php rename to core/modules/aggregator/src/FeedStorageInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedViewBuilder.php b/core/modules/aggregator/src/FeedViewBuilder.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/FeedViewBuilder.php rename to core/modules/aggregator/src/FeedViewBuilder.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Form/FeedDeleteForm.php b/core/modules/aggregator/src/Form/FeedDeleteForm.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Form/FeedDeleteForm.php rename to core/modules/aggregator/src/Form/FeedDeleteForm.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Form/FeedItemsDeleteForm.php b/core/modules/aggregator/src/Form/FeedItemsDeleteForm.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Form/FeedItemsDeleteForm.php rename to core/modules/aggregator/src/Form/FeedItemsDeleteForm.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php b/core/modules/aggregator/src/Form/OpmlFeedAdd.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Form/OpmlFeedAdd.php rename to core/modules/aggregator/src/Form/OpmlFeedAdd.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Form/SettingsForm.php b/core/modules/aggregator/src/Form/SettingsForm.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Form/SettingsForm.php rename to core/modules/aggregator/src/Form/SettingsForm.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemInterface.php b/core/modules/aggregator/src/ItemInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemInterface.php rename to core/modules/aggregator/src/ItemInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorage.php b/core/modules/aggregator/src/ItemStorage.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemStorage.php rename to core/modules/aggregator/src/ItemStorage.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageInterface.php b/core/modules/aggregator/src/ItemStorageInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemStorageInterface.php rename to core/modules/aggregator/src/ItemStorageInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemViewBuilder.php b/core/modules/aggregator/src/ItemViewBuilder.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemViewBuilder.php rename to core/modules/aggregator/src/ItemViewBuilder.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemsImporter.php b/core/modules/aggregator/src/ItemsImporter.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemsImporter.php rename to core/modules/aggregator/src/ItemsImporter.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemsImporterInterface.php b/core/modules/aggregator/src/ItemsImporterInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/ItemsImporterInterface.php rename to core/modules/aggregator/src/ItemsImporterInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/AggregatorPluginManager.php b/core/modules/aggregator/src/Plugin/AggregatorPluginManager.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/AggregatorPluginManager.php rename to core/modules/aggregator/src/Plugin/AggregatorPluginManager.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/AggregatorPluginSettingsBase.php b/core/modules/aggregator/src/Plugin/AggregatorPluginSettingsBase.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/AggregatorPluginSettingsBase.php rename to core/modules/aggregator/src/Plugin/AggregatorPluginSettingsBase.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php b/core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php rename to core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/FetcherInterface.php b/core/modules/aggregator/src/Plugin/FetcherInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/FetcherInterface.php rename to core/modules/aggregator/src/Plugin/FetcherInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/ParserInterface.php b/core/modules/aggregator/src/Plugin/ParserInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/ParserInterface.php rename to core/modules/aggregator/src/Plugin/ParserInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/ProcessorInterface.php b/core/modules/aggregator/src/Plugin/ProcessorInterface.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/ProcessorInterface.php rename to core/modules/aggregator/src/Plugin/ProcessorInterface.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/fetcher/DefaultFetcher.php b/core/modules/aggregator/src/Plugin/aggregator/fetcher/DefaultFetcher.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/fetcher/DefaultFetcher.php rename to core/modules/aggregator/src/Plugin/aggregator/fetcher/DefaultFetcher.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/parser/DefaultParser.php b/core/modules/aggregator/src/Plugin/aggregator/parser/DefaultParser.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/parser/DefaultParser.php rename to core/modules/aggregator/src/Plugin/aggregator/parser/DefaultParser.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/processor/DefaultProcessor.php b/core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/aggregator/processor/DefaultProcessor.php rename to core/modules/aggregator/src/Plugin/aggregator/processor/DefaultProcessor.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php b/core/modules/aggregator/src/Plugin/views/argument/Fid.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php rename to core/modules/aggregator/src/Plugin/views/argument/Fid.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php b/core/modules/aggregator/src/Plugin/views/argument/Iid.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php rename to core/modules/aggregator/src/Plugin/views/argument/Iid.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php b/core/modules/aggregator/src/Plugin/views/field/TitleLink.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/TitleLink.php rename to core/modules/aggregator/src/Plugin/views/field/TitleLink.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Xss.php b/core/modules/aggregator/src/Plugin/views/field/Xss.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/field/Xss.php rename to core/modules/aggregator/src/Plugin/views/field/Xss.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/row/Rss.php b/core/modules/aggregator/src/Plugin/views/row/Rss.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/row/Rss.php rename to core/modules/aggregator/src/Plugin/views/row/Rss.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php b/core/modules/aggregator/src/Tests/AddFeedTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php rename to core/modules/aggregator/src/Tests/AddFeedTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php b/core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php rename to core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php b/core/modules/aggregator/src/Tests/AggregatorCronTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php rename to core/modules/aggregator/src/Tests/AggregatorCronTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php b/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php rename to core/modules/aggregator/src/Tests/AggregatorRenderingTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php b/core/modules/aggregator/src/Tests/AggregatorTestBase.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php rename to core/modules/aggregator/src/Tests/AggregatorTestBase.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/DeleteFeedItemTest.php b/core/modules/aggregator/src/Tests/DeleteFeedItemTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/DeleteFeedItemTest.php rename to core/modules/aggregator/src/Tests/DeleteFeedItemTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/DeleteFeedTest.php b/core/modules/aggregator/src/Tests/DeleteFeedTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/DeleteFeedTest.php rename to core/modules/aggregator/src/Tests/DeleteFeedTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedFetcherPluginTest.php b/core/modules/aggregator/src/Tests/FeedFetcherPluginTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedFetcherPluginTest.php rename to core/modules/aggregator/src/Tests/FeedFetcherPluginTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedLanguageTest.php b/core/modules/aggregator/src/Tests/FeedLanguageTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedLanguageTest.php rename to core/modules/aggregator/src/Tests/FeedLanguageTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php b/core/modules/aggregator/src/Tests/FeedParserTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php rename to core/modules/aggregator/src/Tests/FeedParserTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedProcessorPluginTest.php b/core/modules/aggregator/src/Tests/FeedProcessorPluginTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedProcessorPluginTest.php rename to core/modules/aggregator/src/Tests/FeedProcessorPluginTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php b/core/modules/aggregator/src/Tests/ImportOpmlTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php rename to core/modules/aggregator/src/Tests/ImportOpmlTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php b/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php rename to core/modules/aggregator/src/Tests/UpdateFeedItemTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php b/core/modules/aggregator/src/Tests/UpdateFeedTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php rename to core/modules/aggregator/src/Tests/UpdateFeedTest.php diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/Views/IntegrationTest.php b/core/modules/aggregator/src/Tests/Views/IntegrationTest.php similarity index 100% rename from core/modules/aggregator/lib/Drupal/aggregator/Tests/Views/IntegrationTest.php rename to core/modules/aggregator/src/Tests/Views/IntegrationTest.php diff --git a/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Controller/AggregatorTestRssController.php b/core/modules/aggregator/tests/modules/aggregator_test/src/Controller/AggregatorTestRssController.php similarity index 100% rename from core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Controller/AggregatorTestRssController.php rename to core/modules/aggregator/tests/modules/aggregator_test/src/Controller/AggregatorTestRssController.php diff --git a/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/fetcher/TestFetcher.php b/core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/fetcher/TestFetcher.php similarity index 100% rename from core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/fetcher/TestFetcher.php rename to core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/fetcher/TestFetcher.php diff --git a/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/parser/TestParser.php b/core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/parser/TestParser.php similarity index 100% rename from core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/parser/TestParser.php rename to core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/parser/TestParser.php diff --git a/core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/processor/TestProcessor.php b/core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php similarity index 100% rename from core/modules/aggregator/tests/modules/aggregator_test/lib/Drupal/aggregator_test/Plugin/aggregator/processor/TestProcessor.php rename to core/modules/aggregator/tests/modules/aggregator_test/src/Plugin/aggregator/processor/TestProcessor.php diff --git a/core/modules/aggregator/tests/Drupal/aggregator/Tests/Menu/AggregatorLocalTasksTest.php b/core/modules/aggregator/tests/src/Menu/AggregatorLocalTasksTest.php similarity index 100% rename from core/modules/aggregator/tests/Drupal/aggregator/Tests/Menu/AggregatorLocalTasksTest.php rename to core/modules/aggregator/tests/src/Menu/AggregatorLocalTasksTest.php diff --git a/core/modules/aggregator/tests/Drupal/aggregator/Tests/Plugin/AggregatorPluginSettingsBaseTest.php b/core/modules/aggregator/tests/src/Plugin/AggregatorPluginSettingsBaseTest.php similarity index 100% rename from core/modules/aggregator/tests/Drupal/aggregator/Tests/Plugin/AggregatorPluginSettingsBaseTest.php rename to core/modules/aggregator/tests/src/Plugin/AggregatorPluginSettingsBaseTest.php diff --git a/core/modules/ban/lib/Drupal/ban/BanIpManager.php b/core/modules/ban/src/BanIpManager.php similarity index 100% rename from core/modules/ban/lib/Drupal/ban/BanIpManager.php rename to core/modules/ban/src/BanIpManager.php diff --git a/core/modules/ban/lib/Drupal/ban/BanIpManagerInterface.php b/core/modules/ban/src/BanIpManagerInterface.php old mode 100755 new mode 100644 similarity index 100% rename from core/modules/ban/lib/Drupal/ban/BanIpManagerInterface.php rename to core/modules/ban/src/BanIpManagerInterface.php diff --git a/core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php b/core/modules/ban/src/EventSubscriber/BanSubscriber.php similarity index 100% rename from core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php rename to core/modules/ban/src/EventSubscriber/BanSubscriber.php diff --git a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php b/core/modules/ban/src/Form/BanAdmin.php similarity index 100% rename from core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php rename to core/modules/ban/src/Form/BanAdmin.php diff --git a/core/modules/ban/lib/Drupal/ban/Form/BanDelete.php b/core/modules/ban/src/Form/BanDelete.php similarity index 100% rename from core/modules/ban/lib/Drupal/ban/Form/BanDelete.php rename to core/modules/ban/src/Form/BanDelete.php diff --git a/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php b/core/modules/ban/src/Tests/IpAddressBlockingTest.php similarity index 100% rename from core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php rename to core/modules/ban/src/Tests/IpAddressBlockingTest.php diff --git a/core/modules/basic_auth/lib/Drupal/basic_auth/Authentication/Provider/BasicAuth.php b/core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php similarity index 100% rename from core/modules/basic_auth/lib/Drupal/basic_auth/Authentication/Provider/BasicAuth.php rename to core/modules/basic_auth/src/Authentication/Provider/BasicAuth.php diff --git a/core/modules/basic_auth/lib/Drupal/basic_auth/Tests/Authentication/BasicAuthTest.php b/core/modules/basic_auth/src/Tests/Authentication/BasicAuthTest.php similarity index 100% rename from core/modules/basic_auth/lib/Drupal/basic_auth/Tests/Authentication/BasicAuthTest.php rename to core/modules/basic_auth/src/Tests/Authentication/BasicAuthTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php b/core/modules/block/custom_block/src/Controller/CustomBlockController.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Controller/CustomBlockController.php rename to core/modules/block/custom_block/src/Controller/CustomBlockController.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockAccessController.php b/core/modules/block/custom_block/src/CustomBlockAccessController.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockAccessController.php rename to core/modules/block/custom_block/src/CustomBlockAccessController.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockForm.php b/core/modules/block/custom_block/src/CustomBlockForm.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockForm.php rename to core/modules/block/custom_block/src/CustomBlockForm.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php b/core/modules/block/custom_block/src/CustomBlockInterface.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php rename to core/modules/block/custom_block/src/CustomBlockInterface.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockListBuilder.php b/core/modules/block/custom_block/src/CustomBlockListBuilder.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockListBuilder.php rename to core/modules/block/custom_block/src/CustomBlockListBuilder.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php b/core/modules/block/custom_block/src/CustomBlockTranslationHandler.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php rename to core/modules/block/custom_block/src/CustomBlockTranslationHandler.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeForm.php b/core/modules/block/custom_block/src/CustomBlockTypeForm.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeForm.php rename to core/modules/block/custom_block/src/CustomBlockTypeForm.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeInterface.php b/core/modules/block/custom_block/src/CustomBlockTypeInterface.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeInterface.php rename to core/modules/block/custom_block/src/CustomBlockTypeInterface.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeListBuilder.php b/core/modules/block/custom_block/src/CustomBlockTypeListBuilder.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTypeListBuilder.php rename to core/modules/block/custom_block/src/CustomBlockTypeListBuilder.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockViewBuilder.php b/core/modules/block/custom_block/src/CustomBlockViewBuilder.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockViewBuilder.php rename to core/modules/block/custom_block/src/CustomBlockViewBuilder.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Entity/CustomBlock.php b/core/modules/block/custom_block/src/Entity/CustomBlock.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Entity/CustomBlock.php rename to core/modules/block/custom_block/src/Entity/CustomBlock.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Entity/CustomBlockType.php b/core/modules/block/custom_block/src/Entity/CustomBlockType.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Entity/CustomBlockType.php rename to core/modules/block/custom_block/src/Entity/CustomBlockType.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Form/CustomBlockDeleteForm.php b/core/modules/block/custom_block/src/Form/CustomBlockDeleteForm.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Form/CustomBlockDeleteForm.php rename to core/modules/block/custom_block/src/Form/CustomBlockDeleteForm.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Form/CustomBlockTypeDeleteForm.php b/core/modules/block/custom_block/src/Form/CustomBlockTypeDeleteForm.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Form/CustomBlockTypeDeleteForm.php rename to core/modules/block/custom_block/src/Form/CustomBlockTypeDeleteForm.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php b/core/modules/block/custom_block/src/Plugin/Block/CustomBlockBlock.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php rename to core/modules/block/custom_block/src/Plugin/Block/CustomBlockBlock.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Derivative/CustomBlock.php b/core/modules/block/custom_block/src/Plugin/Derivative/CustomBlock.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Derivative/CustomBlock.php rename to core/modules/block/custom_block/src/Plugin/Derivative/CustomBlock.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php b/core/modules/block/custom_block/src/Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php rename to core/modules/block/custom_block/src/Plugin/Menu/LocalAction/CustomBlockAddLocalAction.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockCacheTagsTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockCacheTagsTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockCacheTagsTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockCacheTagsTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockCreationTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockCreationTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockCreationTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockCreationTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockFieldTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockFieldTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockFieldTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockFieldTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockListTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockListTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockListTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockListTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockPageViewTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockPageViewTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockPageViewTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockPageViewTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockRevisionsTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockRevisionsTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockRevisionsTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockRevisionsTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockSaveTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockSaveTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockSaveTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php b/core/modules/block/custom_block/src/Tests/CustomBlockTestBase.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php rename to core/modules/block/custom_block/src/Tests/CustomBlockTestBase.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php b/core/modules/block/custom_block/src/Tests/CustomBlockTranslationUITest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockTranslationUITest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTypeTest.php b/core/modules/block/custom_block/src/Tests/CustomBlockTypeTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTypeTest.php rename to core/modules/block/custom_block/src/Tests/CustomBlockTypeTest.php diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/PageEditTest.php b/core/modules/block/custom_block/src/Tests/PageEditTest.php similarity index 100% rename from core/modules/block/custom_block/lib/Drupal/custom_block/Tests/PageEditTest.php rename to core/modules/block/custom_block/src/Tests/PageEditTest.php diff --git a/core/modules/block/custom_block/tests/Drupal/custom_block/Tests/Menu/CustomBlockLocalTasksTest.php b/core/modules/block/custom_block/tests/src/Menu/CustomBlockLocalTasksTest.php similarity index 100% rename from core/modules/block/custom_block/tests/Drupal/custom_block/Tests/Menu/CustomBlockLocalTasksTest.php rename to core/modules/block/custom_block/tests/src/Menu/CustomBlockLocalTasksTest.php diff --git a/core/modules/block/lib/Drupal/block/Annotation/Block.php b/core/modules/block/src/Annotation/Block.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Annotation/Block.php rename to core/modules/block/src/Annotation/Block.php diff --git a/core/modules/block/lib/Drupal/block/BlockAccessController.php b/core/modules/block/src/BlockAccessController.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockAccessController.php rename to core/modules/block/src/BlockAccessController.php diff --git a/core/modules/block/lib/Drupal/block/BlockBase.php b/core/modules/block/src/BlockBase.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockBase.php rename to core/modules/block/src/BlockBase.php diff --git a/core/modules/block/lib/Drupal/block/BlockForm.php b/core/modules/block/src/BlockForm.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockForm.php rename to core/modules/block/src/BlockForm.php diff --git a/core/modules/block/lib/Drupal/block/BlockInterface.php b/core/modules/block/src/BlockInterface.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockInterface.php rename to core/modules/block/src/BlockInterface.php diff --git a/core/modules/block/lib/Drupal/block/BlockListBuilder.php b/core/modules/block/src/BlockListBuilder.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockListBuilder.php rename to core/modules/block/src/BlockListBuilder.php diff --git a/core/modules/block/lib/Drupal/block/BlockManager.php b/core/modules/block/src/BlockManager.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockManager.php rename to core/modules/block/src/BlockManager.php diff --git a/core/modules/block/lib/Drupal/block/BlockManagerInterface.php b/core/modules/block/src/BlockManagerInterface.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockManagerInterface.php rename to core/modules/block/src/BlockManagerInterface.php diff --git a/core/modules/block/lib/Drupal/block/BlockPluginBag.php b/core/modules/block/src/BlockPluginBag.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockPluginBag.php rename to core/modules/block/src/BlockPluginBag.php diff --git a/core/modules/block/lib/Drupal/block/BlockPluginInterface.php b/core/modules/block/src/BlockPluginInterface.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockPluginInterface.php rename to core/modules/block/src/BlockPluginInterface.php diff --git a/core/modules/block/lib/Drupal/block/BlockViewBuilder.php b/core/modules/block/src/BlockViewBuilder.php similarity index 100% rename from core/modules/block/lib/Drupal/block/BlockViewBuilder.php rename to core/modules/block/src/BlockViewBuilder.php diff --git a/core/modules/block/lib/Drupal/block/Controller/BlockAddController.php b/core/modules/block/src/Controller/BlockAddController.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Controller/BlockAddController.php rename to core/modules/block/src/Controller/BlockAddController.php diff --git a/core/modules/block/lib/Drupal/block/Controller/BlockController.php b/core/modules/block/src/Controller/BlockController.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Controller/BlockController.php rename to core/modules/block/src/Controller/BlockController.php diff --git a/core/modules/block/lib/Drupal/block/Controller/BlockListController.php b/core/modules/block/src/Controller/BlockListController.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Controller/BlockListController.php rename to core/modules/block/src/Controller/BlockListController.php diff --git a/core/modules/block/lib/Drupal/block/Controller/CategoryAutocompleteController.php b/core/modules/block/src/Controller/CategoryAutocompleteController.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Controller/CategoryAutocompleteController.php rename to core/modules/block/src/Controller/CategoryAutocompleteController.php diff --git a/core/modules/block/lib/Drupal/block/Entity/Block.php b/core/modules/block/src/Entity/Block.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Entity/Block.php rename to core/modules/block/src/Entity/Block.php diff --git a/core/modules/block/lib/Drupal/block/Form/BlockDeleteForm.php b/core/modules/block/src/Form/BlockDeleteForm.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Form/BlockDeleteForm.php rename to core/modules/block/src/Form/BlockDeleteForm.php diff --git a/core/modules/block/lib/Drupal/block/Plugin/Derivative/ThemeLocalTask.php b/core/modules/block/src/Plugin/Derivative/ThemeLocalTask.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Plugin/Derivative/ThemeLocalTask.php rename to core/modules/block/src/Plugin/Derivative/ThemeLocalTask.php diff --git a/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php b/core/modules/block/src/Plugin/views/display/Block.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php rename to core/modules/block/src/Plugin/views/display/Block.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php b/core/modules/block/src/Tests/BlockAdminThemeTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php rename to core/modules/block/src/Tests/BlockAdminThemeTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php b/core/modules/block/src/Tests/BlockCacheTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php rename to core/modules/block/src/Tests/BlockCacheTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php b/core/modules/block/src/Tests/BlockHiddenRegionTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php rename to core/modules/block/src/Tests/BlockHiddenRegionTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockHookOperationTest.php b/core/modules/block/src/Tests/BlockHookOperationTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockHookOperationTest.php rename to core/modules/block/src/Tests/BlockHookOperationTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockHtmlTest.php b/core/modules/block/src/Tests/BlockHtmlTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockHtmlTest.php rename to core/modules/block/src/Tests/BlockHtmlTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php b/core/modules/block/src/Tests/BlockInterfaceTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockInterfaceTest.php rename to core/modules/block/src/Tests/BlockInterfaceTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php b/core/modules/block/src/Tests/BlockInvalidRegionTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php rename to core/modules/block/src/Tests/BlockInvalidRegionTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php b/core/modules/block/src/Tests/BlockLanguageCacheTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockLanguageCacheTest.php rename to core/modules/block/src/Tests/BlockLanguageCacheTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php b/core/modules/block/src/Tests/BlockLanguageTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php rename to core/modules/block/src/Tests/BlockLanguageTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockPreprocessUnitTest.php b/core/modules/block/src/Tests/BlockPreprocessUnitTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockPreprocessUnitTest.php rename to core/modules/block/src/Tests/BlockPreprocessUnitTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockRenderOrderTest.php b/core/modules/block/src/Tests/BlockRenderOrderTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockRenderOrderTest.php rename to core/modules/block/src/Tests/BlockRenderOrderTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php b/core/modules/block/src/Tests/BlockStorageUnitTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php rename to core/modules/block/src/Tests/BlockStorageUnitTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockSystemBrandingTest.php b/core/modules/block/src/Tests/BlockSystemBrandingTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockSystemBrandingTest.php rename to core/modules/block/src/Tests/BlockSystemBrandingTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php b/core/modules/block/src/Tests/BlockTemplateSuggestionsUnitTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php rename to core/modules/block/src/Tests/BlockTemplateSuggestionsUnitTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTest.php b/core/modules/block/src/Tests/BlockTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockTest.php rename to core/modules/block/src/Tests/BlockTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php b/core/modules/block/src/Tests/BlockTestBase.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockTestBase.php rename to core/modules/block/src/Tests/BlockTestBase.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTitleXSSTest.php b/core/modules/block/src/Tests/BlockTitleXSSTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockTitleXSSTest.php rename to core/modules/block/src/Tests/BlockTitleXSSTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockUiTest.php b/core/modules/block/src/Tests/BlockUiTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockUiTest.php rename to core/modules/block/src/Tests/BlockUiTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockViewBuilderTest.php b/core/modules/block/src/Tests/BlockViewBuilderTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/BlockViewBuilderTest.php rename to core/modules/block/src/Tests/BlockViewBuilderTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php b/core/modules/block/src/Tests/NewDefaultThemeBlocksTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php rename to core/modules/block/src/Tests/NewDefaultThemeBlocksTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php b/core/modules/block/src/Tests/NonDefaultBlockAdminTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php rename to core/modules/block/src/Tests/NonDefaultBlockAdminTest.php diff --git a/core/modules/block/lib/Drupal/block/Tests/Views/DisplayBlockTest.php b/core/modules/block/src/Tests/Views/DisplayBlockTest.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Tests/Views/DisplayBlockTest.php rename to core/modules/block/src/Tests/Views/DisplayBlockTest.php diff --git a/core/modules/block/lib/Drupal/block/Theme/AdminDemoNegotiator.php b/core/modules/block/src/Theme/AdminDemoNegotiator.php similarity index 100% rename from core/modules/block/lib/Drupal/block/Theme/AdminDemoNegotiator.php rename to core/modules/block/src/Theme/AdminDemoNegotiator.php diff --git a/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestBlockInstantiation.php similarity index 100% rename from core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestBlockInstantiation.php rename to core/modules/block/tests/modules/block_test/src/Plugin/Block/TestBlockInstantiation.php diff --git a/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestCacheBlock.php similarity index 100% rename from core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php rename to core/modules/block/tests/modules/block_test/src/Plugin/Block/TestCacheBlock.php diff --git a/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestHtmlBlock.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php similarity index 100% rename from core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestHtmlBlock.php rename to core/modules/block/tests/modules/block_test/src/Plugin/Block/TestHtmlBlock.php diff --git a/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php b/core/modules/block/tests/modules/block_test/src/Plugin/Block/TestXSSTitleBlock.php similarity index 100% rename from core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php rename to core/modules/block/tests/modules/block_test/src/Plugin/Block/TestXSSTitleBlock.php diff --git a/core/modules/block/tests/Drupal/block/Tests/BlockBaseTest.php b/core/modules/block/tests/src/BlockBaseTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/BlockBaseTest.php rename to core/modules/block/tests/src/BlockBaseTest.php diff --git a/core/modules/block/tests/Drupal/block/Tests/BlockConfigEntityUnitTest.php b/core/modules/block/tests/src/BlockConfigEntityUnitTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/BlockConfigEntityUnitTest.php rename to core/modules/block/tests/src/BlockConfigEntityUnitTest.php diff --git a/core/modules/block/tests/Drupal/block/Tests/BlockFormTest.php b/core/modules/block/tests/src/BlockFormTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/BlockFormTest.php rename to core/modules/block/tests/src/BlockFormTest.php diff --git a/core/modules/block/tests/Drupal/block/Tests/CategoryAutocompleteTest.php b/core/modules/block/tests/src/CategoryAutocompleteTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/CategoryAutocompleteTest.php rename to core/modules/block/tests/src/CategoryAutocompleteTest.php diff --git a/core/modules/block/tests/Drupal/block/Tests/Menu/BlockLocalTasksTest.php b/core/modules/block/tests/src/Menu/BlockLocalTasksTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/Menu/BlockLocalTasksTest.php rename to core/modules/block/tests/src/Menu/BlockLocalTasksTest.php diff --git a/core/modules/block/tests/Drupal/block/Tests/Plugin/views/display/BlockTest.php b/core/modules/block/tests/src/Plugin/views/display/BlockTest.php similarity index 100% rename from core/modules/block/tests/Drupal/block/Tests/Plugin/views/display/BlockTest.php rename to core/modules/block/tests/src/Plugin/views/display/BlockTest.php diff --git a/core/modules/book/lib/Drupal/book/Access/BookNodeIsRemovableAccessCheck.php b/core/modules/book/src/Access/BookNodeIsRemovableAccessCheck.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Access/BookNodeIsRemovableAccessCheck.php rename to core/modules/book/src/Access/BookNodeIsRemovableAccessCheck.php diff --git a/core/modules/book/lib/Drupal/book/BookBreadcrumbBuilder.php b/core/modules/book/src/BookBreadcrumbBuilder.php similarity index 100% rename from core/modules/book/lib/Drupal/book/BookBreadcrumbBuilder.php rename to core/modules/book/src/BookBreadcrumbBuilder.php diff --git a/core/modules/book/lib/Drupal/book/BookExport.php b/core/modules/book/src/BookExport.php similarity index 100% rename from core/modules/book/lib/Drupal/book/BookExport.php rename to core/modules/book/src/BookExport.php diff --git a/core/modules/book/lib/Drupal/book/BookManager.php b/core/modules/book/src/BookManager.php similarity index 100% rename from core/modules/book/lib/Drupal/book/BookManager.php rename to core/modules/book/src/BookManager.php diff --git a/core/modules/book/lib/Drupal/book/BookManagerInterface.php b/core/modules/book/src/BookManagerInterface.php similarity index 100% rename from core/modules/book/lib/Drupal/book/BookManagerInterface.php rename to core/modules/book/src/BookManagerInterface.php diff --git a/core/modules/book/lib/Drupal/book/BookOutline.php b/core/modules/book/src/BookOutline.php similarity index 100% rename from core/modules/book/lib/Drupal/book/BookOutline.php rename to core/modules/book/src/BookOutline.php diff --git a/core/modules/book/lib/Drupal/book/Controller/BookController.php b/core/modules/book/src/Controller/BookController.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Controller/BookController.php rename to core/modules/book/src/Controller/BookController.php diff --git a/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php b/core/modules/book/src/Form/BookAdminEditForm.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php rename to core/modules/book/src/Form/BookAdminEditForm.php diff --git a/core/modules/book/lib/Drupal/book/Form/BookOutlineForm.php b/core/modules/book/src/Form/BookOutlineForm.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Form/BookOutlineForm.php rename to core/modules/book/src/Form/BookOutlineForm.php diff --git a/core/modules/book/lib/Drupal/book/Form/BookRemoveForm.php b/core/modules/book/src/Form/BookRemoveForm.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Form/BookRemoveForm.php rename to core/modules/book/src/Form/BookRemoveForm.php diff --git a/core/modules/book/lib/Drupal/book/Form/BookSettingsForm.php b/core/modules/book/src/Form/BookSettingsForm.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Form/BookSettingsForm.php rename to core/modules/book/src/Form/BookSettingsForm.php diff --git a/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php b/core/modules/book/src/Plugin/Block/BookNavigationBlock.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php rename to core/modules/book/src/Plugin/Block/BookNavigationBlock.php diff --git a/core/modules/book/lib/Drupal/book/Tests/BookTest.php b/core/modules/book/src/Tests/BookTest.php similarity index 100% rename from core/modules/book/lib/Drupal/book/Tests/BookTest.php rename to core/modules/book/src/Tests/BookTest.php diff --git a/core/modules/book/tests/Drupal/book/Tests/BookManagerTest.php b/core/modules/book/tests/src/BookManagerTest.php similarity index 100% rename from core/modules/book/tests/Drupal/book/Tests/BookManagerTest.php rename to core/modules/book/tests/src/BookManagerTest.php diff --git a/core/modules/book/tests/Drupal/book/Tests/Menu/BookLocalTasksTest.php b/core/modules/book/tests/src/Menu/BookLocalTasksTest.php similarity index 100% rename from core/modules/book/tests/Drupal/book/Tests/Menu/BookLocalTasksTest.php rename to core/modules/book/tests/src/Menu/BookLocalTasksTest.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/BreakpointGroupInterface.php b/core/modules/breakpoint/src/BreakpointGroupInterface.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/BreakpointGroupInterface.php rename to core/modules/breakpoint/src/BreakpointGroupInterface.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/BreakpointInterface.php b/core/modules/breakpoint/src/BreakpointInterface.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/BreakpointInterface.php rename to core/modules/breakpoint/src/BreakpointInterface.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Entity/Breakpoint.php b/core/modules/breakpoint/src/Entity/Breakpoint.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Entity/Breakpoint.php rename to core/modules/breakpoint/src/Entity/Breakpoint.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Entity/BreakpointGroup.php b/core/modules/breakpoint/src/Entity/BreakpointGroup.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Entity/BreakpointGroup.php rename to core/modules/breakpoint/src/Entity/BreakpointGroup.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php b/core/modules/breakpoint/src/InvalidBreakpointException.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php rename to core/modules/breakpoint/src/InvalidBreakpointException.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php b/core/modules/breakpoint/src/InvalidBreakpointMediaQueryException.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php rename to core/modules/breakpoint/src/InvalidBreakpointMediaQueryException.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php b/core/modules/breakpoint/src/InvalidBreakpointNameException.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php rename to core/modules/breakpoint/src/InvalidBreakpointNameException.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php b/core/modules/breakpoint/src/InvalidBreakpointSourceException.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php rename to core/modules/breakpoint/src/InvalidBreakpointSourceException.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php b/core/modules/breakpoint/src/InvalidBreakpointSourceTypeException.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php rename to core/modules/breakpoint/src/InvalidBreakpointSourceTypeException.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php b/core/modules/breakpoint/src/Tests/BreakpointAPITest.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php rename to core/modules/breakpoint/src/Tests/BreakpointAPITest.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php b/core/modules/breakpoint/src/Tests/BreakpointCRUDTest.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php rename to core/modules/breakpoint/src/Tests/BreakpointCRUDTest.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php b/core/modules/breakpoint/src/Tests/BreakpointGroupAPITest.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php rename to core/modules/breakpoint/src/Tests/BreakpointGroupAPITest.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php b/core/modules/breakpoint/src/Tests/BreakpointGroupCRUDTest.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php rename to core/modules/breakpoint/src/Tests/BreakpointGroupCRUDTest.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php b/core/modules/breakpoint/src/Tests/BreakpointGroupTestBase.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php rename to core/modules/breakpoint/src/Tests/BreakpointGroupTestBase.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php b/core/modules/breakpoint/src/Tests/BreakpointTestBase.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php rename to core/modules/breakpoint/src/Tests/BreakpointTestBase.php diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php b/core/modules/breakpoint/src/Tests/BreakpointThemeTest.php similarity index 100% rename from core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php rename to core/modules/breakpoint/src/Tests/BreakpointThemeTest.php diff --git a/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointConfigEntityUnitTest.php b/core/modules/breakpoint/tests/src/BreakpointConfigEntityUnitTest.php similarity index 100% rename from core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointConfigEntityUnitTest.php rename to core/modules/breakpoint/tests/src/BreakpointConfigEntityUnitTest.php diff --git a/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointGroupConfigEntityUnitTest.php b/core/modules/breakpoint/tests/src/BreakpointGroupConfigEntityUnitTest.php similarity index 100% rename from core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointGroupConfigEntityUnitTest.php rename to core/modules/breakpoint/tests/src/BreakpointGroupConfigEntityUnitTest.php diff --git a/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php b/core/modules/breakpoint/tests/src/BreakpointMediaQueryTest.php similarity index 100% rename from core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php rename to core/modules/breakpoint/tests/src/BreakpointMediaQueryTest.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php b/core/modules/ckeditor/src/Annotation/CKEditorPlugin.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php rename to core/modules/ckeditor/src/Annotation/CKEditorPlugin.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginBase.php b/core/modules/ckeditor/src/CKEditorPluginBase.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginBase.php rename to core/modules/ckeditor/src/CKEditorPluginBase.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginButtonsInterface.php b/core/modules/ckeditor/src/CKEditorPluginButtonsInterface.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginButtonsInterface.php rename to core/modules/ckeditor/src/CKEditorPluginButtonsInterface.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginConfigurableInterface.php b/core/modules/ckeditor/src/CKEditorPluginConfigurableInterface.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginConfigurableInterface.php rename to core/modules/ckeditor/src/CKEditorPluginConfigurableInterface.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginContextualInterface.php b/core/modules/ckeditor/src/CKEditorPluginContextualInterface.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginContextualInterface.php rename to core/modules/ckeditor/src/CKEditorPluginContextualInterface.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginInterface.php b/core/modules/ckeditor/src/CKEditorPluginInterface.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginInterface.php rename to core/modules/ckeditor/src/CKEditorPluginInterface.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginManager.php b/core/modules/ckeditor/src/CKEditorPluginManager.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/CKEditorPluginManager.php rename to core/modules/ckeditor/src/CKEditorPluginManager.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalImage.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImage.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalImage.php rename to core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImage.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalImageCaption.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImageCaption.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalImageCaption.php rename to core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalImageCaption.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalLink.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalLink.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/DrupalLink.php rename to core/modules/ckeditor/src/Plugin/CKEditorPlugin/DrupalLink.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/Internal.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/Internal.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/Internal.php rename to core/modules/ckeditor/src/Plugin/CKEditorPlugin/Internal.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/StylesCombo.php b/core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/CKEditorPlugin/StylesCombo.php rename to core/modules/ckeditor/src/Plugin/CKEditorPlugin/StylesCombo.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php b/core/modules/ckeditor/src/Plugin/Editor/CKEditor.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php rename to core/modules/ckeditor/src/Plugin/Editor/CKEditor.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorAdminTest.php b/core/modules/ckeditor/src/Tests/CKEditorAdminTest.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorAdminTest.php rename to core/modules/ckeditor/src/Tests/CKEditorAdminTest.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorLoadingTest.php b/core/modules/ckeditor/src/Tests/CKEditorLoadingTest.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorLoadingTest.php rename to core/modules/ckeditor/src/Tests/CKEditorLoadingTest.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorPluginManagerTest.php b/core/modules/ckeditor/src/Tests/CKEditorPluginManagerTest.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorPluginManagerTest.php rename to core/modules/ckeditor/src/Tests/CKEditorPluginManagerTest.php diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorTest.php b/core/modules/ckeditor/src/Tests/CKEditorTest.php similarity index 100% rename from core/modules/ckeditor/lib/Drupal/ckeditor/Tests/CKEditorTest.php rename to core/modules/ckeditor/src/Tests/CKEditorTest.php diff --git a/core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/Llama.php b/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php similarity index 100% rename from core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/Llama.php rename to core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php diff --git a/core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaButton.php b/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaButton.php similarity index 100% rename from core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaButton.php rename to core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaButton.php diff --git a/core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaContextual.php b/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextual.php similarity index 100% rename from core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaContextual.php rename to core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextual.php diff --git a/core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaContextualAndButton.php b/core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextualAndButton.php similarity index 100% rename from core/modules/ckeditor/tests/modules/lib/Drupal/ckeditor_test/Plugin/CKEditorPlugin/LlamaContextualAndButton.php rename to core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextualAndButton.php diff --git a/core/modules/color/lib/Drupal/color/Tests/ColorConfigSchemaTest.php b/core/modules/color/src/Tests/ColorConfigSchemaTest.php similarity index 100% rename from core/modules/color/lib/Drupal/color/Tests/ColorConfigSchemaTest.php rename to core/modules/color/src/Tests/ColorConfigSchemaTest.php diff --git a/core/modules/color/lib/Drupal/color/Tests/ColorTest.php b/core/modules/color/src/Tests/ColorTest.php similarity index 100% rename from core/modules/color/lib/Drupal/color/Tests/ColorTest.php rename to core/modules/color/src/Tests/ColorTest.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentAccessController.php b/core/modules/comment/src/CommentAccessController.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentAccessController.php rename to core/modules/comment/src/CommentAccessController.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentBreadcrumbBuilder.php b/core/modules/comment/src/CommentBreadcrumbBuilder.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentBreadcrumbBuilder.php rename to core/modules/comment/src/CommentBreadcrumbBuilder.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentFieldNameItem.php b/core/modules/comment/src/CommentFieldNameItem.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentFieldNameItem.php rename to core/modules/comment/src/CommentFieldNameItem.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentFieldNameValue.php b/core/modules/comment/src/CommentFieldNameValue.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentFieldNameValue.php rename to core/modules/comment/src/CommentFieldNameValue.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentForm.php b/core/modules/comment/src/CommentForm.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentForm.php rename to core/modules/comment/src/CommentForm.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentInterface.php b/core/modules/comment/src/CommentInterface.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentInterface.php rename to core/modules/comment/src/CommentInterface.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentManager.php b/core/modules/comment/src/CommentManager.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentManager.php rename to core/modules/comment/src/CommentManager.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentManagerInterface.php b/core/modules/comment/src/CommentManagerInterface.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentManagerInterface.php rename to core/modules/comment/src/CommentManagerInterface.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentStatistics.php b/core/modules/comment/src/CommentStatistics.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentStatistics.php rename to core/modules/comment/src/CommentStatistics.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentStatisticsInterface.php b/core/modules/comment/src/CommentStatisticsInterface.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentStatisticsInterface.php rename to core/modules/comment/src/CommentStatisticsInterface.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentStorage.php b/core/modules/comment/src/CommentStorage.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentStorage.php rename to core/modules/comment/src/CommentStorage.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentStorageInterface.php b/core/modules/comment/src/CommentStorageInterface.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentStorageInterface.php rename to core/modules/comment/src/CommentStorageInterface.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php b/core/modules/comment/src/CommentTranslationHandler.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php rename to core/modules/comment/src/CommentTranslationHandler.php diff --git a/core/modules/comment/lib/Drupal/comment/CommentViewBuilder.php b/core/modules/comment/src/CommentViewBuilder.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/CommentViewBuilder.php rename to core/modules/comment/src/CommentViewBuilder.php diff --git a/core/modules/comment/lib/Drupal/comment/Controller/AdminController.php b/core/modules/comment/src/Controller/AdminController.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Controller/AdminController.php rename to core/modules/comment/src/Controller/AdminController.php diff --git a/core/modules/comment/lib/Drupal/comment/Controller/CommentController.php b/core/modules/comment/src/Controller/CommentController.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Controller/CommentController.php rename to core/modules/comment/src/Controller/CommentController.php diff --git a/core/modules/comment/lib/Drupal/comment/Entity/Comment.php b/core/modules/comment/src/Entity/Comment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Entity/Comment.php rename to core/modules/comment/src/Entity/Comment.php diff --git a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php b/core/modules/comment/src/Form/CommentAdminOverview.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php rename to core/modules/comment/src/Form/CommentAdminOverview.php diff --git a/core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php b/core/modules/comment/src/Form/ConfirmDeleteMultiple.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Form/ConfirmDeleteMultiple.php rename to core/modules/comment/src/Form/ConfirmDeleteMultiple.php diff --git a/core/modules/comment/lib/Drupal/comment/Form/DeleteForm.php b/core/modules/comment/src/Form/DeleteForm.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Form/DeleteForm.php rename to core/modules/comment/src/Form/DeleteForm.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Action/PublishComment.php b/core/modules/comment/src/Plugin/Action/PublishComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Action/PublishComment.php rename to core/modules/comment/src/Plugin/Action/PublishComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Action/SaveComment.php b/core/modules/comment/src/Plugin/Action/SaveComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Action/SaveComment.php rename to core/modules/comment/src/Plugin/Action/SaveComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Action/UnpublishByKeywordComment.php b/core/modules/comment/src/Plugin/Action/UnpublishByKeywordComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Action/UnpublishByKeywordComment.php rename to core/modules/comment/src/Plugin/Action/UnpublishByKeywordComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Action/UnpublishComment.php b/core/modules/comment/src/Plugin/Action/UnpublishComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Action/UnpublishComment.php rename to core/modules/comment/src/Plugin/Action/UnpublishComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php b/core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php rename to core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldType/CommentItem.php b/core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldType/CommentItem.php rename to core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldType/CommentItemInterface.php b/core/modules/comment/src/Plugin/Field/FieldType/CommentItemInterface.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldType/CommentItemInterface.php rename to core/modules/comment/src/Plugin/Field/FieldType/CommentItemInterface.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldWidget/CommentWidget.php b/core/modules/comment/src/Plugin/Field/FieldWidget/CommentWidget.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Field/FieldWidget/CommentWidget.php rename to core/modules/comment/src/Plugin/Field/FieldWidget/CommentWidget.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Menu/LocalTask/UnapprovedComments.php b/core/modules/comment/src/Plugin/Menu/LocalTask/UnapprovedComments.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Menu/LocalTask/UnapprovedComments.php rename to core/modules/comment/src/Plugin/Menu/LocalTask/UnapprovedComments.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Validation/Constraint/CommentNameConstraint.php b/core/modules/comment/src/Plugin/Validation/Constraint/CommentNameConstraint.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Validation/Constraint/CommentNameConstraint.php rename to core/modules/comment/src/Plugin/Validation/Constraint/CommentNameConstraint.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Validation/Constraint/CommentNameConstraintValidator.php b/core/modules/comment/src/Plugin/Validation/Constraint/CommentNameConstraintValidator.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/Validation/Constraint/CommentNameConstraintValidator.php rename to core/modules/comment/src/Plugin/Validation/Constraint/CommentNameConstraintValidator.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/entity_reference/selection/CommentSelection.php b/core/modules/comment/src/Plugin/entity_reference/selection/CommentSelection.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/entity_reference/selection/CommentSelection.php rename to core/modules/comment/src/Plugin/entity_reference/selection/CommentSelection.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php b/core/modules/comment/src/Plugin/views/argument/UserUid.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php rename to core/modules/comment/src/Plugin/views/argument/UserUid.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php b/core/modules/comment/src/Plugin/views/field/Comment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php rename to core/modules/comment/src/Plugin/views/field/Comment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php b/core/modules/comment/src/Plugin/views/field/Depth.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php rename to core/modules/comment/src/Plugin/views/field/Depth.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/EntityLink.php b/core/modules/comment/src/Plugin/views/field/EntityLink.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/EntityLink.php rename to core/modules/comment/src/Plugin/views/field/EntityLink.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php b/core/modules/comment/src/Plugin/views/field/LastTimestamp.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php rename to core/modules/comment/src/Plugin/views/field/LastTimestamp.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php b/core/modules/comment/src/Plugin/views/field/Link.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php rename to core/modules/comment/src/Plugin/views/field/Link.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php b/core/modules/comment/src/Plugin/views/field/LinkApprove.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php rename to core/modules/comment/src/Plugin/views/field/LinkApprove.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php b/core/modules/comment/src/Plugin/views/field/LinkDelete.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkDelete.php rename to core/modules/comment/src/Plugin/views/field/LinkDelete.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php b/core/modules/comment/src/Plugin/views/field/LinkEdit.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkEdit.php rename to core/modules/comment/src/Plugin/views/field/LinkEdit.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php b/core/modules/comment/src/Plugin/views/field/LinkReply.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkReply.php rename to core/modules/comment/src/Plugin/views/field/LinkReply.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php b/core/modules/comment/src/Plugin/views/field/NodeComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php rename to core/modules/comment/src/Plugin/views/field/NodeComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php b/core/modules/comment/src/Plugin/views/field/NodeNewComments.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php rename to core/modules/comment/src/Plugin/views/field/NodeNewComments.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/StatisticsLastCommentName.php b/core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/StatisticsLastCommentName.php rename to core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/StatisticsLastUpdated.php rename to core/modules/comment/src/Plugin/views/field/StatisticsLastUpdated.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php b/core/modules/comment/src/Plugin/views/field/Username.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php rename to core/modules/comment/src/Plugin/views/field/Username.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php b/core/modules/comment/src/Plugin/views/filter/NodeComment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php rename to core/modules/comment/src/Plugin/views/filter/NodeComment.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/filter/StatisticsLastUpdated.php rename to core/modules/comment/src/Plugin/views/filter/StatisticsLastUpdated.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php b/core/modules/comment/src/Plugin/views/filter/UserUid.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php rename to core/modules/comment/src/Plugin/views/filter/UserUid.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/row/CommentRow.php b/core/modules/comment/src/Plugin/views/row/CommentRow.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/row/CommentRow.php rename to core/modules/comment/src/Plugin/views/row/CommentRow.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php b/core/modules/comment/src/Plugin/views/row/Rss.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php rename to core/modules/comment/src/Plugin/views/row/Rss.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/StatisticsLastCommentName.php b/core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/sort/StatisticsLastCommentName.php rename to core/modules/comment/src/Plugin/views/sort/StatisticsLastCommentName.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/StatisticsLastUpdated.php b/core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/sort/StatisticsLastUpdated.php rename to core/modules/comment/src/Plugin/views/sort/StatisticsLastUpdated.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php b/core/modules/comment/src/Plugin/views/sort/Thread.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php rename to core/modules/comment/src/Plugin/views/sort/Thread.php diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php b/core/modules/comment/src/Plugin/views/wizard/Comment.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php rename to core/modules/comment/src/Plugin/views/wizard/Comment.php diff --git a/core/modules/comment/lib/Drupal/comment/Routing/CommentBundleEnhancer.php b/core/modules/comment/src/Routing/CommentBundleEnhancer.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Routing/CommentBundleEnhancer.php rename to core/modules/comment/src/Routing/CommentBundleEnhancer.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php b/core/modules/comment/src/Tests/CommentActionsTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php rename to core/modules/comment/src/Tests/CommentActionsTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php b/core/modules/comment/src/Tests/CommentAdminTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentAdminTest.php rename to core/modules/comment/src/Tests/CommentAdminTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php b/core/modules/comment/src/Tests/CommentAnonymousTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php rename to core/modules/comment/src/Tests/CommentAnonymousTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php b/core/modules/comment/src/Tests/CommentBlockTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php rename to core/modules/comment/src/Tests/CommentBlockTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentBookTest.php b/core/modules/comment/src/Tests/CommentBookTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentBookTest.php rename to core/modules/comment/src/Tests/CommentBookTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php b/core/modules/comment/src/Tests/CommentCSSTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php rename to core/modules/comment/src/Tests/CommentCSSTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentCacheTagsTest.php b/core/modules/comment/src/Tests/CommentCacheTagsTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentCacheTagsTest.php rename to core/modules/comment/src/Tests/CommentCacheTagsTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentDefaultFormatterCacheTagsTest.php b/core/modules/comment/src/Tests/CommentDefaultFormatterCacheTagsTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentDefaultFormatterCacheTagsTest.php rename to core/modules/comment/src/Tests/CommentDefaultFormatterCacheTagsTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php b/core/modules/comment/src/Tests/CommentFieldsTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php rename to core/modules/comment/src/Tests/CommentFieldsTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php b/core/modules/comment/src/Tests/CommentInterfaceTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php rename to core/modules/comment/src/Tests/CommentInterfaceTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php b/core/modules/comment/src/Tests/CommentLanguageTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php rename to core/modules/comment/src/Tests/CommentLanguageTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksAlterTest.php b/core/modules/comment/src/Tests/CommentLinksAlterTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentLinksAlterTest.php rename to core/modules/comment/src/Tests/CommentLinksAlterTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php b/core/modules/comment/src/Tests/CommentLinksTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php rename to core/modules/comment/src/Tests/CommentLinksTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php b/core/modules/comment/src/Tests/CommentNewIndicatorTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php rename to core/modules/comment/src/Tests/CommentNewIndicatorTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php b/core/modules/comment/src/Tests/CommentNodeAccessTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php rename to core/modules/comment/src/Tests/CommentNodeAccessTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php b/core/modules/comment/src/Tests/CommentNodeChangesTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php rename to core/modules/comment/src/Tests/CommentNodeChangesTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php b/core/modules/comment/src/Tests/CommentNonNodeTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentNonNodeTest.php rename to core/modules/comment/src/Tests/CommentNonNodeTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php b/core/modules/comment/src/Tests/CommentPagerTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php rename to core/modules/comment/src/Tests/CommentPagerTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php b/core/modules/comment/src/Tests/CommentPreviewTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php rename to core/modules/comment/src/Tests/CommentPreviewTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php b/core/modules/comment/src/Tests/CommentRssTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php rename to core/modules/comment/src/Tests/CommentRssTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php b/core/modules/comment/src/Tests/CommentStatisticsTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php rename to core/modules/comment/src/Tests/CommentStatisticsTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php b/core/modules/comment/src/Tests/CommentTestBase.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php rename to core/modules/comment/src/Tests/CommentTestBase.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php b/core/modules/comment/src/Tests/CommentThreadingTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php rename to core/modules/comment/src/Tests/CommentThreadingTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php b/core/modules/comment/src/Tests/CommentTokenReplaceTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php rename to core/modules/comment/src/Tests/CommentTokenReplaceTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php b/core/modules/comment/src/Tests/CommentTranslationUITest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php rename to core/modules/comment/src/Tests/CommentTranslationUITest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php b/core/modules/comment/src/Tests/CommentUninstallTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php rename to core/modules/comment/src/Tests/CommentUninstallTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentValidationTest.php b/core/modules/comment/src/Tests/CommentValidationTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/CommentValidationTest.php rename to core/modules/comment/src/Tests/CommentValidationTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/ArgumentUserUIDTest.php b/core/modules/comment/src/Tests/Views/ArgumentUserUIDTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/ArgumentUserUIDTest.php rename to core/modules/comment/src/Tests/Views/ArgumentUserUIDTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/CommentRowTest.php b/core/modules/comment/src/Tests/Views/CommentRowTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/CommentRowTest.php rename to core/modules/comment/src/Tests/Views/CommentRowTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/CommentTestBase.php b/core/modules/comment/src/Tests/Views/CommentTestBase.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/CommentTestBase.php rename to core/modules/comment/src/Tests/Views/CommentTestBase.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php b/core/modules/comment/src/Tests/Views/DefaultViewRecentComments.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php rename to core/modules/comment/src/Tests/Views/DefaultViewRecentComments.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/FilterUserUIDTest.php b/core/modules/comment/src/Tests/Views/FilterUserUIDTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/FilterUserUIDTest.php rename to core/modules/comment/src/Tests/Views/FilterUserUIDTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/RowRssTest.php b/core/modules/comment/src/Tests/Views/RowRssTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/RowRssTest.php rename to core/modules/comment/src/Tests/Views/RowRssTest.php diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php b/core/modules/comment/src/Tests/Views/WizardTest.php similarity index 100% rename from core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php rename to core/modules/comment/src/Tests/Views/WizardTest.php diff --git a/core/modules/comment/tests/Drupal/comment/Tests/CommentStatisticsUnitTest.php b/core/modules/comment/tests/src/CommentStatisticsUnitTest.php similarity index 100% rename from core/modules/comment/tests/Drupal/comment/Tests/CommentStatisticsUnitTest.php rename to core/modules/comment/tests/src/CommentStatisticsUnitTest.php diff --git a/core/modules/comment/tests/Drupal/comment/Tests/Entity/CommentLockTest.php b/core/modules/comment/tests/src/Entity/CommentLockTest.php similarity index 100% rename from core/modules/comment/tests/Drupal/comment/Tests/Entity/CommentLockTest.php rename to core/modules/comment/tests/src/Entity/CommentLockTest.php diff --git a/core/modules/comment/tests/Drupal/comment/Tests/Routing/CommentBundleEnhancerTest.php b/core/modules/comment/tests/src/Routing/CommentBundleEnhancerTest.php similarity index 100% rename from core/modules/comment/tests/Drupal/comment/Tests/Routing/CommentBundleEnhancerTest.php rename to core/modules/comment/tests/src/Routing/CommentBundleEnhancerTest.php diff --git a/core/modules/config/lib/Drupal/config/Controller/ConfigController.php b/core/modules/config/src/Controller/ConfigController.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Controller/ConfigController.php rename to core/modules/config/src/Controller/ConfigController.php diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigExportForm.php b/core/modules/config/src/Form/ConfigExportForm.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Form/ConfigExportForm.php rename to core/modules/config/src/Form/ConfigExportForm.php diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigImportForm.php b/core/modules/config/src/Form/ConfigImportForm.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Form/ConfigImportForm.php rename to core/modules/config/src/Form/ConfigImportForm.php diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigSingleExportForm.php b/core/modules/config/src/Form/ConfigSingleExportForm.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Form/ConfigSingleExportForm.php rename to core/modules/config/src/Form/ConfigSingleExportForm.php diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigSingleImportForm.php b/core/modules/config/src/Form/ConfigSingleImportForm.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Form/ConfigSingleImportForm.php rename to core/modules/config/src/Form/ConfigSingleImportForm.php diff --git a/core/modules/config/lib/Drupal/config/Form/ConfigSync.php b/core/modules/config/src/Form/ConfigSync.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Form/ConfigSync.php rename to core/modules/config/src/Form/ConfigSync.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php b/core/modules/config/src/Tests/ConfigCRUDTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php rename to core/modules/config/src/Tests/ConfigCRUDTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigDependencyTest.php b/core/modules/config/src/Tests/ConfigDependencyTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigDependencyTest.php rename to core/modules/config/src/Tests/ConfigDependencyTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigDiffTest.php b/core/modules/config/src/Tests/ConfigDiffTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigDiffTest.php rename to core/modules/config/src/Tests/ConfigDiffTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityFormOverrideTest.php b/core/modules/config/src/Tests/ConfigEntityFormOverrideTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityFormOverrideTest.php rename to core/modules/config/src/Tests/ConfigEntityFormOverrideTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php b/core/modules/config/src/Tests/ConfigEntityListTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php rename to core/modules/config/src/Tests/ConfigEntityListTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityStatusTest.php b/core/modules/config/src/Tests/ConfigEntityStatusTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityStatusTest.php rename to core/modules/config/src/Tests/ConfigEntityStatusTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityStatusUITest.php b/core/modules/config/src/Tests/ConfigEntityStatusUITest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityStatusUITest.php rename to core/modules/config/src/Tests/ConfigEntityStatusUITest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityStorageTest.php b/core/modules/config/src/Tests/ConfigEntityStorageTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityStorageTest.php rename to core/modules/config/src/Tests/ConfigEntityStorageTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php b/core/modules/config/src/Tests/ConfigEntityTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php rename to core/modules/config/src/Tests/ConfigEntityTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php b/core/modules/config/src/Tests/ConfigEntityUnitTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php rename to core/modules/config/src/Tests/ConfigEntityUnitTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEventsTest.php b/core/modules/config/src/Tests/ConfigEventsTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigEventsTest.php rename to core/modules/config/src/Tests/ConfigEventsTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigExportImportUITest.php b/core/modules/config/src/Tests/ConfigExportImportUITest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigExportImportUITest.php rename to core/modules/config/src/Tests/ConfigExportImportUITest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigExportUITest.php b/core/modules/config/src/Tests/ConfigExportUITest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigExportUITest.php rename to core/modules/config/src/Tests/ConfigExportUITest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php b/core/modules/config/src/Tests/ConfigFileContentTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php rename to core/modules/config/src/Tests/ConfigFileContentTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigFormOverrideTest.php b/core/modules/config/src/Tests/ConfigFormOverrideTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigFormOverrideTest.php rename to core/modules/config/src/Tests/ConfigFormOverrideTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportAllTest.php b/core/modules/config/src/Tests/ConfigImportAllTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImportAllTest.php rename to core/modules/config/src/Tests/ConfigImportAllTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportRecreateTest.php b/core/modules/config/src/Tests/ConfigImportRecreateTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImportRecreateTest.php rename to core/modules/config/src/Tests/ConfigImportRecreateTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportRenameValidationTest.php b/core/modules/config/src/Tests/ConfigImportRenameValidationTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImportRenameValidationTest.php rename to core/modules/config/src/Tests/ConfigImportRenameValidationTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php b/core/modules/config/src/Tests/ConfigImportUITest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php rename to core/modules/config/src/Tests/ConfigImportUITest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportUploadTest.php b/core/modules/config/src/Tests/ConfigImportUploadTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImportUploadTest.php rename to core/modules/config/src/Tests/ConfigImportUploadTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImporterTest.php b/core/modules/config/src/Tests/ConfigImporterTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigImporterTest.php rename to core/modules/config/src/Tests/ConfigImporterTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php b/core/modules/config/src/Tests/ConfigInstallTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php rename to core/modules/config/src/Tests/ConfigInstallTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php b/core/modules/config/src/Tests/ConfigInstallWebTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php rename to core/modules/config/src/Tests/ConfigInstallWebTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigLanguageOverrideTest.php b/core/modules/config/src/Tests/ConfigLanguageOverrideTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigLanguageOverrideTest.php rename to core/modules/config/src/Tests/ConfigLanguageOverrideTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigLanguageOverrideWebTest.php b/core/modules/config/src/Tests/ConfigLanguageOverrideWebTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigLanguageOverrideWebTest.php rename to core/modules/config/src/Tests/ConfigLanguageOverrideWebTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigModuleOverridesTest.php b/core/modules/config/src/Tests/ConfigModuleOverridesTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigModuleOverridesTest.php rename to core/modules/config/src/Tests/ConfigModuleOverridesTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigOtherModuleTest.php b/core/modules/config/src/Tests/ConfigOtherModuleTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigOtherModuleTest.php rename to core/modules/config/src/Tests/ConfigOtherModuleTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php b/core/modules/config/src/Tests/ConfigOverrideTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php rename to core/modules/config/src/Tests/ConfigOverrideTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigOverridesPriorityTest.php b/core/modules/config/src/Tests/ConfigOverridesPriorityTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigOverridesPriorityTest.php rename to core/modules/config/src/Tests/ConfigOverridesPriorityTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigSchemaTest.php b/core/modules/config/src/Tests/ConfigSchemaTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigSchemaTest.php rename to core/modules/config/src/Tests/ConfigSchemaTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigSchemaTestBase.php b/core/modules/config/src/Tests/ConfigSchemaTestBase.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigSchemaTestBase.php rename to core/modules/config/src/Tests/ConfigSchemaTestBase.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigSingleImportExportTest.php b/core/modules/config/src/Tests/ConfigSingleImportExportTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigSingleImportExportTest.php rename to core/modules/config/src/Tests/ConfigSingleImportExportTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php b/core/modules/config/src/Tests/ConfigSnapshotTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/ConfigSnapshotTest.php rename to core/modules/config/src/Tests/ConfigSnapshotTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php b/core/modules/config/src/Tests/DefaultConfigTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/DefaultConfigTest.php rename to core/modules/config/src/Tests/DefaultConfigTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/CachedStorageTest.php b/core/modules/config/src/Tests/Storage/CachedStorageTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/Storage/CachedStorageTest.php rename to core/modules/config/src/Tests/Storage/CachedStorageTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php b/core/modules/config/src/Tests/Storage/ConfigStorageTestBase.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php rename to core/modules/config/src/Tests/Storage/ConfigStorageTestBase.php diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php b/core/modules/config/src/Tests/Storage/DatabaseStorageTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php rename to core/modules/config/src/Tests/Storage/DatabaseStorageTest.php diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php b/core/modules/config/src/Tests/Storage/FileStorageTest.php similarity index 100% rename from core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php rename to core/modules/config/src/Tests/Storage/FileStorageTest.php diff --git a/core/modules/config/tests/config_collection_install_test/lib/Drupal/config_collection_install_test/EventSubscriber.php b/core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php similarity index 100% rename from core/modules/config/tests/config_collection_install_test/lib/Drupal/config_collection_install_test/EventSubscriber.php rename to core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php diff --git a/core/modules/config/tests/config_events_test/lib/Drupal/config_events_test/EventSubscriber.php b/core/modules/config/tests/config_events_test/src/EventSubscriber.php similarity index 100% rename from core/modules/config/tests/config_events_test/lib/Drupal/config_events_test/EventSubscriber.php rename to core/modules/config/tests/config_events_test/src/EventSubscriber.php diff --git a/core/modules/config/tests/config_import_test/lib/Drupal/config_import_test/EventSubscriber.php b/core/modules/config/tests/config_import_test/src/EventSubscriber.php similarity index 100% rename from core/modules/config/tests/config_import_test/lib/Drupal/config_import_test/EventSubscriber.php rename to core/modules/config/tests/config_import_test/src/EventSubscriber.php diff --git a/core/modules/config/tests/config_override/lib/Drupal/config_override/ConfigOverrider.php b/core/modules/config/tests/config_override/src/ConfigOverrider.php similarity index 100% rename from core/modules/config/tests/config_override/lib/Drupal/config_override/ConfigOverrider.php rename to core/modules/config/tests/config_override/src/ConfigOverrider.php diff --git a/core/modules/config/tests/config_override/lib/Drupal/config_override/ConfigOverriderLowPriority.php b/core/modules/config/tests/config_override/src/ConfigOverriderLowPriority.php similarity index 100% rename from core/modules/config/tests/config_override/lib/Drupal/config_override/ConfigOverriderLowPriority.php rename to core/modules/config/tests/config_override/src/ConfigOverriderLowPriority.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestAccessController.php b/core/modules/config/tests/config_test/src/ConfigTestAccessController.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestAccessController.php rename to core/modules/config/tests/config_test/src/ConfigTestAccessController.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestController.php b/core/modules/config/tests/config_test/src/ConfigTestController.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestController.php rename to core/modules/config/tests/config_test/src/ConfigTestController.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestForm.php b/core/modules/config/tests/config_test/src/ConfigTestForm.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestForm.php rename to core/modules/config/tests/config_test/src/ConfigTestForm.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestInterface.php b/core/modules/config/tests/config_test/src/ConfigTestInterface.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestInterface.php rename to core/modules/config/tests/config_test/src/ConfigTestInterface.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestListBuilder.php b/core/modules/config/tests/config_test/src/ConfigTestListBuilder.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestListBuilder.php rename to core/modules/config/tests/config_test/src/ConfigTestListBuilder.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestStorage.php b/core/modules/config/tests/config_test/src/ConfigTestStorage.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestStorage.php rename to core/modules/config/tests/config_test/src/ConfigTestStorage.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/Entity/ConfigQueryTest.php b/core/modules/config/tests/config_test/src/Entity/ConfigQueryTest.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/Entity/ConfigQueryTest.php rename to core/modules/config/tests/config_test/src/Entity/ConfigQueryTest.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/Entity/ConfigTest.php b/core/modules/config/tests/config_test/src/Entity/ConfigTest.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/Entity/ConfigTest.php rename to core/modules/config/tests/config_test/src/Entity/ConfigTest.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/Form/ConfigTestDeleteForm.php b/core/modules/config/tests/config_test/src/Form/ConfigTestDeleteForm.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/Form/ConfigTestDeleteForm.php rename to core/modules/config/tests/config_test/src/Form/ConfigTestDeleteForm.php diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/TestInstallStorage.php b/core/modules/config/tests/config_test/src/TestInstallStorage.php similarity index 100% rename from core/modules/config/tests/config_test/lib/Drupal/config_test/TestInstallStorage.php rename to core/modules/config/tests/config_test/src/TestInstallStorage.php diff --git a/core/modules/config/tests/Drupal/config/Tests/Menu/ConfigLocalTasksTest.php b/core/modules/config/tests/src/Menu/ConfigLocalTasksTest.php similarity index 100% rename from core/modules/config/tests/Drupal/config/Tests/Menu/ConfigLocalTasksTest.php rename to core/modules/config/tests/src/Menu/ConfigLocalTasksTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Access/ConfigTranslationFormAccess.php b/core/modules/config_translation/src/Access/ConfigTranslationFormAccess.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Access/ConfigTranslationFormAccess.php rename to core/modules/config_translation/src/Access/ConfigTranslationFormAccess.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Access/ConfigTranslationOverviewAccess.php b/core/modules/config_translation/src/Access/ConfigTranslationOverviewAccess.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Access/ConfigTranslationOverviewAccess.php rename to core/modules/config_translation/src/Access/ConfigTranslationOverviewAccess.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigEntityMapper.php b/core/modules/config_translation/src/ConfigEntityMapper.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigEntityMapper.php rename to core/modules/config_translation/src/ConfigEntityMapper.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigFieldInstanceMapper.php b/core/modules/config_translation/src/ConfigFieldInstanceMapper.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigFieldInstanceMapper.php rename to core/modules/config_translation/src/ConfigFieldInstanceMapper.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperInterface.php b/core/modules/config_translation/src/ConfigMapperInterface.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperInterface.php rename to core/modules/config_translation/src/ConfigMapperInterface.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperManager.php b/core/modules/config_translation/src/ConfigMapperManager.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperManager.php rename to core/modules/config_translation/src/ConfigMapperManager.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperManagerInterface.php b/core/modules/config_translation/src/ConfigMapperManagerInterface.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigMapperManagerInterface.php rename to core/modules/config_translation/src/ConfigMapperManagerInterface.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/ConfigNamesMapper.php b/core/modules/config_translation/src/ConfigNamesMapper.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/ConfigNamesMapper.php rename to core/modules/config_translation/src/ConfigNamesMapper.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationBlockListBuilder.php b/core/modules/config_translation/src/Controller/ConfigTranslationBlockListBuilder.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationBlockListBuilder.php rename to core/modules/config_translation/src/Controller/ConfigTranslationBlockListBuilder.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationController.php b/core/modules/config_translation/src/Controller/ConfigTranslationController.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationController.php rename to core/modules/config_translation/src/Controller/ConfigTranslationController.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationEntityListBuilder.php b/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationEntityListBuilder.php rename to core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilder.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationEntityListBuilderInterface.php b/core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilderInterface.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationEntityListBuilderInterface.php rename to core/modules/config_translation/src/Controller/ConfigTranslationEntityListBuilderInterface.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationFieldInstanceListBuilder.php b/core/modules/config_translation/src/Controller/ConfigTranslationFieldInstanceListBuilder.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationFieldInstanceListBuilder.php rename to core/modules/config_translation/src/Controller/ConfigTranslationFieldInstanceListBuilder.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationListController.php b/core/modules/config_translation/src/Controller/ConfigTranslationListController.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationListController.php rename to core/modules/config_translation/src/Controller/ConfigTranslationListController.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php b/core/modules/config_translation/src/Controller/ConfigTranslationMapperList.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Controller/ConfigTranslationMapperList.php rename to core/modules/config_translation/src/Controller/ConfigTranslationMapperList.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationAddForm.php b/core/modules/config_translation/src/Form/ConfigTranslationAddForm.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationAddForm.php rename to core/modules/config_translation/src/Form/ConfigTranslationAddForm.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationDeleteForm.php b/core/modules/config_translation/src/Form/ConfigTranslationDeleteForm.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationDeleteForm.php rename to core/modules/config_translation/src/Form/ConfigTranslationDeleteForm.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationEditForm.php b/core/modules/config_translation/src/Form/ConfigTranslationEditForm.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationEditForm.php rename to core/modules/config_translation/src/Form/ConfigTranslationEditForm.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationFormBase.php b/core/modules/config_translation/src/Form/ConfigTranslationFormBase.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Form/ConfigTranslationFormBase.php rename to core/modules/config_translation/src/Form/ConfigTranslationFormBase.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/FormElement/DateFormat.php b/core/modules/config_translation/src/FormElement/DateFormat.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/FormElement/DateFormat.php rename to core/modules/config_translation/src/FormElement/DateFormat.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/FormElement/ElementInterface.php b/core/modules/config_translation/src/FormElement/ElementInterface.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/FormElement/ElementInterface.php rename to core/modules/config_translation/src/FormElement/ElementInterface.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/FormElement/Textarea.php b/core/modules/config_translation/src/FormElement/Textarea.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/FormElement/Textarea.php rename to core/modules/config_translation/src/FormElement/Textarea.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/FormElement/Textfield.php b/core/modules/config_translation/src/FormElement/Textfield.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/FormElement/Textfield.php rename to core/modules/config_translation/src/FormElement/Textfield.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Plugin/Derivative/ConfigTranslationContextualLinks.php b/core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationContextualLinks.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Plugin/Derivative/ConfigTranslationContextualLinks.php rename to core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationContextualLinks.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Plugin/Derivative/ConfigTranslationLocalTasks.php b/core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationLocalTasks.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Plugin/Derivative/ConfigTranslationLocalTasks.php rename to core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationLocalTasks.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php b/core/modules/config_translation/src/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php rename to core/modules/config_translation/src/Plugin/Menu/ContextualLink/ConfigTranslationContextualLink.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php b/core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php rename to core/modules/config_translation/src/Plugin/Menu/LocalTask/ConfigTranslationLocalTask.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Routing/RouteSubscriber.php b/core/modules/config_translation/src/Routing/RouteSubscriber.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Routing/RouteSubscriber.php rename to core/modules/config_translation/src/Routing/RouteSubscriber.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationFormTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationFormTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationFormTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationFormTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationListUiTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationListUiTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationOverviewTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationOverviewTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationOverviewTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationUiTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationUiTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationUiTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationUiThemeTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationUiThemeTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationUiThemeTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationUiThemeTest.php diff --git a/core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationViewListUiTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationViewListUiTest.php similarity index 100% rename from core/modules/config_translation/lib/Drupal/config_translation/Tests/ConfigTranslationViewListUiTest.php rename to core/modules/config_translation/src/Tests/ConfigTranslationViewListUiTest.php diff --git a/core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigEntityMapperTest.php b/core/modules/config_translation/tests/src/ConfigEntityMapperTest.php similarity index 100% rename from core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigEntityMapperTest.php rename to core/modules/config_translation/tests/src/ConfigEntityMapperTest.php diff --git a/core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigMapperManagerTest.php b/core/modules/config_translation/tests/src/ConfigMapperManagerTest.php similarity index 100% rename from core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigMapperManagerTest.php rename to core/modules/config_translation/tests/src/ConfigMapperManagerTest.php diff --git a/core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigNamesMapperTest.php b/core/modules/config_translation/tests/src/ConfigNamesMapperTest.php similarity index 100% rename from core/modules/config_translation/tests/Drupal/config_translation/Tests/ConfigNamesMapperTest.php rename to core/modules/config_translation/tests/src/ConfigNamesMapperTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Access/ContactPageAccess.php b/core/modules/contact/src/Access/ContactPageAccess.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Access/ContactPageAccess.php rename to core/modules/contact/src/Access/ContactPageAccess.php diff --git a/core/modules/contact/lib/Drupal/contact/CategoryAccessController.php b/core/modules/contact/src/CategoryAccessController.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/CategoryAccessController.php rename to core/modules/contact/src/CategoryAccessController.php diff --git a/core/modules/contact/lib/Drupal/contact/CategoryForm.php b/core/modules/contact/src/CategoryForm.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/CategoryForm.php rename to core/modules/contact/src/CategoryForm.php diff --git a/core/modules/contact/lib/Drupal/contact/CategoryInterface.php b/core/modules/contact/src/CategoryInterface.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/CategoryInterface.php rename to core/modules/contact/src/CategoryInterface.php diff --git a/core/modules/contact/lib/Drupal/contact/CategoryListBuilder.php b/core/modules/contact/src/CategoryListBuilder.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/CategoryListBuilder.php rename to core/modules/contact/src/CategoryListBuilder.php diff --git a/core/modules/contact/lib/Drupal/contact/Controller/ContactController.php b/core/modules/contact/src/Controller/ContactController.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Controller/ContactController.php rename to core/modules/contact/src/Controller/ContactController.php diff --git a/core/modules/contact/lib/Drupal/contact/Entity/Category.php b/core/modules/contact/src/Entity/Category.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Entity/Category.php rename to core/modules/contact/src/Entity/Category.php diff --git a/core/modules/contact/lib/Drupal/contact/Entity/Message.php b/core/modules/contact/src/Entity/Message.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Entity/Message.php rename to core/modules/contact/src/Entity/Message.php diff --git a/core/modules/contact/lib/Drupal/contact/Form/CategoryDeleteForm.php b/core/modules/contact/src/Form/CategoryDeleteForm.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Form/CategoryDeleteForm.php rename to core/modules/contact/src/Form/CategoryDeleteForm.php diff --git a/core/modules/contact/lib/Drupal/contact/MessageForm.php b/core/modules/contact/src/MessageForm.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/MessageForm.php rename to core/modules/contact/src/MessageForm.php diff --git a/core/modules/contact/lib/Drupal/contact/MessageInterface.php b/core/modules/contact/src/MessageInterface.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/MessageInterface.php rename to core/modules/contact/src/MessageInterface.php diff --git a/core/modules/contact/lib/Drupal/contact/MessageViewBuilder.php b/core/modules/contact/src/MessageViewBuilder.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/MessageViewBuilder.php rename to core/modules/contact/src/MessageViewBuilder.php diff --git a/core/modules/contact/lib/Drupal/contact/Plugin/views/field/ContactLink.php b/core/modules/contact/src/Plugin/views/field/ContactLink.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Plugin/views/field/ContactLink.php rename to core/modules/contact/src/Plugin/views/field/ContactLink.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php b/core/modules/contact/src/Tests/ContactAuthenticatedUserTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php rename to core/modules/contact/src/Tests/ContactAuthenticatedUserTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php b/core/modules/contact/src/Tests/ContactPersonalTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php rename to core/modules/contact/src/Tests/ContactPersonalTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php b/core/modules/contact/src/Tests/ContactSitewideTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php rename to core/modules/contact/src/Tests/ContactSitewideTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/MessageEntityTest.php b/core/modules/contact/src/Tests/MessageEntityTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/MessageEntityTest.php rename to core/modules/contact/src/Tests/MessageEntityTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/Views/ContactFieldsTest.php b/core/modules/contact/src/Tests/Views/ContactFieldsTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/Views/ContactFieldsTest.php rename to core/modules/contact/src/Tests/Views/ContactFieldsTest.php diff --git a/core/modules/contact/lib/Drupal/contact/Tests/Views/ContactLinkTest.php b/core/modules/contact/src/Tests/Views/ContactLinkTest.php similarity index 100% rename from core/modules/contact/lib/Drupal/contact/Tests/Views/ContactLinkTest.php rename to core/modules/contact/src/Tests/Views/ContactLinkTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Access/ContentTranslationManageAccessCheck.php b/core/modules/content_translation/src/Access/ContentTranslationManageAccessCheck.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Access/ContentTranslationManageAccessCheck.php rename to core/modules/content_translation/src/Access/ContentTranslationManageAccessCheck.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Access/ContentTranslationOverviewAccess.php b/core/modules/content_translation/src/Access/ContentTranslationOverviewAccess.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Access/ContentTranslationOverviewAccess.php rename to core/modules/content_translation/src/Access/ContentTranslationOverviewAccess.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php b/core/modules/content_translation/src/ContentTranslationHandler.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php rename to core/modules/content_translation/src/ContentTranslationHandler.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php b/core/modules/content_translation/src/ContentTranslationHandlerInterface.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php rename to core/modules/content_translation/src/ContentTranslationHandlerInterface.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationManager.php b/core/modules/content_translation/src/ContentTranslationManager.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationManager.php rename to core/modules/content_translation/src/ContentTranslationManager.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationManagerInterface.php b/core/modules/content_translation/src/ContentTranslationManagerInterface.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationManagerInterface.php rename to core/modules/content_translation/src/ContentTranslationManagerInterface.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Controller/ContentTranslationController.php b/core/modules/content_translation/src/Controller/ContentTranslationController.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Controller/ContentTranslationController.php rename to core/modules/content_translation/src/Controller/ContentTranslationController.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/FieldTranslationSynchronizer.php b/core/modules/content_translation/src/FieldTranslationSynchronizer.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/FieldTranslationSynchronizer.php rename to core/modules/content_translation/src/FieldTranslationSynchronizer.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/FieldTranslationSynchronizerInterface.php b/core/modules/content_translation/src/FieldTranslationSynchronizerInterface.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/FieldTranslationSynchronizerInterface.php rename to core/modules/content_translation/src/FieldTranslationSynchronizerInterface.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationDeleteForm.php b/core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Form/ContentTranslationDeleteForm.php rename to core/modules/content_translation/src/Form/ContentTranslationDeleteForm.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Plugin/Derivative/ContentTranslationContextualLinks.php b/core/modules/content_translation/src/Plugin/Derivative/ContentTranslationContextualLinks.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Plugin/Derivative/ContentTranslationContextualLinks.php rename to core/modules/content_translation/src/Plugin/Derivative/ContentTranslationContextualLinks.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Plugin/Derivative/ContentTranslationLocalTasks.php b/core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Plugin/Derivative/ContentTranslationLocalTasks.php rename to core/modules/content_translation/src/Plugin/Derivative/ContentTranslationLocalTasks.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php b/core/modules/content_translation/src/Plugin/views/field/TranslationLink.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php rename to core/modules/content_translation/src/Plugin/views/field/TranslationLink.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Routing/ContentTranslationRouteSubscriber.php b/core/modules/content_translation/src/Routing/ContentTranslationRouteSubscriber.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Routing/ContentTranslationRouteSubscriber.php rename to core/modules/content_translation/src/Routing/ContentTranslationRouteSubscriber.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php b/core/modules/content_translation/src/Tests/ContentTestTranslationUITest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php rename to core/modules/content_translation/src/Tests/ContentTestTranslationUITest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationContextualLinksTest.php b/core/modules/content_translation/src/Tests/ContentTranslationContextualLinksTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationContextualLinksTest.php rename to core/modules/content_translation/src/Tests/ContentTranslationContextualLinksTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php b/core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php rename to core/modules/content_translation/src/Tests/ContentTranslationSettingsTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSyncImageTest.php b/core/modules/content_translation/src/Tests/ContentTranslationSyncImageTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSyncImageTest.php rename to core/modules/content_translation/src/Tests/ContentTranslationSyncImageTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSyncUnitTest.php b/core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSyncUnitTest.php rename to core/modules/content_translation/src/Tests/ContentTranslationSyncUnitTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationTestBase.php b/core/modules/content_translation/src/Tests/ContentTranslationTestBase.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationTestBase.php rename to core/modules/content_translation/src/Tests/ContentTranslationTestBase.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php b/core/modules/content_translation/src/Tests/ContentTranslationUITest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php rename to core/modules/content_translation/src/Tests/ContentTranslationUITest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationWorkflowsTest.php b/core/modules/content_translation/src/Tests/ContentTranslationWorkflowsTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationWorkflowsTest.php rename to core/modules/content_translation/src/Tests/ContentTranslationWorkflowsTest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/Views/ContentTranslationViewsUITest.php b/core/modules/content_translation/src/Tests/Views/ContentTranslationViewsUITest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/Views/ContentTranslationViewsUITest.php rename to core/modules/content_translation/src/Tests/Views/ContentTranslationViewsUITest.php diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/Views/TranslationLinkTest.php b/core/modules/content_translation/src/Tests/Views/TranslationLinkTest.php similarity index 100% rename from core/modules/content_translation/lib/Drupal/content_translation/Tests/Views/TranslationLinkTest.php rename to core/modules/content_translation/src/Tests/Views/TranslationLinkTest.php diff --git a/core/modules/content_translation/tests/Drupal/content_translation/Tests/Menu/ContentTranslationLocalTasksTest.php b/core/modules/content_translation/tests/src/Menu/ContentTranslationLocalTasksTest.php similarity index 100% rename from core/modules/content_translation/tests/Drupal/content_translation/Tests/Menu/ContentTranslationLocalTasksTest.php rename to core/modules/content_translation/tests/src/Menu/ContentTranslationLocalTasksTest.php diff --git a/core/modules/contextual/lib/Drupal/contextual/ContextualController.php b/core/modules/contextual/src/ContextualController.php similarity index 100% rename from core/modules/contextual/lib/Drupal/contextual/ContextualController.php rename to core/modules/contextual/src/ContextualController.php diff --git a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php b/core/modules/contextual/src/Plugin/views/field/ContextualLinks.php similarity index 100% rename from core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php rename to core/modules/contextual/src/Plugin/views/field/ContextualLinks.php diff --git a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php b/core/modules/contextual/src/Tests/ContextualDynamicContextTest.php similarity index 100% rename from core/modules/contextual/lib/Drupal/contextual/Tests/ContextualDynamicContextTest.php rename to core/modules/contextual/src/Tests/ContextualDynamicContextTest.php diff --git a/core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php b/core/modules/contextual/src/Tests/ContextualUnitTest.php similarity index 100% rename from core/modules/contextual/lib/Drupal/contextual/Tests/ContextualUnitTest.php rename to core/modules/contextual/src/Tests/ContextualUnitTest.php diff --git a/core/modules/datetime/lib/Drupal/datetime/DateHelper.php b/core/modules/datetime/src/DateHelper.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/DateHelper.php rename to core/modules/datetime/src/DateHelper.php diff --git a/core/modules/datetime/lib/Drupal/datetime/DateTimeComputed.php b/core/modules/datetime/src/DateTimeComputed.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/DateTimeComputed.php rename to core/modules/datetime/src/DateTimeComputed.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php b/core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php rename to core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimeDefaultFormatter.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php b/core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php rename to core/modules/datetime/src/Plugin/Field/FieldFormatter/DateTimePlainFormatter.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldType/DateTimeFieldItemList.php b/core/modules/datetime/src/Plugin/Field/FieldType/DateTimeFieldItemList.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldType/DateTimeFieldItemList.php rename to core/modules/datetime/src/Plugin/Field/FieldType/DateTimeFieldItemList.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldType/DateTimeItem.php b/core/modules/datetime/src/Plugin/Field/FieldType/DateTimeItem.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldType/DateTimeItem.php rename to core/modules/datetime/src/Plugin/Field/FieldType/DateTimeItem.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php b/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php rename to core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeDatelistWidget.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php b/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php rename to core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeDefaultWidget.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Tests/DateTimeFieldTest.php b/core/modules/datetime/src/Tests/DateTimeFieldTest.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Tests/DateTimeFieldTest.php rename to core/modules/datetime/src/Tests/DateTimeFieldTest.php diff --git a/core/modules/datetime/lib/Drupal/datetime/Tests/DateTimeItemTest.php b/core/modules/datetime/src/Tests/DateTimeItemTest.php similarity index 100% rename from core/modules/datetime/lib/Drupal/datetime/Tests/DateTimeItemTest.php rename to core/modules/datetime/src/Tests/DateTimeItemTest.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php b/core/modules/dblog/src/Controller/DbLogController.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Controller/DbLogController.php rename to core/modules/dblog/src/Controller/DbLogController.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Form/DblogClearLogForm.php b/core/modules/dblog/src/Form/DblogClearLogForm.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Form/DblogClearLogForm.php rename to core/modules/dblog/src/Form/DblogClearLogForm.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Form/DblogFilterForm.php b/core/modules/dblog/src/Form/DblogFilterForm.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Form/DblogFilterForm.php rename to core/modules/dblog/src/Form/DblogFilterForm.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Plugin/views/field/DblogMessage.php b/core/modules/dblog/src/Plugin/views/field/DblogMessage.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Plugin/views/field/DblogMessage.php rename to core/modules/dblog/src/Plugin/views/field/DblogMessage.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Plugin/views/field/DblogOperations.php b/core/modules/dblog/src/Plugin/views/field/DblogOperations.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Plugin/views/field/DblogOperations.php rename to core/modules/dblog/src/Plugin/views/field/DblogOperations.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Plugin/views/wizard/Watchdog.php b/core/modules/dblog/src/Plugin/views/wizard/Watchdog.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Plugin/views/wizard/Watchdog.php rename to core/modules/dblog/src/Plugin/views/wizard/Watchdog.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php b/core/modules/dblog/src/Tests/DbLogTest.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Tests/DbLogTest.php rename to core/modules/dblog/src/Tests/DbLogTest.php diff --git a/core/modules/dblog/lib/Drupal/dblog/Tests/Views/ViewsIntegrationTest.php b/core/modules/dblog/src/Tests/Views/ViewsIntegrationTest.php similarity index 100% rename from core/modules/dblog/lib/Drupal/dblog/Tests/Views/ViewsIntegrationTest.php rename to core/modules/dblog/src/Tests/Views/ViewsIntegrationTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Ajax/EditorDialogSave.php b/core/modules/editor/src/Ajax/EditorDialogSave.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Ajax/EditorDialogSave.php rename to core/modules/editor/src/Ajax/EditorDialogSave.php diff --git a/core/modules/editor/lib/Drupal/editor/Ajax/GetUntransformedTextCommand.php b/core/modules/editor/src/Ajax/GetUntransformedTextCommand.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Ajax/GetUntransformedTextCommand.php rename to core/modules/editor/src/Ajax/GetUntransformedTextCommand.php diff --git a/core/modules/editor/lib/Drupal/editor/Annotation/Editor.php b/core/modules/editor/src/Annotation/Editor.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Annotation/Editor.php rename to core/modules/editor/src/Annotation/Editor.php diff --git a/core/modules/editor/lib/Drupal/editor/EditorController.php b/core/modules/editor/src/EditorController.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/EditorController.php rename to core/modules/editor/src/EditorController.php diff --git a/core/modules/editor/lib/Drupal/editor/EditorInterface.php b/core/modules/editor/src/EditorInterface.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/EditorInterface.php rename to core/modules/editor/src/EditorInterface.php diff --git a/core/modules/editor/lib/Drupal/editor/EditorXssFilter/Standard.php b/core/modules/editor/src/EditorXssFilter/Standard.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/EditorXssFilter/Standard.php rename to core/modules/editor/src/EditorXssFilter/Standard.php diff --git a/core/modules/editor/lib/Drupal/editor/EditorXssFilterInterface.php b/core/modules/editor/src/EditorXssFilterInterface.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/EditorXssFilterInterface.php rename to core/modules/editor/src/EditorXssFilterInterface.php diff --git a/core/modules/editor/lib/Drupal/editor/Entity/Editor.php b/core/modules/editor/src/Entity/Editor.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Entity/Editor.php rename to core/modules/editor/src/Entity/Editor.php diff --git a/core/modules/editor/lib/Drupal/editor/Form/EditorImageDialog.php b/core/modules/editor/src/Form/EditorImageDialog.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Form/EditorImageDialog.php rename to core/modules/editor/src/Form/EditorImageDialog.php diff --git a/core/modules/editor/lib/Drupal/editor/Form/EditorLinkDialog.php b/core/modules/editor/src/Form/EditorLinkDialog.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Form/EditorLinkDialog.php rename to core/modules/editor/src/Form/EditorLinkDialog.php diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php b/core/modules/editor/src/Plugin/EditorBase.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php rename to core/modules/editor/src/Plugin/EditorBase.php diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/EditorManager.php b/core/modules/editor/src/Plugin/EditorManager.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Plugin/EditorManager.php rename to core/modules/editor/src/Plugin/EditorManager.php diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/EditorPluginInterface.php b/core/modules/editor/src/Plugin/EditorPluginInterface.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Plugin/EditorPluginInterface.php rename to core/modules/editor/src/Plugin/EditorPluginInterface.php diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/InPlaceEditor/Editor.php b/core/modules/editor/src/Plugin/InPlaceEditor/Editor.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Plugin/InPlaceEditor/Editor.php rename to core/modules/editor/src/Plugin/InPlaceEditor/Editor.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorAdminTest.php b/core/modules/editor/src/Tests/EditorAdminTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/EditorAdminTest.php rename to core/modules/editor/src/Tests/EditorAdminTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php b/core/modules/editor/src/Tests/EditorFileUsageTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/EditorFileUsageTest.php rename to core/modules/editor/src/Tests/EditorFileUsageTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorLoadingTest.php b/core/modules/editor/src/Tests/EditorLoadingTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/EditorLoadingTest.php rename to core/modules/editor/src/Tests/EditorLoadingTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorManagerTest.php b/core/modules/editor/src/Tests/EditorManagerTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/EditorManagerTest.php rename to core/modules/editor/src/Tests/EditorManagerTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/EditorSecurityTest.php b/core/modules/editor/src/Tests/EditorSecurityTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/EditorSecurityTest.php rename to core/modules/editor/src/Tests/EditorSecurityTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/QuickEditIntegrationLoadingTest.php b/core/modules/editor/src/Tests/QuickEditIntegrationLoadingTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/QuickEditIntegrationLoadingTest.php rename to core/modules/editor/src/Tests/QuickEditIntegrationLoadingTest.php diff --git a/core/modules/editor/lib/Drupal/editor/Tests/QuickEditIntegrationTest.php b/core/modules/editor/src/Tests/QuickEditIntegrationTest.php similarity index 100% rename from core/modules/editor/lib/Drupal/editor/Tests/QuickEditIntegrationTest.php rename to core/modules/editor/src/Tests/QuickEditIntegrationTest.php diff --git a/core/modules/editor/tests/modules/lib/Drupal/editor_test/EditorXssFilter/Insecure.php b/core/modules/editor/tests/modules/src/EditorXssFilter/Insecure.php similarity index 100% rename from core/modules/editor/tests/modules/lib/Drupal/editor_test/EditorXssFilter/Insecure.php rename to core/modules/editor/tests/modules/src/EditorXssFilter/Insecure.php diff --git a/core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php b/core/modules/editor/tests/modules/src/Plugin/Editor/UnicornEditor.php similarity index 100% rename from core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php rename to core/modules/editor/tests/modules/src/Plugin/Editor/UnicornEditor.php diff --git a/core/modules/editor/tests/Drupal/editor/Tests/EditorConfigEntityUnitTest.php b/core/modules/editor/tests/src/EditorConfigEntityUnitTest.php similarity index 100% rename from core/modules/editor/tests/Drupal/editor/Tests/EditorConfigEntityUnitTest.php rename to core/modules/editor/tests/src/EditorConfigEntityUnitTest.php diff --git a/core/modules/editor/tests/Drupal/editor/Tests/EditorXssFilter/StandardTest.php b/core/modules/editor/tests/src/EditorXssFilter/StandardTest.php similarity index 100% rename from core/modules/editor/tests/Drupal/editor/Tests/EditorXssFilter/StandardTest.php rename to core/modules/editor/tests/src/EditorXssFilter/StandardTest.php diff --git a/core/modules/entity/lib/Drupal/entity/Controller/EntityDisplayModeController.php b/core/modules/entity/src/Controller/EntityDisplayModeController.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Controller/EntityDisplayModeController.php rename to core/modules/entity/src/Controller/EntityDisplayModeController.php diff --git a/core/modules/entity/lib/Drupal/entity/Entity/EntityFormDisplay.php b/core/modules/entity/src/Entity/EntityFormDisplay.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Entity/EntityFormDisplay.php rename to core/modules/entity/src/Entity/EntityFormDisplay.php diff --git a/core/modules/entity/lib/Drupal/entity/Entity/EntityFormMode.php b/core/modules/entity/src/Entity/EntityFormMode.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Entity/EntityFormMode.php rename to core/modules/entity/src/Entity/EntityFormMode.php diff --git a/core/modules/entity/lib/Drupal/entity/Entity/EntityViewDisplay.php b/core/modules/entity/src/Entity/EntityViewDisplay.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Entity/EntityViewDisplay.php rename to core/modules/entity/src/Entity/EntityViewDisplay.php diff --git a/core/modules/entity/lib/Drupal/entity/Entity/EntityViewMode.php b/core/modules/entity/src/Entity/EntityViewMode.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Entity/EntityViewMode.php rename to core/modules/entity/src/Entity/EntityViewMode.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityDisplayBase.php b/core/modules/entity/src/EntityDisplayBase.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityDisplayBase.php rename to core/modules/entity/src/EntityDisplayBase.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityDisplayModeBase.php b/core/modules/entity/src/EntityDisplayModeBase.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityDisplayModeBase.php rename to core/modules/entity/src/EntityDisplayModeBase.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityDisplayModeInterface.php b/core/modules/entity/src/EntityDisplayModeInterface.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityDisplayModeInterface.php rename to core/modules/entity/src/EntityDisplayModeInterface.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityDisplayModeListBuilder.php b/core/modules/entity/src/EntityDisplayModeListBuilder.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityDisplayModeListBuilder.php rename to core/modules/entity/src/EntityDisplayModeListBuilder.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityFormModeInterface.php b/core/modules/entity/src/EntityFormModeInterface.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityFormModeInterface.php rename to core/modules/entity/src/EntityFormModeInterface.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityFormModeListBuilder.php b/core/modules/entity/src/EntityFormModeListBuilder.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityFormModeListBuilder.php rename to core/modules/entity/src/EntityFormModeListBuilder.php diff --git a/core/modules/entity/lib/Drupal/entity/EntityViewModeInterface.php b/core/modules/entity/src/EntityViewModeInterface.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/EntityViewModeInterface.php rename to core/modules/entity/src/EntityViewModeInterface.php diff --git a/core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeAddForm.php b/core/modules/entity/src/Form/EntityDisplayModeAddForm.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeAddForm.php rename to core/modules/entity/src/Form/EntityDisplayModeAddForm.php diff --git a/core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeDeleteForm.php b/core/modules/entity/src/Form/EntityDisplayModeDeleteForm.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeDeleteForm.php rename to core/modules/entity/src/Form/EntityDisplayModeDeleteForm.php diff --git a/core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeEditForm.php b/core/modules/entity/src/Form/EntityDisplayModeEditForm.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeEditForm.php rename to core/modules/entity/src/Form/EntityDisplayModeEditForm.php diff --git a/core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeFormBase.php b/core/modules/entity/src/Form/EntityDisplayModeFormBase.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Form/EntityDisplayModeFormBase.php rename to core/modules/entity/src/Form/EntityDisplayModeFormBase.php diff --git a/core/modules/entity/lib/Drupal/entity/Form/EntityFormModeAddForm.php b/core/modules/entity/src/Form/EntityFormModeAddForm.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Form/EntityFormModeAddForm.php rename to core/modules/entity/src/Form/EntityFormModeAddForm.php diff --git a/core/modules/entity/lib/Drupal/entity/Tests/EntityDisplayModeTest.php b/core/modules/entity/src/Tests/EntityDisplayModeTest.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Tests/EntityDisplayModeTest.php rename to core/modules/entity/src/Tests/EntityDisplayModeTest.php diff --git a/core/modules/entity/lib/Drupal/entity/Tests/EntityDisplayTest.php b/core/modules/entity/src/Tests/EntityDisplayTest.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Tests/EntityDisplayTest.php rename to core/modules/entity/src/Tests/EntityDisplayTest.php diff --git a/core/modules/entity/lib/Drupal/entity/Tests/EntityFormDisplayTest.php b/core/modules/entity/src/Tests/EntityFormDisplayTest.php similarity index 100% rename from core/modules/entity/lib/Drupal/entity/Tests/EntityFormDisplayTest.php rename to core/modules/entity/src/Tests/EntityFormDisplayTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Annotation/EntityReferenceSelection.php b/core/modules/entity_reference/src/Annotation/EntityReferenceSelection.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Annotation/EntityReferenceSelection.php rename to core/modules/entity_reference/src/Annotation/EntityReferenceSelection.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/ConfigurableEntityReferenceItem.php b/core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/ConfigurableEntityReferenceItem.php rename to core/modules/entity_reference/src/ConfigurableEntityReferenceItem.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/EntityReferenceAutocomplete.php b/core/modules/entity_reference/src/EntityReferenceAutocomplete.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/EntityReferenceAutocomplete.php rename to core/modules/entity_reference/src/EntityReferenceAutocomplete.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/EntityReferenceController.php b/core/modules/entity_reference/src/EntityReferenceController.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/EntityReferenceController.php rename to core/modules/entity_reference/src/EntityReferenceController.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Derivative/SelectionBase.php b/core/modules/entity_reference/src/Plugin/Derivative/SelectionBase.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Derivative/SelectionBase.php rename to core/modules/entity_reference/src/Plugin/Derivative/SelectionBase.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php b/core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php rename to core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceEntityFormatter.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php b/core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php rename to core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceFormatterBase.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php b/core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php rename to core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceIdFormatter.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php b/core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php rename to core/modules/entity_reference/src/Plugin/Field/FieldFormatter/EntityReferenceLabelFormatter.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php b/core/modules/entity_reference/src/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php rename to core/modules/entity_reference/src/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteTagsWidget.php b/core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteTagsWidget.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteTagsWidget.php rename to core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteTagsWidget.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteWidget.php b/core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteWidget.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteWidget.php rename to core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteWidget.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteWidgetBase.php b/core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteWidgetBase.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldWidget/AutocompleteWidgetBase.php rename to core/modules/entity_reference/src/Plugin/Field/FieldWidget/AutocompleteWidgetBase.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionBroken.php b/core/modules/entity_reference/src/Plugin/Type/Selection/SelectionBroken.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionBroken.php rename to core/modules/entity_reference/src/Plugin/Type/Selection/SelectionBroken.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php b/core/modules/entity_reference/src/Plugin/Type/Selection/SelectionInterface.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php rename to core/modules/entity_reference/src/Plugin/Type/Selection/SelectionInterface.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/SelectionPluginManager.php b/core/modules/entity_reference/src/Plugin/Type/SelectionPluginManager.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/SelectionPluginManager.php rename to core/modules/entity_reference/src/Plugin/Type/SelectionPluginManager.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/entity_reference/selection/SelectionBase.php b/core/modules/entity_reference/src/Plugin/entity_reference/selection/SelectionBase.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/entity_reference/selection/SelectionBase.php rename to core/modules/entity_reference/src/Plugin/entity_reference/selection/SelectionBase.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/display/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/display/EntityReference.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/display/EntityReference.php rename to core/modules/entity_reference/src/Plugin/views/display/EntityReference.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/row/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/row/EntityReference.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/row/EntityReference.php rename to core/modules/entity_reference/src/Plugin/views/row/EntityReference.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/style/EntityReference.php b/core/modules/entity_reference/src/Plugin/views/style/EntityReference.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/views/style/EntityReference.php rename to core/modules/entity_reference/src/Plugin/views/style/EntityReference.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/RecursiveRenderingException.php b/core/modules/entity_reference/src/RecursiveRenderingException.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/RecursiveRenderingException.php rename to core/modules/entity_reference/src/RecursiveRenderingException.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceAdminTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAdminTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceAdminTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAutoCreateTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceAutoCreateTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAutoCreateTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceAutoCreateTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAutocompleteTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceAutocompleteTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceAutocompleteTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceAutocompleteTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFieldDefaultValueTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceFieldDefaultValueTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFieldDefaultValueTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceFieldDefaultValueTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFieldTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceFieldTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFieldTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceFieldTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFormatterTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceFormatterTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceFormatterTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceIntegrationTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceIntegrationTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceIntegrationTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceIntegrationTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceItemTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceItemTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceItemTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceItemTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceSelectionAccessTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceSelectionAccessTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceSelectionAccessTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceSelectionAccessTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceSelectionSortTest.php b/core/modules/entity_reference/src/Tests/EntityReferenceSelectionSortTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/EntityReferenceSelectionSortTest.php rename to core/modules/entity_reference/src/Tests/EntityReferenceSelectionSortTest.php diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Tests/Views/SelectionTest.php b/core/modules/entity_reference/src/Tests/Views/SelectionTest.php similarity index 100% rename from core/modules/entity_reference/lib/Drupal/entity_reference/Tests/Views/SelectionTest.php rename to core/modules/entity_reference/src/Tests/Views/SelectionTest.php diff --git a/core/modules/field/lib/Drupal/field/ConfigImporterFieldPurger.php b/core/modules/field/src/ConfigImporterFieldPurger.php similarity index 100% rename from core/modules/field/lib/Drupal/field/ConfigImporterFieldPurger.php rename to core/modules/field/src/ConfigImporterFieldPurger.php diff --git a/core/modules/field/lib/Drupal/field/Entity/FieldConfig.php b/core/modules/field/src/Entity/FieldConfig.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Entity/FieldConfig.php rename to core/modules/field/src/Entity/FieldConfig.php diff --git a/core/modules/field/lib/Drupal/field/Entity/FieldInstanceConfig.php b/core/modules/field/src/Entity/FieldInstanceConfig.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Entity/FieldInstanceConfig.php rename to core/modules/field/src/Entity/FieldInstanceConfig.php diff --git a/core/modules/field/lib/Drupal/field/Field.php b/core/modules/field/src/Field.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Field.php rename to core/modules/field/src/Field.php diff --git a/core/modules/field/lib/Drupal/field/FieldConfigInterface.php b/core/modules/field/src/FieldConfigInterface.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldConfigInterface.php rename to core/modules/field/src/FieldConfigInterface.php diff --git a/core/modules/field/lib/Drupal/field/FieldConfigStorage.php b/core/modules/field/src/FieldConfigStorage.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldConfigStorage.php rename to core/modules/field/src/FieldConfigStorage.php diff --git a/core/modules/field/lib/Drupal/field/FieldConfigUpdateForbiddenException.php b/core/modules/field/src/FieldConfigUpdateForbiddenException.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldConfigUpdateForbiddenException.php rename to core/modules/field/src/FieldConfigUpdateForbiddenException.php diff --git a/core/modules/field/lib/Drupal/field/FieldException.php b/core/modules/field/src/FieldException.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldException.php rename to core/modules/field/src/FieldException.php diff --git a/core/modules/field/lib/Drupal/field/FieldInfo.php b/core/modules/field/src/FieldInfo.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldInfo.php rename to core/modules/field/src/FieldInfo.php diff --git a/core/modules/field/lib/Drupal/field/FieldInstanceConfigAccessController.php b/core/modules/field/src/FieldInstanceConfigAccessController.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldInstanceConfigAccessController.php rename to core/modules/field/src/FieldInstanceConfigAccessController.php diff --git a/core/modules/field/lib/Drupal/field/FieldInstanceConfigInterface.php b/core/modules/field/src/FieldInstanceConfigInterface.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldInstanceConfigInterface.php rename to core/modules/field/src/FieldInstanceConfigInterface.php diff --git a/core/modules/field/lib/Drupal/field/FieldInstanceConfigStorage.php b/core/modules/field/src/FieldInstanceConfigStorage.php similarity index 100% rename from core/modules/field/lib/Drupal/field/FieldInstanceConfigStorage.php rename to core/modules/field/src/FieldInstanceConfigStorage.php diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/argument/FieldList.php b/core/modules/field/src/Plugin/views/argument/FieldList.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Plugin/views/argument/FieldList.php rename to core/modules/field/src/Plugin/views/argument/FieldList.php diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php b/core/modules/field/src/Plugin/views/argument/ListString.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php rename to core/modules/field/src/Plugin/views/argument/ListString.php diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php b/core/modules/field/src/Plugin/views/field/Field.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php rename to core/modules/field/src/Plugin/views/field/Field.php diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php b/core/modules/field/src/Plugin/views/filter/FieldList.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php rename to core/modules/field/src/Plugin/views/filter/FieldList.php diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php b/core/modules/field/src/Plugin/views/relationship/EntityReverse.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php rename to core/modules/field/src/Plugin/views/relationship/EntityReverse.php diff --git a/core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php b/core/modules/field/src/Tests/BulkDeleteTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php rename to core/modules/field/src/Tests/BulkDeleteTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/ConfigFieldDefinitionTest.php b/core/modules/field/src/Tests/ConfigFieldDefinitionTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/ConfigFieldDefinitionTest.php rename to core/modules/field/src/Tests/ConfigFieldDefinitionTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/CrudTest.php b/core/modules/field/src/Tests/CrudTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/CrudTest.php rename to core/modules/field/src/Tests/CrudTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php b/core/modules/field/src/Tests/DisplayApiTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php rename to core/modules/field/src/Tests/DisplayApiTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Email/EmailFieldTest.php b/core/modules/field/src/Tests/Email/EmailFieldTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Email/EmailFieldTest.php rename to core/modules/field/src/Tests/Email/EmailFieldTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Email/EmailItemTest.php b/core/modules/field/src/Tests/Email/EmailItemTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Email/EmailItemTest.php rename to core/modules/field/src/Tests/Email/EmailItemTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php b/core/modules/field/src/Tests/FieldAccessTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php rename to core/modules/field/src/Tests/FieldAccessTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php b/core/modules/field/src/Tests/FieldAttachOtherTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php rename to core/modules/field/src/Tests/FieldAttachOtherTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php b/core/modules/field/src/Tests/FieldAttachStorageTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php rename to core/modules/field/src/Tests/FieldAttachStorageTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldEntityCountTest.php b/core/modules/field/src/Tests/FieldEntityCountTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldEntityCountTest.php rename to core/modules/field/src/Tests/FieldEntityCountTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldHelpTest.php b/core/modules/field/src/Tests/FieldHelpTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldHelpTest.php rename to core/modules/field/src/Tests/FieldHelpTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldImportChangeTest.php b/core/modules/field/src/Tests/FieldImportChangeTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldImportChangeTest.php rename to core/modules/field/src/Tests/FieldImportChangeTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldImportCreateTest.php b/core/modules/field/src/Tests/FieldImportCreateTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldImportCreateTest.php rename to core/modules/field/src/Tests/FieldImportCreateTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteTest.php b/core/modules/field/src/Tests/FieldImportDeleteTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteTest.php rename to core/modules/field/src/Tests/FieldImportDeleteTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteUninstallTest.php b/core/modules/field/src/Tests/FieldImportDeleteUninstallTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteUninstallTest.php rename to core/modules/field/src/Tests/FieldImportDeleteUninstallTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteUninstallUiTest.php b/core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldImportDeleteUninstallUiTest.php rename to core/modules/field/src/Tests/FieldImportDeleteUninstallUiTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldInfoTest.php b/core/modules/field/src/Tests/FieldInfoTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldInfoTest.php rename to core/modules/field/src/Tests/FieldInfoTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldInstanceCrudTest.php b/core/modules/field/src/Tests/FieldInstanceCrudTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldInstanceCrudTest.php rename to core/modules/field/src/Tests/FieldInstanceCrudTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php b/core/modules/field/src/Tests/FieldTestBase.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php rename to core/modules/field/src/Tests/FieldTestBase.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldUnitTestBase.php b/core/modules/field/src/Tests/FieldUnitTestBase.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldUnitTestBase.php rename to core/modules/field/src/Tests/FieldUnitTestBase.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldValidationTest.php b/core/modules/field/src/Tests/FieldValidationTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FieldValidationTest.php rename to core/modules/field/src/Tests/FieldValidationTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/FormTest.php b/core/modules/field/src/Tests/FormTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/FormTest.php rename to core/modules/field/src/Tests/FormTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/NestedFormTest.php b/core/modules/field/src/Tests/NestedFormTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/NestedFormTest.php rename to core/modules/field/src/Tests/NestedFormTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Number/NumberFieldTest.php b/core/modules/field/src/Tests/Number/NumberFieldTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Number/NumberFieldTest.php rename to core/modules/field/src/Tests/Number/NumberFieldTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Number/NumberItemTest.php b/core/modules/field/src/Tests/Number/NumberItemTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Number/NumberItemTest.php rename to core/modules/field/src/Tests/Number/NumberItemTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/ShapeItemTest.php b/core/modules/field/src/Tests/ShapeItemTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/ShapeItemTest.php rename to core/modules/field/src/Tests/ShapeItemTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/TestItemTest.php b/core/modules/field/src/Tests/TestItemTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/TestItemTest.php rename to core/modules/field/src/Tests/TestItemTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/TranslationTest.php b/core/modules/field/src/Tests/TranslationTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/TranslationTest.php rename to core/modules/field/src/Tests/TranslationTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php b/core/modules/field/src/Tests/TranslationWebTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php rename to core/modules/field/src/Tests/TranslationWebTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Views/ApiDataTest.php b/core/modules/field/src/Tests/Views/ApiDataTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Views/ApiDataTest.php rename to core/modules/field/src/Tests/Views/ApiDataTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Views/FieldTestBase.php b/core/modules/field/src/Tests/Views/FieldTestBase.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Views/FieldTestBase.php rename to core/modules/field/src/Tests/Views/FieldTestBase.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Views/FieldUITest.php b/core/modules/field/src/Tests/Views/FieldUITest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Views/FieldUITest.php rename to core/modules/field/src/Tests/Views/FieldUITest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/Views/HandlerFieldFieldTest.php b/core/modules/field/src/Tests/Views/HandlerFieldFieldTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/Views/HandlerFieldFieldTest.php rename to core/modules/field/src/Tests/Views/HandlerFieldFieldTest.php diff --git a/core/modules/field/lib/Drupal/field/Tests/reEnableModuleFieldTest.php b/core/modules/field/src/Tests/reEnableModuleFieldTest.php similarity index 100% rename from core/modules/field/lib/Drupal/field/Tests/reEnableModuleFieldTest.php rename to core/modules/field/src/Tests/reEnableModuleFieldTest.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Form/NestedEntityTestForm.php b/core/modules/field/tests/modules/field_test/src/Form/NestedEntityTestForm.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Form/NestedEntityTestForm.php rename to core/modules/field/tests/modules/field_test/src/Form/NestedEntityTestForm.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldDefaultFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldEmptyFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldEmptySettingFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldMultipleFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldNoSettingsFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldFormatter/TestFieldPrepareViewFormatter.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/HiddenTestItem.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/HiddenTestItem.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/HiddenTestItem.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/HiddenTestItem.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/ShapeItem.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/ShapeItem.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/ShapeItem.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/ShapeItem.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/TestItem.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItem.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldType/TestItem.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldType/TestItem.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldWidget/TestFieldWidget.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldWidget/TestFieldWidget.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldWidget/TestFieldWidget.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldWidget/TestFieldWidget.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php b/core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Field/FieldWidget/TestFieldWidgetMultiple.php diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Validation/Constraint/TestFieldConstraint.php b/core/modules/field/tests/modules/field_test/src/Plugin/Validation/Constraint/TestFieldConstraint.php similarity index 100% rename from core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/Validation/Constraint/TestFieldConstraint.php rename to core/modules/field/tests/modules/field_test/src/Plugin/Validation/Constraint/TestFieldConstraint.php diff --git a/core/modules/field/tests/Drupal/field/Tests/FieldConfigEntityUnitTest.php b/core/modules/field/tests/src/FieldConfigEntityUnitTest.php similarity index 100% rename from core/modules/field/tests/Drupal/field/Tests/FieldConfigEntityUnitTest.php rename to core/modules/field/tests/src/FieldConfigEntityUnitTest.php diff --git a/core/modules/field/tests/Drupal/field/Tests/FieldInstanceConfigEntityUnitTest.php b/core/modules/field/tests/src/FieldInstanceConfigEntityUnitTest.php similarity index 100% rename from core/modules/field/tests/Drupal/field/Tests/FieldInstanceConfigEntityUnitTest.php rename to core/modules/field/tests/src/FieldInstanceConfigEntityUnitTest.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Access/FormModeAccessCheck.php b/core/modules/field_ui/src/Access/FormModeAccessCheck.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Access/FormModeAccessCheck.php rename to core/modules/field_ui/src/Access/FormModeAccessCheck.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Access/ViewModeAccessCheck.php b/core/modules/field_ui/src/Access/ViewModeAccessCheck.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Access/ViewModeAccessCheck.php rename to core/modules/field_ui/src/Access/ViewModeAccessCheck.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php b/core/modules/field_ui/src/DisplayOverview.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php rename to core/modules/field_ui/src/DisplayOverview.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/DisplayOverviewBase.php b/core/modules/field_ui/src/DisplayOverviewBase.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/DisplayOverviewBase.php rename to core/modules/field_ui/src/DisplayOverviewBase.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldConfigListBuilder.php b/core/modules/field_ui/src/FieldConfigListBuilder.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/FieldConfigListBuilder.php rename to core/modules/field_ui/src/FieldConfigListBuilder.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldInstanceConfigListBuilder.php b/core/modules/field_ui/src/FieldInstanceConfigListBuilder.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/FieldInstanceConfigListBuilder.php rename to core/modules/field_ui/src/FieldInstanceConfigListBuilder.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php b/core/modules/field_ui/src/FieldOverview.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php rename to core/modules/field_ui/src/FieldOverview.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldUI.php b/core/modules/field_ui/src/FieldUI.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/FieldUI.php rename to core/modules/field_ui/src/FieldUI.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldEditForm.php b/core/modules/field_ui/src/Form/FieldEditForm.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Form/FieldEditForm.php rename to core/modules/field_ui/src/Form/FieldEditForm.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldInstanceConfigDeleteForm.php b/core/modules/field_ui/src/Form/FieldInstanceConfigDeleteForm.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Form/FieldInstanceConfigDeleteForm.php rename to core/modules/field_ui/src/Form/FieldInstanceConfigDeleteForm.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Form/FieldInstanceEditForm.php b/core/modules/field_ui/src/Form/FieldInstanceEditForm.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Form/FieldInstanceEditForm.php rename to core/modules/field_ui/src/Form/FieldInstanceEditForm.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FormDisplayOverview.php b/core/modules/field_ui/src/FormDisplayOverview.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/FormDisplayOverview.php rename to core/modules/field_ui/src/FormDisplayOverview.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/OverviewBase.php b/core/modules/field_ui/src/OverviewBase.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/OverviewBase.php rename to core/modules/field_ui/src/OverviewBase.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Plugin/Derivative/FieldUiLocalTask.php b/core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalTask.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Plugin/Derivative/FieldUiLocalTask.php rename to core/modules/field_ui/src/Plugin/Derivative/FieldUiLocalTask.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Routing/RouteSubscriber.php b/core/modules/field_ui/src/Routing/RouteSubscriber.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Routing/RouteSubscriber.php rename to core/modules/field_ui/src/Routing/RouteSubscriber.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Tests/FieldUIRouteTest.php b/core/modules/field_ui/src/Tests/FieldUIRouteTest.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Tests/FieldUIRouteTest.php rename to core/modules/field_ui/src/Tests/FieldUIRouteTest.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Tests/FieldUiTestBase.php b/core/modules/field_ui/src/Tests/FieldUiTestBase.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Tests/FieldUiTestBase.php rename to core/modules/field_ui/src/Tests/FieldUiTestBase.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Tests/ManageDisplayTest.php b/core/modules/field_ui/src/Tests/ManageDisplayTest.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Tests/ManageDisplayTest.php rename to core/modules/field_ui/src/Tests/ManageDisplayTest.php diff --git a/core/modules/field_ui/lib/Drupal/field_ui/Tests/ManageFieldsTest.php b/core/modules/field_ui/src/Tests/ManageFieldsTest.php similarity index 100% rename from core/modules/field_ui/lib/Drupal/field_ui/Tests/ManageFieldsTest.php rename to core/modules/field_ui/src/Tests/ManageFieldsTest.php diff --git a/core/modules/field_ui/tests/modules/field_ui_test/lib/Drupal/field_ui_test/Entity/FieldUITestNoBundle.php b/core/modules/field_ui/tests/modules/field_ui_test/src/Entity/FieldUITestNoBundle.php similarity index 100% rename from core/modules/field_ui/tests/modules/field_ui_test/lib/Drupal/field_ui_test/Entity/FieldUITestNoBundle.php rename to core/modules/field_ui/tests/modules/field_ui_test/src/Entity/FieldUITestNoBundle.php diff --git a/core/modules/file/lib/Drupal/file/Controller/FileWidgetAjaxController.php b/core/modules/file/src/Controller/FileWidgetAjaxController.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Controller/FileWidgetAjaxController.php rename to core/modules/file/src/Controller/FileWidgetAjaxController.php diff --git a/core/modules/file/lib/Drupal/file/Entity/File.php b/core/modules/file/src/Entity/File.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Entity/File.php rename to core/modules/file/src/Entity/File.php diff --git a/core/modules/file/lib/Drupal/file/FileInterface.php b/core/modules/file/src/FileInterface.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileInterface.php rename to core/modules/file/src/FileInterface.php diff --git a/core/modules/file/lib/Drupal/file/FileStorage.php b/core/modules/file/src/FileStorage.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileStorage.php rename to core/modules/file/src/FileStorage.php diff --git a/core/modules/file/lib/Drupal/file/FileStorageInterface.php b/core/modules/file/src/FileStorageInterface.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileStorageInterface.php rename to core/modules/file/src/FileStorageInterface.php diff --git a/core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php b/core/modules/file/src/FileUsage/DatabaseFileUsageBackend.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php rename to core/modules/file/src/FileUsage/DatabaseFileUsageBackend.php diff --git a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php b/core/modules/file/src/FileUsage/FileUsageBase.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php rename to core/modules/file/src/FileUsage/FileUsageBase.php diff --git a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php b/core/modules/file/src/FileUsage/FileUsageInterface.php similarity index 100% rename from core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php rename to core/modules/file/src/FileUsage/FileUsageInterface.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/FileFormatterBase.php b/core/modules/file/src/Plugin/Field/FieldFormatter/FileFormatterBase.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/FileFormatterBase.php rename to core/modules/file/src/Plugin/Field/FieldFormatter/FileFormatterBase.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/GenericFileFormatter.php b/core/modules/file/src/Plugin/Field/FieldFormatter/GenericFileFormatter.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/GenericFileFormatter.php rename to core/modules/file/src/Plugin/Field/FieldFormatter/GenericFileFormatter.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php b/core/modules/file/src/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php rename to core/modules/file/src/Plugin/Field/FieldFormatter/RSSEnclosureFormatter.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/TableFormatter.php b/core/modules/file/src/Plugin/Field/FieldFormatter/TableFormatter.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/TableFormatter.php rename to core/modules/file/src/Plugin/Field/FieldFormatter/TableFormatter.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/UrlPlainFormatter.php b/core/modules/file/src/Plugin/Field/FieldFormatter/UrlPlainFormatter.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldFormatter/UrlPlainFormatter.php rename to core/modules/file/src/Plugin/Field/FieldFormatter/UrlPlainFormatter.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldType/FileFieldItemList.php b/core/modules/file/src/Plugin/Field/FieldType/FileFieldItemList.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldType/FileFieldItemList.php rename to core/modules/file/src/Plugin/Field/FieldType/FileFieldItemList.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldType/FileItem.php b/core/modules/file/src/Plugin/Field/FieldType/FileItem.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldType/FileItem.php rename to core/modules/file/src/Plugin/Field/FieldType/FileItem.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/Field/FieldWidget/FileWidget.php b/core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/Field/FieldWidget/FileWidget.php rename to core/modules/file/src/Plugin/Field/FieldWidget/FileWidget.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/entity_reference/selection/FileSelection.php b/core/modules/file/src/Plugin/entity_reference/selection/FileSelection.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/entity_reference/selection/FileSelection.php rename to core/modules/file/src/Plugin/entity_reference/selection/FileSelection.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php b/core/modules/file/src/Plugin/views/argument/Fid.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php rename to core/modules/file/src/Plugin/views/argument/Fid.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/Extension.php b/core/modules/file/src/Plugin/views/field/Extension.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/field/Extension.php rename to core/modules/file/src/Plugin/views/field/Extension.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php b/core/modules/file/src/Plugin/views/field/File.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/field/File.php rename to core/modules/file/src/Plugin/views/field/File.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php b/core/modules/file/src/Plugin/views/field/FileMime.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php rename to core/modules/file/src/Plugin/views/field/FileMime.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php b/core/modules/file/src/Plugin/views/field/Status.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php rename to core/modules/file/src/Plugin/views/field/Status.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php b/core/modules/file/src/Plugin/views/field/Uri.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php rename to core/modules/file/src/Plugin/views/field/Uri.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php b/core/modules/file/src/Plugin/views/filter/Status.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php rename to core/modules/file/src/Plugin/views/filter/Status.php diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php b/core/modules/file/src/Plugin/views/wizard/File.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php rename to core/modules/file/src/Plugin/views/wizard/File.php diff --git a/core/modules/file/lib/Drupal/file/Tests/CopyTest.php b/core/modules/file/src/Tests/CopyTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/CopyTest.php rename to core/modules/file/src/Tests/CopyTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/DeleteTest.php b/core/modules/file/src/Tests/DeleteTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/DeleteTest.php rename to core/modules/file/src/Tests/DeleteTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php b/core/modules/file/src/Tests/DownloadTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/DownloadTest.php rename to core/modules/file/src/Tests/DownloadTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php b/core/modules/file/src/Tests/FileFieldDisplayTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php rename to core/modules/file/src/Tests/FileFieldDisplayTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php b/core/modules/file/src/Tests/FileFieldPathTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php rename to core/modules/file/src/Tests/FileFieldPathTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php b/core/modules/file/src/Tests/FileFieldRSSContentTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php rename to core/modules/file/src/Tests/FileFieldRSSContentTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php b/core/modules/file/src/Tests/FileFieldRevisionTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php rename to core/modules/file/src/Tests/FileFieldRevisionTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php b/core/modules/file/src/Tests/FileFieldTestBase.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php rename to core/modules/file/src/Tests/FileFieldTestBase.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php b/core/modules/file/src/Tests/FileFieldValidateTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php rename to core/modules/file/src/Tests/FileFieldValidateTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php b/core/modules/file/src/Tests/FileFieldWidgetTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php rename to core/modules/file/src/Tests/FileFieldWidgetTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileItemTest.php b/core/modules/file/src/Tests/FileItemTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileItemTest.php rename to core/modules/file/src/Tests/FileItemTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileListingTest.php b/core/modules/file/src/Tests/FileListingTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileListingTest.php rename to core/modules/file/src/Tests/FileListingTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php b/core/modules/file/src/Tests/FileManagedFileElementTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php rename to core/modules/file/src/Tests/FileManagedFileElementTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php b/core/modules/file/src/Tests/FileManagedTestBase.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php rename to core/modules/file/src/Tests/FileManagedTestBase.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileManagedUnitTestBase.php b/core/modules/file/src/Tests/FileManagedUnitTestBase.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileManagedUnitTestBase.php rename to core/modules/file/src/Tests/FileManagedUnitTestBase.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php b/core/modules/file/src/Tests/FilePrivateTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php rename to core/modules/file/src/Tests/FilePrivateTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php b/core/modules/file/src/Tests/FileTokenReplaceTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php rename to core/modules/file/src/Tests/FileTokenReplaceTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/LoadTest.php b/core/modules/file/src/Tests/LoadTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/LoadTest.php rename to core/modules/file/src/Tests/LoadTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/MoveTest.php b/core/modules/file/src/Tests/MoveTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/MoveTest.php rename to core/modules/file/src/Tests/MoveTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php b/core/modules/file/src/Tests/RemoteFileSaveUploadTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php rename to core/modules/file/src/Tests/RemoteFileSaveUploadTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php b/core/modules/file/src/Tests/SaveDataTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php rename to core/modules/file/src/Tests/SaveDataTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveTest.php b/core/modules/file/src/Tests/SaveTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/SaveTest.php rename to core/modules/file/src/Tests/SaveTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php b/core/modules/file/src/Tests/SaveUploadTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php rename to core/modules/file/src/Tests/SaveUploadTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php b/core/modules/file/src/Tests/SpaceUsedTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php rename to core/modules/file/src/Tests/SpaceUsedTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/UsageTest.php b/core/modules/file/src/Tests/UsageTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/UsageTest.php rename to core/modules/file/src/Tests/UsageTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php b/core/modules/file/src/Tests/ValidateTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/ValidateTest.php rename to core/modules/file/src/Tests/ValidateTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php b/core/modules/file/src/Tests/ValidatorTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php rename to core/modules/file/src/Tests/ValidatorTest.php diff --git a/core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php b/core/modules/file/src/Tests/Views/ExtensionViewsFieldTest.php similarity index 100% rename from core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php rename to core/modules/file/src/Tests/Views/ExtensionViewsFieldTest.php diff --git a/core/modules/file/tests/file_module_test/lib/Drupal/file_module_test/Form/FileModuleTestForm.php b/core/modules/file/tests/file_module_test/src/Form/FileModuleTestForm.php similarity index 100% rename from core/modules/file/tests/file_module_test/lib/Drupal/file_module_test/Form/FileModuleTestForm.php rename to core/modules/file/tests/file_module_test/src/Form/FileModuleTestForm.php diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php b/core/modules/file/tests/file_test/src/DummyReadOnlyStreamWrapper.php similarity index 100% rename from core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php rename to core/modules/file/tests/file_test/src/DummyReadOnlyStreamWrapper.php diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php b/core/modules/file/tests/file_test/src/DummyRemoteStreamWrapper.php similarity index 100% rename from core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php rename to core/modules/file/tests/file_test/src/DummyRemoteStreamWrapper.php diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php b/core/modules/file/tests/file_test/src/DummyStreamWrapper.php similarity index 100% rename from core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php rename to core/modules/file/tests/file_test/src/DummyStreamWrapper.php diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/Form/FileTestForm.php b/core/modules/file/tests/file_test/src/Form/FileTestForm.php similarity index 100% rename from core/modules/file/tests/file_test/lib/Drupal/file_test/Form/FileTestForm.php rename to core/modules/file/tests/file_test/src/Form/FileTestForm.php diff --git a/core/modules/filter/lib/Drupal/filter/Annotation/Filter.php b/core/modules/filter/src/Annotation/Filter.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Annotation/Filter.php rename to core/modules/filter/src/Annotation/Filter.php diff --git a/core/modules/filter/lib/Drupal/filter/Controller/FilterController.php b/core/modules/filter/src/Controller/FilterController.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Controller/FilterController.php rename to core/modules/filter/src/Controller/FilterController.php diff --git a/core/modules/filter/lib/Drupal/filter/Entity/FilterFormat.php b/core/modules/filter/src/Entity/FilterFormat.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Entity/FilterFormat.php rename to core/modules/filter/src/Entity/FilterFormat.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterBag.php b/core/modules/filter/src/FilterBag.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterBag.php rename to core/modules/filter/src/FilterBag.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatAccess.php b/core/modules/filter/src/FilterFormatAccess.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatAccess.php rename to core/modules/filter/src/FilterFormatAccess.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatAddForm.php b/core/modules/filter/src/FilterFormatAddForm.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatAddForm.php rename to core/modules/filter/src/FilterFormatAddForm.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatEditForm.php b/core/modules/filter/src/FilterFormatEditForm.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatEditForm.php rename to core/modules/filter/src/FilterFormatEditForm.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatFormBase.php b/core/modules/filter/src/FilterFormatFormBase.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatFormBase.php rename to core/modules/filter/src/FilterFormatFormBase.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatInterface.php b/core/modules/filter/src/FilterFormatInterface.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatInterface.php rename to core/modules/filter/src/FilterFormatInterface.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterFormatListBuilder.php b/core/modules/filter/src/FilterFormatListBuilder.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterFormatListBuilder.php rename to core/modules/filter/src/FilterFormatListBuilder.php diff --git a/core/modules/filter/lib/Drupal/filter/FilterPluginManager.php b/core/modules/filter/src/FilterPluginManager.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/FilterPluginManager.php rename to core/modules/filter/src/FilterPluginManager.php diff --git a/core/modules/filter/lib/Drupal/filter/Form/FilterDisableForm.php b/core/modules/filter/src/Form/FilterDisableForm.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Form/FilterDisableForm.php rename to core/modules/filter/src/Form/FilterDisableForm.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/DataType/FilterFormat.php b/core/modules/filter/src/Plugin/DataType/FilterFormat.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/DataType/FilterFormat.php rename to core/modules/filter/src/Plugin/DataType/FilterFormat.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterAutoP.php b/core/modules/filter/src/Plugin/Filter/FilterAutoP.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterAutoP.php rename to core/modules/filter/src/Plugin/Filter/FilterAutoP.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterCaption.php b/core/modules/filter/src/Plugin/Filter/FilterCaption.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterCaption.php rename to core/modules/filter/src/Plugin/Filter/FilterCaption.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php b/core/modules/filter/src/Plugin/Filter/FilterHtml.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtml.php rename to core/modules/filter/src/Plugin/Filter/FilterHtml.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlCorrector.php b/core/modules/filter/src/Plugin/Filter/FilterHtmlCorrector.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlCorrector.php rename to core/modules/filter/src/Plugin/Filter/FilterHtmlCorrector.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlEscape.php b/core/modules/filter/src/Plugin/Filter/FilterHtmlEscape.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlEscape.php rename to core/modules/filter/src/Plugin/Filter/FilterHtmlEscape.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlImageSecure.php b/core/modules/filter/src/Plugin/Filter/FilterHtmlImageSecure.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterHtmlImageSecure.php rename to core/modules/filter/src/Plugin/Filter/FilterHtmlImageSecure.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterNull.php b/core/modules/filter/src/Plugin/Filter/FilterNull.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterNull.php rename to core/modules/filter/src/Plugin/Filter/FilterNull.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterUrl.php b/core/modules/filter/src/Plugin/Filter/FilterUrl.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/Filter/FilterUrl.php rename to core/modules/filter/src/Plugin/Filter/FilterUrl.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/FilterBase.php b/core/modules/filter/src/Plugin/FilterBase.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/FilterBase.php rename to core/modules/filter/src/Plugin/FilterBase.php diff --git a/core/modules/filter/lib/Drupal/filter/Plugin/FilterInterface.php b/core/modules/filter/src/Plugin/FilterInterface.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Plugin/FilterInterface.php rename to core/modules/filter/src/Plugin/FilterInterface.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterAPITest.php b/core/modules/filter/src/Tests/FilterAPITest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterAPITest.php rename to core/modules/filter/src/Tests/FilterAPITest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php b/core/modules/filter/src/Tests/FilterAdminTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php rename to core/modules/filter/src/Tests/FilterAdminTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php b/core/modules/filter/src/Tests/FilterCrudTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php rename to core/modules/filter/src/Tests/FilterCrudTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php b/core/modules/filter/src/Tests/FilterDefaultConfigTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php rename to core/modules/filter/src/Tests/FilterDefaultConfigTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php b/core/modules/filter/src/Tests/FilterDefaultFormatTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php rename to core/modules/filter/src/Tests/FilterDefaultFormatTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php b/core/modules/filter/src/Tests/FilterFormatAccessTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php rename to core/modules/filter/src/Tests/FilterFormatAccessTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php b/core/modules/filter/src/Tests/FilterHooksTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php rename to core/modules/filter/src/Tests/FilterHooksTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php b/core/modules/filter/src/Tests/FilterHtmlImageSecureTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php rename to core/modules/filter/src/Tests/FilterHtmlImageSecureTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php b/core/modules/filter/src/Tests/FilterNoFormatTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php rename to core/modules/filter/src/Tests/FilterNoFormatTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php b/core/modules/filter/src/Tests/FilterSecurityTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php rename to core/modules/filter/src/Tests/FilterSecurityTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php b/core/modules/filter/src/Tests/FilterSettingsTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php rename to core/modules/filter/src/Tests/FilterSettingsTest.php diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php b/core/modules/filter/src/Tests/FilterUnitTest.php similarity index 100% rename from core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php rename to core/modules/filter/src/Tests/FilterUnitTest.php diff --git a/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php b/core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestReplace.php similarity index 100% rename from core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestReplace.php rename to core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestReplace.php diff --git a/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php b/core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php similarity index 100% rename from core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php rename to core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestRestrictTagsAndAttributes.php diff --git a/core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestUncacheable.php b/core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestUncacheable.php similarity index 100% rename from core/modules/filter/tests/filter_test/lib/Drupal/filter_test/Plugin/Filter/FilterTestUncacheable.php rename to core/modules/filter/tests/filter_test/src/Plugin/Filter/FilterTestUncacheable.php diff --git a/core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumBreadcrumbBuilderBase.php b/core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumBreadcrumbBuilderBase.php rename to core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php diff --git a/core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumListingBreadcrumbBuilder.php b/core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumListingBreadcrumbBuilder.php rename to core/modules/forum/src/Breadcrumb/ForumListingBreadcrumbBuilder.php diff --git a/core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumNodeBreadcrumbBuilder.php b/core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Breadcrumb/ForumNodeBreadcrumbBuilder.php rename to core/modules/forum/src/Breadcrumb/ForumNodeBreadcrumbBuilder.php diff --git a/core/modules/forum/lib/Drupal/forum/Controller/ForumController.php b/core/modules/forum/src/Controller/ForumController.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Controller/ForumController.php rename to core/modules/forum/src/Controller/ForumController.php diff --git a/core/modules/forum/lib/Drupal/forum/Form/ContainerForm.php b/core/modules/forum/src/Form/ContainerForm.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Form/ContainerForm.php rename to core/modules/forum/src/Form/ContainerForm.php diff --git a/core/modules/forum/lib/Drupal/forum/Form/DeleteForm.php b/core/modules/forum/src/Form/DeleteForm.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Form/DeleteForm.php rename to core/modules/forum/src/Form/DeleteForm.php diff --git a/core/modules/forum/lib/Drupal/forum/Form/ForumForm.php b/core/modules/forum/src/Form/ForumForm.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Form/ForumForm.php rename to core/modules/forum/src/Form/ForumForm.php diff --git a/core/modules/forum/lib/Drupal/forum/Form/Overview.php b/core/modules/forum/src/Form/Overview.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Form/Overview.php rename to core/modules/forum/src/Form/Overview.php diff --git a/core/modules/forum/lib/Drupal/forum/ForumManager.php b/core/modules/forum/src/ForumManager.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/ForumManager.php rename to core/modules/forum/src/ForumManager.php diff --git a/core/modules/forum/lib/Drupal/forum/ForumManagerInterface.php b/core/modules/forum/src/ForumManagerInterface.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/ForumManagerInterface.php rename to core/modules/forum/src/ForumManagerInterface.php diff --git a/core/modules/forum/lib/Drupal/forum/ForumSettingsForm.php b/core/modules/forum/src/ForumSettingsForm.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/ForumSettingsForm.php rename to core/modules/forum/src/ForumSettingsForm.php diff --git a/core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php b/core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Plugin/Block/ActiveTopicsBlock.php rename to core/modules/forum/src/Plugin/Block/ActiveTopicsBlock.php diff --git a/core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php b/core/modules/forum/src/Plugin/Block/ForumBlockBase.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php rename to core/modules/forum/src/Plugin/Block/ForumBlockBase.php diff --git a/core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php b/core/modules/forum/src/Plugin/Block/NewTopicsBlock.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Plugin/Block/NewTopicsBlock.php rename to core/modules/forum/src/Plugin/Block/NewTopicsBlock.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php b/core/modules/forum/src/Tests/ForumBlockTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php rename to core/modules/forum/src/Tests/ForumBlockTest.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php b/core/modules/forum/src/Tests/ForumIndexTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php rename to core/modules/forum/src/Tests/ForumIndexTest.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php b/core/modules/forum/src/Tests/ForumNodeAccessTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php rename to core/modules/forum/src/Tests/ForumNodeAccessTest.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php b/core/modules/forum/src/Tests/ForumTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/ForumTest.php rename to core/modules/forum/src/Tests/ForumTest.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php b/core/modules/forum/src/Tests/ForumUninstallTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php rename to core/modules/forum/src/Tests/ForumUninstallTest.php diff --git a/core/modules/forum/lib/Drupal/forum/Tests/Views/ForumIntegrationTest.php b/core/modules/forum/src/Tests/Views/ForumIntegrationTest.php similarity index 100% rename from core/modules/forum/lib/Drupal/forum/Tests/Views/ForumIntegrationTest.php rename to core/modules/forum/src/Tests/Views/ForumIntegrationTest.php diff --git a/core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php b/core/modules/forum/tests/src/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php similarity index 100% rename from core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php rename to core/modules/forum/tests/src/Breadcrumb/ForumBreadcrumbBuilderBaseTest.php diff --git a/core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumListingBreadcrumbBuilderTest.php b/core/modules/forum/tests/src/Breadcrumb/ForumListingBreadcrumbBuilderTest.php similarity index 100% rename from core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumListingBreadcrumbBuilderTest.php rename to core/modules/forum/tests/src/Breadcrumb/ForumListingBreadcrumbBuilderTest.php diff --git a/core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php b/core/modules/forum/tests/src/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php similarity index 100% rename from core/modules/forum/tests/Drupal/forum/Tests/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php rename to core/modules/forum/tests/src/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php diff --git a/core/modules/forum/tests/Drupal/forum/Tests/ForumManagerTest.php b/core/modules/forum/tests/src/ForumManagerTest.php similarity index 100% rename from core/modules/forum/tests/Drupal/forum/Tests/ForumManagerTest.php rename to core/modules/forum/tests/src/ForumManagerTest.php diff --git a/core/modules/hal/lib/Drupal/hal/Encoder/JsonEncoder.php b/core/modules/hal/src/Encoder/JsonEncoder.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Encoder/JsonEncoder.php rename to core/modules/hal/src/Encoder/JsonEncoder.php diff --git a/core/modules/hal/lib/Drupal/hal/HalSubscriber.php b/core/modules/hal/src/HalSubscriber.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/HalSubscriber.php rename to core/modules/hal/src/HalSubscriber.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/ContentEntityNormalizer.php b/core/modules/hal/src/Normalizer/ContentEntityNormalizer.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/ContentEntityNormalizer.php rename to core/modules/hal/src/Normalizer/ContentEntityNormalizer.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/EntityReferenceItemNormalizer.php b/core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/EntityReferenceItemNormalizer.php rename to core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/FieldItemNormalizer.php b/core/modules/hal/src/Normalizer/FieldItemNormalizer.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/FieldItemNormalizer.php rename to core/modules/hal/src/Normalizer/FieldItemNormalizer.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/FieldNormalizer.php b/core/modules/hal/src/Normalizer/FieldNormalizer.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/FieldNormalizer.php rename to core/modules/hal/src/Normalizer/FieldNormalizer.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/FileEntityNormalizer.php b/core/modules/hal/src/Normalizer/FileEntityNormalizer.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/FileEntityNormalizer.php rename to core/modules/hal/src/Normalizer/FileEntityNormalizer.php diff --git a/core/modules/hal/lib/Drupal/hal/Normalizer/NormalizerBase.php b/core/modules/hal/src/Normalizer/NormalizerBase.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Normalizer/NormalizerBase.php rename to core/modules/hal/src/Normalizer/NormalizerBase.php diff --git a/core/modules/hal/lib/Drupal/hal/Tests/DenormalizeTest.php b/core/modules/hal/src/Tests/DenormalizeTest.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Tests/DenormalizeTest.php rename to core/modules/hal/src/Tests/DenormalizeTest.php diff --git a/core/modules/hal/lib/Drupal/hal/Tests/EntityTest.php b/core/modules/hal/src/Tests/EntityTest.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Tests/EntityTest.php rename to core/modules/hal/src/Tests/EntityTest.php diff --git a/core/modules/hal/lib/Drupal/hal/Tests/FileDenormalizeTest.php b/core/modules/hal/src/Tests/FileDenormalizeTest.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Tests/FileDenormalizeTest.php rename to core/modules/hal/src/Tests/FileDenormalizeTest.php diff --git a/core/modules/hal/lib/Drupal/hal/Tests/NormalizeTest.php b/core/modules/hal/src/Tests/NormalizeTest.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Tests/NormalizeTest.php rename to core/modules/hal/src/Tests/NormalizeTest.php diff --git a/core/modules/hal/lib/Drupal/hal/Tests/NormalizerTestBase.php b/core/modules/hal/src/Tests/NormalizerTestBase.php similarity index 100% rename from core/modules/hal/lib/Drupal/hal/Tests/NormalizerTestBase.php rename to core/modules/hal/src/Tests/NormalizerTestBase.php diff --git a/core/modules/hal/tests/Drupal/hal/Tests/FieldItemNormalizerDenormalizeExceptionsUnitTest.php b/core/modules/hal/tests/src/FieldItemNormalizerDenormalizeExceptionsUnitTest.php similarity index 100% rename from core/modules/hal/tests/Drupal/hal/Tests/FieldItemNormalizerDenormalizeExceptionsUnitTest.php rename to core/modules/hal/tests/src/FieldItemNormalizerDenormalizeExceptionsUnitTest.php diff --git a/core/modules/hal/tests/Drupal/hal/Tests/FieldNormalizerDenormalizeExceptionsUnitTest.php b/core/modules/hal/tests/src/FieldNormalizerDenormalizeExceptionsUnitTest.php similarity index 100% rename from core/modules/hal/tests/Drupal/hal/Tests/FieldNormalizerDenormalizeExceptionsUnitTest.php rename to core/modules/hal/tests/src/FieldNormalizerDenormalizeExceptionsUnitTest.php diff --git a/core/modules/hal/tests/Drupal/hal/Tests/NormalizerDenormalizeExceptionsUnitTestBase.php b/core/modules/hal/tests/src/NormalizerDenormalizeExceptionsUnitTestBase.php similarity index 100% rename from core/modules/hal/tests/Drupal/hal/Tests/NormalizerDenormalizeExceptionsUnitTestBase.php rename to core/modules/hal/tests/src/NormalizerDenormalizeExceptionsUnitTestBase.php diff --git a/core/modules/help/lib/Drupal/help/Controller/HelpController.php b/core/modules/help/src/Controller/HelpController.php similarity index 100% rename from core/modules/help/lib/Drupal/help/Controller/HelpController.php rename to core/modules/help/src/Controller/HelpController.php diff --git a/core/modules/help/lib/Drupal/help/Tests/HelpTest.php b/core/modules/help/src/Tests/HelpTest.php similarity index 100% rename from core/modules/help/lib/Drupal/help/Tests/HelpTest.php rename to core/modules/help/src/Tests/HelpTest.php diff --git a/core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php b/core/modules/help/src/Tests/NoHelpTest.php similarity index 100% rename from core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php rename to core/modules/help/src/Tests/NoHelpTest.php diff --git a/core/modules/history/lib/Drupal/history/Controller/HistoryController.php b/core/modules/history/src/Controller/HistoryController.php similarity index 100% rename from core/modules/history/lib/Drupal/history/Controller/HistoryController.php rename to core/modules/history/src/Controller/HistoryController.php diff --git a/core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php b/core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php similarity index 100% rename from core/modules/history/lib/Drupal/history/Plugin/views/field/HistoryUserTimestamp.php rename to core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php diff --git a/core/modules/history/lib/Drupal/history/Plugin/views/filter/HistoryUserTimestamp.php b/core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php similarity index 100% rename from core/modules/history/lib/Drupal/history/Plugin/views/filter/HistoryUserTimestamp.php rename to core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php diff --git a/core/modules/history/lib/Drupal/history/Tests/HistoryTest.php b/core/modules/history/src/Tests/HistoryTest.php similarity index 100% rename from core/modules/history/lib/Drupal/history/Tests/HistoryTest.php rename to core/modules/history/src/Tests/HistoryTest.php diff --git a/core/modules/history/lib/Drupal/history/Tests/Views/HistoryTimestampTest.php b/core/modules/history/src/Tests/Views/HistoryTimestampTest.php similarity index 100% rename from core/modules/history/lib/Drupal/history/Tests/Views/HistoryTimestampTest.php rename to core/modules/history/src/Tests/Views/HistoryTimestampTest.php diff --git a/core/modules/image/lib/Drupal/image/Annotation/ImageEffect.php b/core/modules/image/src/Annotation/ImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Annotation/ImageEffect.php rename to core/modules/image/src/Annotation/ImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/ConfigurableImageEffectInterface.php b/core/modules/image/src/ConfigurableImageEffectInterface.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ConfigurableImageEffectInterface.php rename to core/modules/image/src/ConfigurableImageEffectInterface.php diff --git a/core/modules/image/lib/Drupal/image/Controller/ImageStyleDownloadController.php b/core/modules/image/src/Controller/ImageStyleDownloadController.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Controller/ImageStyleDownloadController.php rename to core/modules/image/src/Controller/ImageStyleDownloadController.php diff --git a/core/modules/image/lib/Drupal/image/Entity/ImageStyle.php b/core/modules/image/src/Entity/ImageStyle.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Entity/ImageStyle.php rename to core/modules/image/src/Entity/ImageStyle.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageEffectAddForm.php b/core/modules/image/src/Form/ImageEffectAddForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageEffectAddForm.php rename to core/modules/image/src/Form/ImageEffectAddForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageEffectDeleteForm.php b/core/modules/image/src/Form/ImageEffectDeleteForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageEffectDeleteForm.php rename to core/modules/image/src/Form/ImageEffectDeleteForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageEffectEditForm.php b/core/modules/image/src/Form/ImageEffectEditForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageEffectEditForm.php rename to core/modules/image/src/Form/ImageEffectEditForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageEffectFormBase.php b/core/modules/image/src/Form/ImageEffectFormBase.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageEffectFormBase.php rename to core/modules/image/src/Form/ImageEffectFormBase.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleAddForm.php b/core/modules/image/src/Form/ImageStyleAddForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageStyleAddForm.php rename to core/modules/image/src/Form/ImageStyleAddForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleDeleteForm.php b/core/modules/image/src/Form/ImageStyleDeleteForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageStyleDeleteForm.php rename to core/modules/image/src/Form/ImageStyleDeleteForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php b/core/modules/image/src/Form/ImageStyleEditForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php rename to core/modules/image/src/Form/ImageStyleEditForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleFlushForm.php b/core/modules/image/src/Form/ImageStyleFlushForm.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageStyleFlushForm.php rename to core/modules/image/src/Form/ImageStyleFlushForm.php diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleFormBase.php b/core/modules/image/src/Form/ImageStyleFormBase.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Form/ImageStyleFormBase.php rename to core/modules/image/src/Form/ImageStyleFormBase.php diff --git a/core/modules/image/lib/Drupal/image/ImageEffectBag.php b/core/modules/image/src/ImageEffectBag.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageEffectBag.php rename to core/modules/image/src/ImageEffectBag.php diff --git a/core/modules/image/lib/Drupal/image/ImageEffectBase.php b/core/modules/image/src/ImageEffectBase.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageEffectBase.php rename to core/modules/image/src/ImageEffectBase.php diff --git a/core/modules/image/lib/Drupal/image/ImageEffectInterface.php b/core/modules/image/src/ImageEffectInterface.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageEffectInterface.php rename to core/modules/image/src/ImageEffectInterface.php diff --git a/core/modules/image/lib/Drupal/image/ImageEffectManager.php b/core/modules/image/src/ImageEffectManager.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageEffectManager.php rename to core/modules/image/src/ImageEffectManager.php diff --git a/core/modules/image/lib/Drupal/image/ImageStyleInterface.php b/core/modules/image/src/ImageStyleInterface.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageStyleInterface.php rename to core/modules/image/src/ImageStyleInterface.php diff --git a/core/modules/image/lib/Drupal/image/ImageStyleListBuilder.php b/core/modules/image/src/ImageStyleListBuilder.php similarity index 100% rename from core/modules/image/lib/Drupal/image/ImageStyleListBuilder.php rename to core/modules/image/src/ImageStyleListBuilder.php diff --git a/core/modules/image/lib/Drupal/image/PathProcessor/PathProcessorImageStyles.php b/core/modules/image/src/PathProcessor/PathProcessorImageStyles.php similarity index 100% rename from core/modules/image/lib/Drupal/image/PathProcessor/PathProcessorImageStyles.php rename to core/modules/image/src/PathProcessor/PathProcessorImageStyles.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/Field/FieldFormatter/ImageFormatter.php b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/Field/FieldFormatter/ImageFormatter.php rename to core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatter.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/Field/FieldFormatter/ImageFormatterBase.php b/core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatterBase.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/Field/FieldFormatter/ImageFormatterBase.php rename to core/modules/image/src/Plugin/Field/FieldFormatter/ImageFormatterBase.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/Field/FieldType/ImageItem.php b/core/modules/image/src/Plugin/Field/FieldType/ImageItem.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/Field/FieldType/ImageItem.php rename to core/modules/image/src/Plugin/Field/FieldType/ImageItem.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/Field/FieldWidget/ImageWidget.php b/core/modules/image/src/Plugin/Field/FieldWidget/ImageWidget.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/Field/FieldWidget/ImageWidget.php rename to core/modules/image/src/Plugin/Field/FieldWidget/ImageWidget.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/CropImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/CropImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/DesaturateImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/DesaturateImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/DesaturateImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/DesaturateImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ResizeImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ResizeImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/ResizeImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/RotateImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/RotateImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/RotateImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ScaleAndCropImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ScaleAndCropImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/ScaleAndCropImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ScaleImageEffect.php b/core/modules/image/src/Plugin/ImageEffect/ScaleImageEffect.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Plugin/ImageEffect/ScaleImageEffect.php rename to core/modules/image/src/Plugin/ImageEffect/ScaleImageEffect.php diff --git a/core/modules/image/lib/Drupal/image/Routing/ImageStyleRoutes.php b/core/modules/image/src/Routing/ImageStyleRoutes.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Routing/ImageStyleRoutes.php rename to core/modules/image/src/Routing/ImageStyleRoutes.php diff --git a/core/modules/image/lib/Drupal/image/Tests/FileMoveTest.php b/core/modules/image/src/Tests/FileMoveTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/FileMoveTest.php rename to core/modules/image/src/Tests/FileMoveTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php b/core/modules/image/src/Tests/ImageAdminStylesTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php rename to core/modules/image/src/Tests/ImageAdminStylesTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php b/core/modules/image/src/Tests/ImageDimensionsTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php rename to core/modules/image/src/Tests/ImageDimensionsTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php b/core/modules/image/src/Tests/ImageEffectsTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php rename to core/modules/image/src/Tests/ImageEffectsTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php b/core/modules/image/src/Tests/ImageFieldDefaultImagesTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php rename to core/modules/image/src/Tests/ImageFieldDefaultImagesTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php b/core/modules/image/src/Tests/ImageFieldDisplayTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php rename to core/modules/image/src/Tests/ImageFieldDisplayTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php b/core/modules/image/src/Tests/ImageFieldTestBase.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php rename to core/modules/image/src/Tests/ImageFieldTestBase.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php b/core/modules/image/src/Tests/ImageFieldValidateTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php rename to core/modules/image/src/Tests/ImageFieldValidateTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php b/core/modules/image/src/Tests/ImageItemTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageItemTest.php rename to core/modules/image/src/Tests/ImageItemTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageStyleFlushTest.php b/core/modules/image/src/Tests/ImageStyleFlushTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageStyleFlushTest.php rename to core/modules/image/src/Tests/ImageStyleFlushTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php b/core/modules/image/src/Tests/ImageStylesPathAndUrlTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php rename to core/modules/image/src/Tests/ImageStylesPathAndUrlTest.php diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php b/core/modules/image/src/Tests/ImageThemeFunctionTest.php similarity index 100% rename from core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php rename to core/modules/image/src/Tests/ImageThemeFunctionTest.php diff --git a/core/modules/image/tests/modules/image_module_test/lib/Drupal/image_module_test/Plugin/ImageEffect/NullTestImageEffect.php b/core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/NullTestImageEffect.php similarity index 100% rename from core/modules/image/tests/modules/image_module_test/lib/Drupal/image_module_test/Plugin/ImageEffect/NullTestImageEffect.php rename to core/modules/image/tests/modules/image_module_test/src/Plugin/ImageEffect/NullTestImageEffect.php diff --git a/core/modules/language/lib/Drupal/language/Config/LanguageConfigFactoryOverride.php b/core/modules/language/src/Config/LanguageConfigFactoryOverride.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Config/LanguageConfigFactoryOverride.php rename to core/modules/language/src/Config/LanguageConfigFactoryOverride.php diff --git a/core/modules/language/lib/Drupal/language/Config/LanguageConfigFactoryOverrideInterface.php b/core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Config/LanguageConfigFactoryOverrideInterface.php rename to core/modules/language/src/Config/LanguageConfigFactoryOverrideInterface.php diff --git a/core/modules/language/lib/Drupal/language/ConfigurableLanguageManager.php b/core/modules/language/src/ConfigurableLanguageManager.php similarity index 100% rename from core/modules/language/lib/Drupal/language/ConfigurableLanguageManager.php rename to core/modules/language/src/ConfigurableLanguageManager.php diff --git a/core/modules/language/lib/Drupal/language/ConfigurableLanguageManagerInterface.php b/core/modules/language/src/ConfigurableLanguageManagerInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/ConfigurableLanguageManagerInterface.php rename to core/modules/language/src/ConfigurableLanguageManagerInterface.php diff --git a/core/modules/language/lib/Drupal/language/Controller/LanguageController.php b/core/modules/language/src/Controller/LanguageController.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Controller/LanguageController.php rename to core/modules/language/src/Controller/LanguageController.php diff --git a/core/modules/language/lib/Drupal/language/Entity/Language.php b/core/modules/language/src/Entity/Language.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Entity/Language.php rename to core/modules/language/src/Entity/Language.php diff --git a/core/modules/language/lib/Drupal/language/EventSubscriber/ConfigSubscriber.php b/core/modules/language/src/EventSubscriber/ConfigSubscriber.php similarity index 100% rename from core/modules/language/lib/Drupal/language/EventSubscriber/ConfigSubscriber.php rename to core/modules/language/src/EventSubscriber/ConfigSubscriber.php diff --git a/core/modules/language/lib/Drupal/language/EventSubscriber/LanguageRequestSubscriber.php b/core/modules/language/src/EventSubscriber/LanguageRequestSubscriber.php similarity index 100% rename from core/modules/language/lib/Drupal/language/EventSubscriber/LanguageRequestSubscriber.php rename to core/modules/language/src/EventSubscriber/LanguageRequestSubscriber.php diff --git a/core/modules/language/lib/Drupal/language/Exception/DeleteDefaultLanguageException.php b/core/modules/language/src/Exception/DeleteDefaultLanguageException.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Exception/DeleteDefaultLanguageException.php rename to core/modules/language/src/Exception/DeleteDefaultLanguageException.php diff --git a/core/modules/language/lib/Drupal/language/Exception/LanguageException.php b/core/modules/language/src/Exception/LanguageException.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Exception/LanguageException.php rename to core/modules/language/src/Exception/LanguageException.php diff --git a/core/modules/language/lib/Drupal/language/Form/ContentLanguageSettingsForm.php b/core/modules/language/src/Form/ContentLanguageSettingsForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/ContentLanguageSettingsForm.php rename to core/modules/language/src/Form/ContentLanguageSettingsForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/LanguageAddForm.php b/core/modules/language/src/Form/LanguageAddForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/LanguageAddForm.php rename to core/modules/language/src/Form/LanguageAddForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/LanguageDeleteForm.php b/core/modules/language/src/Form/LanguageDeleteForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/LanguageDeleteForm.php rename to core/modules/language/src/Form/LanguageDeleteForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/LanguageEditForm.php b/core/modules/language/src/Form/LanguageEditForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/LanguageEditForm.php rename to core/modules/language/src/Form/LanguageEditForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/LanguageFormBase.php b/core/modules/language/src/Form/LanguageFormBase.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/LanguageFormBase.php rename to core/modules/language/src/Form/LanguageFormBase.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationBrowserDeleteForm.php b/core/modules/language/src/Form/NegotiationBrowserDeleteForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationBrowserDeleteForm.php rename to core/modules/language/src/Form/NegotiationBrowserDeleteForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationBrowserForm.php b/core/modules/language/src/Form/NegotiationBrowserForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationBrowserForm.php rename to core/modules/language/src/Form/NegotiationBrowserForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationConfigureForm.php b/core/modules/language/src/Form/NegotiationConfigureForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationConfigureForm.php rename to core/modules/language/src/Form/NegotiationConfigureForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationSelectedForm.php b/core/modules/language/src/Form/NegotiationSelectedForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationSelectedForm.php rename to core/modules/language/src/Form/NegotiationSelectedForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationSessionForm.php b/core/modules/language/src/Form/NegotiationSessionForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationSessionForm.php rename to core/modules/language/src/Form/NegotiationSessionForm.php diff --git a/core/modules/language/lib/Drupal/language/Form/NegotiationUrlForm.php b/core/modules/language/src/Form/NegotiationUrlForm.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Form/NegotiationUrlForm.php rename to core/modules/language/src/Form/NegotiationUrlForm.php diff --git a/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php b/core/modules/language/src/HttpKernel/PathProcessorLanguage.php similarity index 100% rename from core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php rename to core/modules/language/src/HttpKernel/PathProcessorLanguage.php diff --git a/core/modules/language/lib/Drupal/language/LanguageAccessController.php b/core/modules/language/src/LanguageAccessController.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageAccessController.php rename to core/modules/language/src/LanguageAccessController.php diff --git a/core/modules/language/lib/Drupal/language/LanguageInterface.php b/core/modules/language/src/LanguageInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageInterface.php rename to core/modules/language/src/LanguageInterface.php diff --git a/core/modules/language/lib/Drupal/language/LanguageListBuilder.php b/core/modules/language/src/LanguageListBuilder.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageListBuilder.php rename to core/modules/language/src/LanguageListBuilder.php diff --git a/core/modules/language/lib/Drupal/language/LanguageNegotiationMethodBase.php b/core/modules/language/src/LanguageNegotiationMethodBase.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageNegotiationMethodBase.php rename to core/modules/language/src/LanguageNegotiationMethodBase.php diff --git a/core/modules/language/lib/Drupal/language/LanguageNegotiationMethodInterface.php b/core/modules/language/src/LanguageNegotiationMethodInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageNegotiationMethodInterface.php rename to core/modules/language/src/LanguageNegotiationMethodInterface.php diff --git a/core/modules/language/lib/Drupal/language/LanguageNegotiationMethodManager.php b/core/modules/language/src/LanguageNegotiationMethodManager.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageNegotiationMethodManager.php rename to core/modules/language/src/LanguageNegotiationMethodManager.php diff --git a/core/modules/language/lib/Drupal/language/LanguageNegotiator.php b/core/modules/language/src/LanguageNegotiator.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageNegotiator.php rename to core/modules/language/src/LanguageNegotiator.php diff --git a/core/modules/language/lib/Drupal/language/LanguageNegotiatorInterface.php b/core/modules/language/src/LanguageNegotiatorInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageNegotiatorInterface.php rename to core/modules/language/src/LanguageNegotiatorInterface.php diff --git a/core/modules/language/lib/Drupal/language/LanguageServiceProvider.php b/core/modules/language/src/LanguageServiceProvider.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageServiceProvider.php rename to core/modules/language/src/LanguageServiceProvider.php diff --git a/core/modules/language/lib/Drupal/language/LanguageSwitcherInterface.php b/core/modules/language/src/LanguageSwitcherInterface.php similarity index 100% rename from core/modules/language/lib/Drupal/language/LanguageSwitcherInterface.php rename to core/modules/language/src/LanguageSwitcherInterface.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php b/core/modules/language/src/Plugin/Block/LanguageBlock.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/Block/LanguageBlock.php rename to core/modules/language/src/Plugin/Block/LanguageBlock.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/Condition/Language.php b/core/modules/language/src/Plugin/Condition/Language.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/Condition/Language.php rename to core/modules/language/src/Plugin/Condition/Language.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/Derivative/LanguageBlock.php b/core/modules/language/src/Plugin/Derivative/LanguageBlock.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/Derivative/LanguageBlock.php rename to core/modules/language/src/Plugin/Derivative/LanguageBlock.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationBrowser.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSelected.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationSession.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSession.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationSession.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationSession.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUI.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUI.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUI.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUI.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUrl.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUrl.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUrl.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUrl.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php rename to core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationUrlFallback.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php b/core/modules/language/src/Plugin/views/argument/LanguageArgument.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php rename to core/modules/language/src/Plugin/views/argument/LanguageArgument.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php b/core/modules/language/src/Plugin/views/field/LanguageField.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php rename to core/modules/language/src/Plugin/views/field/LanguageField.php diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php b/core/modules/language/src/Plugin/views/filter/LanguageFilter.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php rename to core/modules/language/src/Plugin/views/filter/LanguageFilter.php diff --git a/core/modules/language/lib/Drupal/language/Tests/Condition/LanguageConditionTest.php b/core/modules/language/src/Tests/Condition/LanguageConditionTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/Condition/LanguageConditionTest.php rename to core/modules/language/src/Tests/Condition/LanguageConditionTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php b/core/modules/language/src/Tests/LanguageBrowserDetectionUnitTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php rename to core/modules/language/src/Tests/LanguageBrowserDetectionUnitTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigSchemaTest.php b/core/modules/language/src/Tests/LanguageConfigSchemaTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageConfigSchemaTest.php rename to core/modules/language/src/Tests/LanguageConfigSchemaTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php b/core/modules/language/src/Tests/LanguageConfigurationElementTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php rename to core/modules/language/src/Tests/LanguageConfigurationElementTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php b/core/modules/language/src/Tests/LanguageConfigurationTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php rename to core/modules/language/src/Tests/LanguageConfigurationTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php b/core/modules/language/src/Tests/LanguageCustomLanguageConfigurationTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php rename to core/modules/language/src/Tests/LanguageCustomLanguageConfigurationTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php b/core/modules/language/src/Tests/LanguageDependencyInjectionTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php rename to core/modules/language/src/Tests/LanguageDependencyInjectionTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageFallbackTest.php b/core/modules/language/src/Tests/LanguageFallbackTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageFallbackTest.php rename to core/modules/language/src/Tests/LanguageFallbackTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php b/core/modules/language/src/Tests/LanguageListModuleInstallTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageListModuleInstallTest.php rename to core/modules/language/src/Tests/LanguageListModuleInstallTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php b/core/modules/language/src/Tests/LanguageListTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php rename to core/modules/language/src/Tests/LanguageListTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php b/core/modules/language/src/Tests/LanguageNegotiationInfoTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php rename to core/modules/language/src/Tests/LanguageNegotiationInfoTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php b/core/modules/language/src/Tests/LanguagePathMonolingualTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php rename to core/modules/language/src/Tests/LanguagePathMonolingualTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php b/core/modules/language/src/Tests/LanguageSwitchingTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php rename to core/modules/language/src/Tests/LanguageSwitchingTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageTestBase.php b/core/modules/language/src/Tests/LanguageTestBase.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageTestBase.php rename to core/modules/language/src/Tests/LanguageTestBase.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php b/core/modules/language/src/Tests/LanguageUILanguageNegotiationTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php rename to core/modules/language/src/Tests/LanguageUILanguageNegotiationTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php b/core/modules/language/src/Tests/LanguageUrlRewritingTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php rename to core/modules/language/src/Tests/LanguageUrlRewritingTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php b/core/modules/language/src/Tests/Views/ArgumentLanguageTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php rename to core/modules/language/src/Tests/Views/ArgumentLanguageTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php b/core/modules/language/src/Tests/Views/FieldLanguageTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php rename to core/modules/language/src/Tests/Views/FieldLanguageTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php b/core/modules/language/src/Tests/Views/FilterLanguageTest.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php rename to core/modules/language/src/Tests/Views/FilterLanguageTest.php diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/LanguageTestBase.php b/core/modules/language/src/Tests/Views/LanguageTestBase.php similarity index 100% rename from core/modules/language/lib/Drupal/language/Tests/Views/LanguageTestBase.php rename to core/modules/language/src/Tests/Views/LanguageTestBase.php diff --git a/core/modules/language/tests/language_elements_test/lib/Drupal/language_elements_test/Form/LanguageElementsTestForm.php b/core/modules/language/tests/language_elements_test/src/Form/LanguageElementsTestForm.php similarity index 100% rename from core/modules/language/tests/language_elements_test/lib/Drupal/language_elements_test/Form/LanguageElementsTestForm.php rename to core/modules/language/tests/language_elements_test/src/Form/LanguageElementsTestForm.php diff --git a/core/modules/language/tests/language_test/lib/Drupal/language_test/Controller/LanguageTestController.php b/core/modules/language/tests/language_test/src/Controller/LanguageTestController.php similarity index 100% rename from core/modules/language/tests/language_test/lib/Drupal/language_test/Controller/LanguageTestController.php rename to core/modules/language/tests/language_test/src/Controller/LanguageTestController.php diff --git a/core/modules/language/tests/language_test/lib/Drupal/language_test/Plugin/LanguageNegotiation/LanguageNegotiationTest.php b/core/modules/language/tests/language_test/src/Plugin/LanguageNegotiation/LanguageNegotiationTest.php similarity index 100% rename from core/modules/language/tests/language_test/lib/Drupal/language_test/Plugin/LanguageNegotiation/LanguageNegotiationTest.php rename to core/modules/language/tests/language_test/src/Plugin/LanguageNegotiation/LanguageNegotiationTest.php diff --git a/core/modules/language/tests/language_test/lib/Drupal/language_test/Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php b/core/modules/language/tests/language_test/src/Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php similarity index 100% rename from core/modules/language/tests/language_test/lib/Drupal/language_test/Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php rename to core/modules/language/tests/language_test/src/Plugin/LanguageNegotiation/LanguageNegotiationTestTs.php diff --git a/core/modules/language/tests/Drupal/language/Tests/LanguageNegotiationUrlTest.php b/core/modules/language/tests/src/LanguageNegotiationUrlTest.php similarity index 100% rename from core/modules/language/tests/Drupal/language/Tests/LanguageNegotiationUrlTest.php rename to core/modules/language/tests/src/LanguageNegotiationUrlTest.php diff --git a/core/modules/language/tests/Drupal/language/Tests/Menu/LanguageLocalTasks.php b/core/modules/language/tests/src/Menu/LanguageLocalTasks.php similarity index 100% rename from core/modules/language/tests/Drupal/language/Tests/Menu/LanguageLocalTasks.php rename to core/modules/language/tests/src/Menu/LanguageLocalTasks.php diff --git a/core/modules/link/lib/Drupal/link/LinkItemInterface.php b/core/modules/link/src/LinkItemInterface.php similarity index 100% rename from core/modules/link/lib/Drupal/link/LinkItemInterface.php rename to core/modules/link/src/LinkItemInterface.php diff --git a/core/modules/link/lib/Drupal/link/Plugin/Field/FieldFormatter/LinkFormatter.php b/core/modules/link/src/Plugin/Field/FieldFormatter/LinkFormatter.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Plugin/Field/FieldFormatter/LinkFormatter.php rename to core/modules/link/src/Plugin/Field/FieldFormatter/LinkFormatter.php diff --git a/core/modules/link/lib/Drupal/link/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php b/core/modules/link/src/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php rename to core/modules/link/src/Plugin/Field/FieldFormatter/LinkSeparateFormatter.php diff --git a/core/modules/link/lib/Drupal/link/Plugin/Field/FieldType/LinkItem.php b/core/modules/link/src/Plugin/Field/FieldType/LinkItem.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Plugin/Field/FieldType/LinkItem.php rename to core/modules/link/src/Plugin/Field/FieldType/LinkItem.php diff --git a/core/modules/link/lib/Drupal/link/Plugin/Field/FieldWidget/LinkWidget.php b/core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Plugin/Field/FieldWidget/LinkWidget.php rename to core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php diff --git a/core/modules/link/lib/Drupal/link/Plugin/Validation/Constraint/LinkTypeConstraint.php b/core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Plugin/Validation/Constraint/LinkTypeConstraint.php rename to core/modules/link/src/Plugin/Validation/Constraint/LinkTypeConstraint.php diff --git a/core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php b/core/modules/link/src/Tests/LinkFieldTest.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php rename to core/modules/link/src/Tests/LinkFieldTest.php diff --git a/core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php b/core/modules/link/src/Tests/LinkFieldUITest.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php rename to core/modules/link/src/Tests/LinkFieldUITest.php diff --git a/core/modules/link/lib/Drupal/link/Tests/LinkItemTest.php b/core/modules/link/src/Tests/LinkItemTest.php similarity index 100% rename from core/modules/link/lib/Drupal/link/Tests/LinkItemTest.php rename to core/modules/link/src/Tests/LinkItemTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php b/core/modules/locale/src/Controller/LocaleController.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Controller/LocaleController.php rename to core/modules/locale/src/Controller/LocaleController.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/ExportForm.php b/core/modules/locale/src/Form/ExportForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/ExportForm.php rename to core/modules/locale/src/Form/ExportForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/ImportForm.php b/core/modules/locale/src/Form/ImportForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/ImportForm.php rename to core/modules/locale/src/Form/ImportForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/LocaleForm.php b/core/modules/locale/src/Form/LocaleForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/LocaleForm.php rename to core/modules/locale/src/Form/LocaleForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php b/core/modules/locale/src/Form/LocaleSettingsForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php rename to core/modules/locale/src/Form/LocaleSettingsForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/TranslateEditForm.php b/core/modules/locale/src/Form/TranslateEditForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/TranslateEditForm.php rename to core/modules/locale/src/Form/TranslateEditForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/TranslateFilterForm.php b/core/modules/locale/src/Form/TranslateFilterForm.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/TranslateFilterForm.php rename to core/modules/locale/src/Form/TranslateFilterForm.php diff --git a/core/modules/locale/lib/Drupal/locale/Form/TranslateFormBase.php b/core/modules/locale/src/Form/TranslateFormBase.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Form/TranslateFormBase.php rename to core/modules/locale/src/Form/TranslateFormBase.php diff --git a/core/modules/locale/lib/Drupal/locale/Gettext.php b/core/modules/locale/src/Gettext.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Gettext.php rename to core/modules/locale/src/Gettext.php diff --git a/core/modules/locale/lib/Drupal/locale/Locale.php b/core/modules/locale/src/Locale.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Locale.php rename to core/modules/locale/src/Locale.php diff --git a/core/modules/locale/lib/Drupal/locale/LocaleConfigManager.php b/core/modules/locale/src/LocaleConfigManager.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/LocaleConfigManager.php rename to core/modules/locale/src/LocaleConfigManager.php diff --git a/core/modules/locale/lib/Drupal/locale/LocaleLookup.php b/core/modules/locale/src/LocaleLookup.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/LocaleLookup.php rename to core/modules/locale/src/LocaleLookup.php diff --git a/core/modules/locale/lib/Drupal/locale/LocaleTranslation.php b/core/modules/locale/src/LocaleTranslation.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/LocaleTranslation.php rename to core/modules/locale/src/LocaleTranslation.php diff --git a/core/modules/locale/lib/Drupal/locale/LocaleTypedConfig.php b/core/modules/locale/src/LocaleTypedConfig.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/LocaleTypedConfig.php rename to core/modules/locale/src/LocaleTypedConfig.php diff --git a/core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php b/core/modules/locale/src/PoDatabaseReader.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php rename to core/modules/locale/src/PoDatabaseReader.php diff --git a/core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php b/core/modules/locale/src/PoDatabaseWriter.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php rename to core/modules/locale/src/PoDatabaseWriter.php diff --git a/core/modules/locale/lib/Drupal/locale/SourceString.php b/core/modules/locale/src/SourceString.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/SourceString.php rename to core/modules/locale/src/SourceString.php diff --git a/core/modules/locale/lib/Drupal/locale/StringBase.php b/core/modules/locale/src/StringBase.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/StringBase.php rename to core/modules/locale/src/StringBase.php diff --git a/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php b/core/modules/locale/src/StringDatabaseStorage.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php rename to core/modules/locale/src/StringDatabaseStorage.php diff --git a/core/modules/locale/lib/Drupal/locale/StringInterface.php b/core/modules/locale/src/StringInterface.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/StringInterface.php rename to core/modules/locale/src/StringInterface.php diff --git a/core/modules/locale/lib/Drupal/locale/StringStorageException.php b/core/modules/locale/src/StringStorageException.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/StringStorageException.php rename to core/modules/locale/src/StringStorageException.php diff --git a/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php b/core/modules/locale/src/StringStorageInterface.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/StringStorageInterface.php rename to core/modules/locale/src/StringStorageInterface.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigManagerTest.php b/core/modules/locale/src/Tests/LocaleConfigManagerTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigManagerTest.php rename to core/modules/locale/src/Tests/LocaleConfigManagerTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php b/core/modules/locale/src/Tests/LocaleConfigTranslationTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleConfigTranslationTest.php rename to core/modules/locale/src/Tests/LocaleConfigTranslationTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php b/core/modules/locale/src/Tests/LocaleContentTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php rename to core/modules/locale/src/Tests/LocaleContentTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php b/core/modules/locale/src/Tests/LocaleExportTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php rename to core/modules/locale/src/Tests/LocaleExportTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php b/core/modules/locale/src/Tests/LocaleImportFunctionalTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php rename to core/modules/locale/src/Tests/LocaleImportFunctionalTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php b/core/modules/locale/src/Tests/LocaleJavascriptTranslation.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php rename to core/modules/locale/src/Tests/LocaleJavascriptTranslation.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php b/core/modules/locale/src/Tests/LocaleLibraryInfoAlterTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php rename to core/modules/locale/src/Tests/LocaleLibraryInfoAlterTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php b/core/modules/locale/src/Tests/LocalePathTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php rename to core/modules/locale/src/Tests/LocalePathTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php b/core/modules/locale/src/Tests/LocalePluralFormatTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php rename to core/modules/locale/src/Tests/LocalePluralFormatTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php b/core/modules/locale/src/Tests/LocaleStringTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php rename to core/modules/locale/src/Tests/LocaleStringTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslateStringTourTest.php b/core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslateStringTourTest.php rename to core/modules/locale/src/Tests/LocaleTranslateStringTourTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php b/core/modules/locale/src/Tests/LocaleTranslationUiTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php rename to core/modules/locale/src/Tests/LocaleTranslationUiTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php b/core/modules/locale/src/Tests/LocaleUpdateBase.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php rename to core/modules/locale/src/Tests/LocaleUpdateBase.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php b/core/modules/locale/src/Tests/LocaleUpdateCronTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php rename to core/modules/locale/src/Tests/LocaleUpdateCronTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php b/core/modules/locale/src/Tests/LocaleUpdateInterfaceTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php rename to core/modules/locale/src/Tests/LocaleUpdateInterfaceTest.php diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php b/core/modules/locale/src/Tests/LocaleUpdateTest.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php rename to core/modules/locale/src/Tests/LocaleUpdateTest.php diff --git a/core/modules/locale/lib/Drupal/locale/TranslationString.php b/core/modules/locale/src/TranslationString.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/TranslationString.php rename to core/modules/locale/src/TranslationString.php diff --git a/core/modules/locale/lib/Drupal/locale/TranslationsStream.php b/core/modules/locale/src/TranslationsStream.php similarity index 100% rename from core/modules/locale/lib/Drupal/locale/TranslationsStream.php rename to core/modules/locale/src/TranslationsStream.php diff --git a/core/modules/locale/tests/Drupal/locale/Tests/LocaleLookupTest.php b/core/modules/locale/tests/src/LocaleLookupTest.php similarity index 100% rename from core/modules/locale/tests/Drupal/locale/Tests/LocaleLookupTest.php rename to core/modules/locale/tests/src/LocaleLookupTest.php diff --git a/core/modules/locale/tests/Drupal/locale/Tests/LocaleTranslationTest.php b/core/modules/locale/tests/src/LocaleTranslationTest.php similarity index 100% rename from core/modules/locale/tests/Drupal/locale/Tests/LocaleTranslationTest.php rename to core/modules/locale/tests/src/LocaleTranslationTest.php diff --git a/core/modules/locale/tests/Drupal/locale/Tests/Menu/LocaleLocalTasksTest.php b/core/modules/locale/tests/src/Menu/LocaleLocalTasksTest.php similarity index 100% rename from core/modules/locale/tests/Drupal/locale/Tests/Menu/LocaleLocalTasksTest.php rename to core/modules/locale/tests/src/Menu/LocaleLocalTasksTest.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/Entity/MenuLink.php b/core/modules/menu_link/src/Entity/MenuLink.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/Entity/MenuLink.php rename to core/modules/menu_link/src/Entity/MenuLink.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkAccessController.php b/core/modules/menu_link/src/MenuLinkAccessController.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuLinkAccessController.php rename to core/modules/menu_link/src/MenuLinkAccessController.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkForm.php b/core/modules/menu_link/src/MenuLinkForm.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuLinkForm.php rename to core/modules/menu_link/src/MenuLinkForm.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkInterface.php b/core/modules/menu_link/src/MenuLinkInterface.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuLinkInterface.php rename to core/modules/menu_link/src/MenuLinkInterface.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorage.php b/core/modules/menu_link/src/MenuLinkStorage.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorage.php rename to core/modules/menu_link/src/MenuLinkStorage.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageInterface.php b/core/modules/menu_link/src/MenuLinkStorageInterface.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageInterface.php rename to core/modules/menu_link/src/MenuLinkStorageInterface.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuTree.php b/core/modules/menu_link/src/MenuTree.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuTree.php rename to core/modules/menu_link/src/MenuTree.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuTreeInterface.php b/core/modules/menu_link/src/MenuTreeInterface.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/MenuTreeInterface.php rename to core/modules/menu_link/src/MenuTreeInterface.php diff --git a/core/modules/menu_link/lib/Drupal/menu_link/StaticMenuLinks.php b/core/modules/menu_link/src/StaticMenuLinks.php similarity index 100% rename from core/modules/menu_link/lib/Drupal/menu_link/StaticMenuLinks.php rename to core/modules/menu_link/src/StaticMenuLinks.php diff --git a/core/modules/menu_link/tests/Drupal/menu_link/Tests/MenuTreeTest.php b/core/modules/menu_link/tests/src/MenuTreeTest.php similarity index 100% rename from core/modules/menu_link/tests/Drupal/menu_link/Tests/MenuTreeTest.php rename to core/modules/menu_link/tests/src/MenuTreeTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Controller/MenuController.php b/core/modules/menu_ui/src/Controller/MenuController.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Controller/MenuController.php rename to core/modules/menu_ui/src/Controller/MenuController.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuDeleteForm.php b/core/modules/menu_ui/src/Form/MenuDeleteForm.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuDeleteForm.php rename to core/modules/menu_ui/src/Form/MenuDeleteForm.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuLinkDeleteForm.php b/core/modules/menu_ui/src/Form/MenuLinkDeleteForm.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuLinkDeleteForm.php rename to core/modules/menu_ui/src/Form/MenuLinkDeleteForm.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuLinkResetForm.php b/core/modules/menu_ui/src/Form/MenuLinkResetForm.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Form/MenuLinkResetForm.php rename to core/modules/menu_ui/src/Form/MenuLinkResetForm.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/MenuForm.php b/core/modules/menu_ui/src/MenuForm.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/MenuForm.php rename to core/modules/menu_ui/src/MenuForm.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/MenuListBuilder.php b/core/modules/menu_ui/src/MenuListBuilder.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/MenuListBuilder.php rename to core/modules/menu_ui/src/MenuListBuilder.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/MenuSettingsForm.php b/core/modules/menu_ui/src/MenuSettingsForm.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/MenuSettingsForm.php rename to core/modules/menu_ui/src/MenuSettingsForm.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuCacheTagsTest.php b/core/modules/menu_ui/src/Tests/MenuCacheTagsTest.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuCacheTagsTest.php rename to core/modules/menu_ui/src/Tests/MenuCacheTagsTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuLanguageTest.php b/core/modules/menu_ui/src/Tests/MenuLanguageTest.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuLanguageTest.php rename to core/modules/menu_ui/src/Tests/MenuLanguageTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuNodeTest.php b/core/modules/menu_ui/src/Tests/MenuNodeTest.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuNodeTest.php rename to core/modules/menu_ui/src/Tests/MenuNodeTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuTest.php b/core/modules/menu_ui/src/Tests/MenuTest.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuTest.php rename to core/modules/menu_ui/src/Tests/MenuTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuUninstallTest.php b/core/modules/menu_ui/src/Tests/MenuUninstallTest.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuUninstallTest.php rename to core/modules/menu_ui/src/Tests/MenuUninstallTest.php diff --git a/core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuWebTestBase.php b/core/modules/menu_ui/src/Tests/MenuWebTestBase.php similarity index 100% rename from core/modules/menu_ui/lib/Drupal/menu_ui/Tests/MenuWebTestBase.php rename to core/modules/menu_ui/src/Tests/MenuWebTestBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateDestination.php b/core/modules/migrate/src/Annotation/MigrateDestination.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateDestination.php rename to core/modules/migrate/src/Annotation/MigrateDestination.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateProcessPlugin.php b/core/modules/migrate/src/Annotation/MigrateProcessPlugin.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateProcessPlugin.php rename to core/modules/migrate/src/Annotation/MigrateProcessPlugin.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateSource.php b/core/modules/migrate/src/Annotation/MigrateSource.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Annotation/MigrateSource.php rename to core/modules/migrate/src/Annotation/MigrateSource.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Entity/Migration.php b/core/modules/migrate/src/Entity/Migration.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Entity/Migration.php rename to core/modules/migrate/src/Entity/Migration.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Entity/MigrationInterface.php b/core/modules/migrate/src/Entity/MigrationInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Entity/MigrationInterface.php rename to core/modules/migrate/src/Entity/MigrationInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateBuildDependencyInterface.php b/core/modules/migrate/src/MigrateBuildDependencyInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateBuildDependencyInterface.php rename to core/modules/migrate/src/MigrateBuildDependencyInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateException.php b/core/modules/migrate/src/MigrateException.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateException.php rename to core/modules/migrate/src/MigrateException.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateExecutable.php b/core/modules/migrate/src/MigrateExecutable.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateExecutable.php rename to core/modules/migrate/src/MigrateExecutable.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateMessage.php b/core/modules/migrate/src/MigrateMessage.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateMessage.php rename to core/modules/migrate/src/MigrateMessage.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateMessageInterface.php b/core/modules/migrate/src/MigrateMessageInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateMessageInterface.php rename to core/modules/migrate/src/MigrateMessageInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigratePassword.php b/core/modules/migrate/src/MigratePassword.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigratePassword.php rename to core/modules/migrate/src/MigratePassword.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateServiceProvider.php b/core/modules/migrate/src/MigrateServiceProvider.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateServiceProvider.php rename to core/modules/migrate/src/MigrateServiceProvider.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateSkipProcessException.php b/core/modules/migrate/src/MigrateSkipProcessException.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateSkipProcessException.php rename to core/modules/migrate/src/MigrateSkipProcessException.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrateSkipRowException.php b/core/modules/migrate/src/MigrateSkipRowException.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrateSkipRowException.php rename to core/modules/migrate/src/MigrateSkipRowException.php diff --git a/core/modules/migrate/lib/Drupal/migrate/MigrationStorage.php b/core/modules/migrate/src/MigrationStorage.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/MigrationStorage.php rename to core/modules/migrate/src/MigrationStorage.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/Derivative/MigrateEntity.php b/core/modules/migrate/src/Plugin/Derivative/MigrateEntity.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/Derivative/MigrateEntity.php rename to core/modules/migrate/src/Plugin/Derivative/MigrateEntity.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/Derivative/MigrateEntityRevision.php b/core/modules/migrate/src/Plugin/Derivative/MigrateEntityRevision.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/Derivative/MigrateEntityRevision.php rename to core/modules/migrate/src/Plugin/Derivative/MigrateEntityRevision.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateDestinationInterface.php b/core/modules/migrate/src/Plugin/MigrateDestinationInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateDestinationInterface.php rename to core/modules/migrate/src/Plugin/MigrateDestinationInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateDestinationPluginManager.php b/core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateDestinationPluginManager.php rename to core/modules/migrate/src/Plugin/MigrateDestinationPluginManager.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateEntityDestinationFieldInterface.php b/core/modules/migrate/src/Plugin/MigrateEntityDestinationFieldInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateEntityDestinationFieldInterface.php rename to core/modules/migrate/src/Plugin/MigrateEntityDestinationFieldInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateIdMapInterface.php b/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateIdMapInterface.php rename to core/modules/migrate/src/Plugin/MigrateIdMapInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigratePluginManager.php b/core/modules/migrate/src/Plugin/MigratePluginManager.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigratePluginManager.php rename to core/modules/migrate/src/Plugin/MigratePluginManager.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateProcessInterface.php b/core/modules/migrate/src/Plugin/MigrateProcessInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateProcessInterface.php rename to core/modules/migrate/src/Plugin/MigrateProcessInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateSourceInterface.php b/core/modules/migrate/src/Plugin/MigrateSourceInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/MigrateSourceInterface.php rename to core/modules/migrate/src/Plugin/MigrateSourceInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/RequirementsInterface.php b/core/modules/migrate/src/Plugin/RequirementsInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/RequirementsInterface.php rename to core/modules/migrate/src/Plugin/RequirementsInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/SourceEntityInterface.php b/core/modules/migrate/src/Plugin/SourceEntityInterface.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/SourceEntityInterface.php rename to core/modules/migrate/src/Plugin/SourceEntityInterface.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Book.php b/core/modules/migrate/src/Plugin/migrate/destination/Book.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Book.php rename to core/modules/migrate/src/Plugin/migrate/destination/Book.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/ComponentEntityDisplayBase.php b/core/modules/migrate/src/Plugin/migrate/destination/ComponentEntityDisplayBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/ComponentEntityDisplayBase.php rename to core/modules/migrate/src/Plugin/migrate/destination/ComponentEntityDisplayBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Config.php b/core/modules/migrate/src/Plugin/migrate/destination/Config.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Config.php rename to core/modules/migrate/src/Plugin/migrate/destination/Config.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/DestinationBase.php b/core/modules/migrate/src/Plugin/migrate/destination/DestinationBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/DestinationBase.php rename to core/modules/migrate/src/Plugin/migrate/destination/DestinationBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Entity.php b/core/modules/migrate/src/Plugin/migrate/destination/Entity.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Entity.php rename to core/modules/migrate/src/Plugin/migrate/destination/Entity.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityComment.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityComment.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityComment.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityComment.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityConfigBase.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityConfigBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityConfigBase.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityConfigBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityContentBase.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityContentBase.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityDateFormat.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityDateFormat.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityDateFormat.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityDateFormat.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFieldConfig.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityFieldConfig.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFieldConfig.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityFieldConfig.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFieldInstance.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityFieldInstance.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFieldInstance.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityFieldInstance.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFile.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityFile.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityFile.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityFile.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityRevision.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityRevision.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityRevision.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntitySearchPage.php b/core/modules/migrate/src/Plugin/migrate/destination/EntitySearchPage.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntitySearchPage.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntitySearchPage.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityUser.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityUser.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityUser.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityUser.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityViewMode.php b/core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/EntityViewMode.php rename to core/modules/migrate/src/Plugin/migrate/destination/EntityViewMode.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Null.php b/core/modules/migrate/src/Plugin/migrate/destination/Null.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/Null.php rename to core/modules/migrate/src/Plugin/migrate/destination/Null.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/PerComponentEntityDisplay.php b/core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityDisplay.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/PerComponentEntityDisplay.php rename to core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityDisplay.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/PerComponentEntityFormDisplay.php b/core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityFormDisplay.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/PerComponentEntityFormDisplay.php rename to core/modules/migrate/src/Plugin/migrate/destination/PerComponentEntityFormDisplay.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/UrlAlias.php b/core/modules/migrate/src/Plugin/migrate/destination/UrlAlias.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/destination/UrlAlias.php rename to core/modules/migrate/src/Plugin/migrate/destination/UrlAlias.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/id_map/Sql.php b/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/id_map/Sql.php rename to core/modules/migrate/src/Plugin/migrate/id_map/Sql.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Callback.php b/core/modules/migrate/src/Plugin/migrate/process/Callback.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Callback.php rename to core/modules/migrate/src/Plugin/migrate/process/Callback.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Concat.php b/core/modules/migrate/src/Plugin/migrate/process/Concat.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Concat.php rename to core/modules/migrate/src/Plugin/migrate/process/Concat.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DedupeBase.php b/core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DedupeBase.php rename to core/modules/migrate/src/Plugin/migrate/process/DedupeBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DedupeEntity.php b/core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DedupeEntity.php rename to core/modules/migrate/src/Plugin/migrate/process/DedupeEntity.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DefaultValue.php b/core/modules/migrate/src/Plugin/migrate/process/DefaultValue.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/DefaultValue.php rename to core/modules/migrate/src/Plugin/migrate/process/DefaultValue.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Extract.php b/core/modules/migrate/src/Plugin/migrate/process/Extract.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Extract.php rename to core/modules/migrate/src/Plugin/migrate/process/Extract.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Flatten.php b/core/modules/migrate/src/Plugin/migrate/process/Flatten.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Flatten.php rename to core/modules/migrate/src/Plugin/migrate/process/Flatten.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Get.php b/core/modules/migrate/src/Plugin/migrate/process/Get.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Get.php rename to core/modules/migrate/src/Plugin/migrate/process/Get.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Iterator.php b/core/modules/migrate/src/Plugin/migrate/process/Iterator.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Iterator.php rename to core/modules/migrate/src/Plugin/migrate/process/Iterator.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/MachineName.php b/core/modules/migrate/src/Plugin/migrate/process/MachineName.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/MachineName.php rename to core/modules/migrate/src/Plugin/migrate/process/MachineName.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Migration.php b/core/modules/migrate/src/Plugin/migrate/process/Migration.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/Migration.php rename to core/modules/migrate/src/Plugin/migrate/process/Migration.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/SkipProcessOnEmpty.php b/core/modules/migrate/src/Plugin/migrate/process/SkipProcessOnEmpty.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/SkipProcessOnEmpty.php rename to core/modules/migrate/src/Plugin/migrate/process/SkipProcessOnEmpty.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/SkipRowOnEmpty.php b/core/modules/migrate/src/Plugin/migrate/process/SkipRowOnEmpty.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/SkipRowOnEmpty.php rename to core/modules/migrate/src/Plugin/migrate/process/SkipRowOnEmpty.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/StaticMap.php b/core/modules/migrate/src/Plugin/migrate/process/StaticMap.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/process/StaticMap.php rename to core/modules/migrate/src/Plugin/migrate/process/StaticMap.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/EmptySource.php b/core/modules/migrate/src/Plugin/migrate/source/EmptySource.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/EmptySource.php rename to core/modules/migrate/src/Plugin/migrate/source/EmptySource.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/SourcePluginBase.php b/core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/SourcePluginBase.php rename to core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/SqlBase.php b/core/modules/migrate/src/Plugin/migrate/source/SqlBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Plugin/migrate/source/SqlBase.php rename to core/modules/migrate/src/Plugin/migrate/source/SqlBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/ProcessPluginBase.php b/core/modules/migrate/src/ProcessPluginBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/ProcessPluginBase.php rename to core/modules/migrate/src/ProcessPluginBase.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Row.php b/core/modules/migrate/src/Row.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Row.php rename to core/modules/migrate/src/Row.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Source.php b/core/modules/migrate/src/Source.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Source.php rename to core/modules/migrate/src/Source.php diff --git a/core/modules/migrate/lib/Drupal/migrate/Tests/MigrateTestBase.php b/core/modules/migrate/src/Tests/MigrateTestBase.php similarity index 100% rename from core/modules/migrate/lib/Drupal/migrate/Tests/MigrateTestBase.php rename to core/modules/migrate/src/Tests/MigrateTestBase.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateExecutableTest.php b/core/modules/migrate/tests/src/MigrateExecutableTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateExecutableTest.php rename to core/modules/migrate/tests/src/MigrateExecutableTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateExecuteableMemoryExceededTest.php b/core/modules/migrate/tests/src/MigrateExecuteableMemoryExceededTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateExecuteableMemoryExceededTest.php rename to core/modules/migrate/tests/src/MigrateExecuteableMemoryExceededTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlIdMapEnsureTablesTest.php b/core/modules/migrate/tests/src/MigrateSqlIdMapEnsureTablesTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlIdMapEnsureTablesTest.php rename to core/modules/migrate/tests/src/MigrateSqlIdMapEnsureTablesTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlIdMapTest.php b/core/modules/migrate/tests/src/MigrateSqlIdMapTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlIdMapTest.php rename to core/modules/migrate/tests/src/MigrateSqlIdMapTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlSourceTestCase.php b/core/modules/migrate/tests/src/MigrateSqlSourceTestCase.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateSqlSourceTestCase.php rename to core/modules/migrate/tests/src/MigrateSqlSourceTestCase.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/MigrateTestCase.php b/core/modules/migrate/tests/src/MigrateTestCase.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/MigrateTestCase.php rename to core/modules/migrate/tests/src/MigrateTestCase.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/RowTest.php b/core/modules/migrate/tests/src/RowTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/RowTest.php rename to core/modules/migrate/tests/src/RowTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/TestMigrateExecutable.php b/core/modules/migrate/tests/src/TestMigrateExecutable.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/TestMigrateExecutable.php rename to core/modules/migrate/tests/src/TestMigrateExecutable.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/TestSqlIdMap.php b/core/modules/migrate/tests/src/TestSqlIdMap.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/TestSqlIdMap.php rename to core/modules/migrate/tests/src/TestSqlIdMap.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/destination/PerComponentEntityDisplayTest.php b/core/modules/migrate/tests/src/destination/PerComponentEntityDisplayTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/destination/PerComponentEntityDisplayTest.php rename to core/modules/migrate/tests/src/destination/PerComponentEntityDisplayTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/destination/PerComponentEntityFormDisplayTest.php b/core/modules/migrate/tests/src/destination/PerComponentEntityFormDisplayTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/destination/PerComponentEntityFormDisplayTest.php rename to core/modules/migrate/tests/src/destination/PerComponentEntityFormDisplayTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/CallbackTest.php b/core/modules/migrate/tests/src/process/CallbackTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/CallbackTest.php rename to core/modules/migrate/tests/src/process/CallbackTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/ConcatTest.php b/core/modules/migrate/tests/src/process/ConcatTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/ConcatTest.php rename to core/modules/migrate/tests/src/process/ConcatTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php b/core/modules/migrate/tests/src/process/DedupeEntityTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php rename to core/modules/migrate/tests/src/process/DedupeEntityTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/ExtractTest.php b/core/modules/migrate/tests/src/process/ExtractTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/ExtractTest.php rename to core/modules/migrate/tests/src/process/ExtractTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/FlattenTest.php b/core/modules/migrate/tests/src/process/FlattenTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/FlattenTest.php rename to core/modules/migrate/tests/src/process/FlattenTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/GetTest.php b/core/modules/migrate/tests/src/process/GetTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/GetTest.php rename to core/modules/migrate/tests/src/process/GetTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/IteratorTest.php b/core/modules/migrate/tests/src/process/IteratorTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/IteratorTest.php rename to core/modules/migrate/tests/src/process/IteratorTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/MachineNameTest.php b/core/modules/migrate/tests/src/process/MachineNameTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/MachineNameTest.php rename to core/modules/migrate/tests/src/process/MachineNameTest.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/MigrateProcessTestCase.php b/core/modules/migrate/tests/src/process/MigrateProcessTestCase.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/MigrateProcessTestCase.php rename to core/modules/migrate/tests/src/process/MigrateProcessTestCase.php diff --git a/core/modules/migrate/tests/Drupal/migrate/Tests/process/StaticMapTest.php b/core/modules/migrate/tests/src/process/StaticMapTest.php similarity index 100% rename from core/modules/migrate/tests/Drupal/migrate/Tests/process/StaticMapTest.php rename to core/modules/migrate/tests/src/process/StaticMapTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Entity/Migration.php b/core/modules/migrate_drupal/src/Entity/Migration.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Entity/Migration.php rename to core/modules/migrate_drupal/src/Entity/Migration.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Entity/MigrationInterface.php b/core/modules/migrate_drupal/src/Entity/MigrationInterface.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Entity/MigrationInterface.php rename to core/modules/migrate_drupal/src/Entity/MigrationInterface.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/MigrationStorage.php b/core/modules/migrate_drupal/src/MigrationStorage.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/MigrationStorage.php rename to core/modules/migrate_drupal/src/MigrationStorage.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/MigrateLoadInterface.php b/core/modules/migrate_drupal/src/Plugin/MigrateLoadInterface.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/MigrateLoadInterface.php rename to core/modules/migrate_drupal/src/Plugin/MigrateLoadInterface.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/load/LoadEntity.php b/core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/load/LoadEntity.php rename to core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/load/d6/LoadTermNode.php b/core/modules/migrate_drupal/src/Plugin/migrate/load/d6/LoadTermNode.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/load/d6/LoadTermNode.php rename to core/modules/migrate_drupal/src/Plugin/migrate/load/d6/LoadTermNode.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/BlockPluginId.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/BlockPluginId.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/BlockPluginId.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/BlockPluginId.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/BlockSettings.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/BlockSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/BlockSettings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/BlockSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldFormatterSettingsDefaults.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldIdGenerator.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldIdGenerator.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldIdGenerator.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldIdGenerator.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceDefaults.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceDefaults.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceDefaults.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceDefaults.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceSettings.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceSettings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldInstanceWidgetSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldSettings.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldSettings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldTypeDefaults.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FieldTypeDefaults.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FieldTypeDefaults.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FileImageHandler.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FileImageHandler.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FileImageHandler.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FileImageHandler.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FileUri.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FileUri.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FileUri.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FileUri.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FilterFormatPermission.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FilterFormatPermission.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/FilterFormatPermission.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/FilterFormatPermission.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/NodeUpdate7008.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/NodeUpdate7008.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/NodeUpdate7008.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/NodeUpdate7008.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/SearchConfigurationRankings.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/SearchConfigurationRankings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/SystemUpdate7000.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/SystemUpdate7000.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/SystemUpdate7000.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/SystemUpdate7000.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserPicture.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserPicture.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserPicture.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserPicture.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserUpdate7002.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserUpdate7002.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserUpdate7002.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserUpdate7002.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserUpdate8002.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserUpdate8002.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/process/d6/UserUpdate8002.php rename to core/modules/migrate_drupal/src/Plugin/migrate/process/d6/UserUpdate8002.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/DrupalSqlBase.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/DrupalSqlBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/DrupalSqlBase.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/DrupalSqlBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/Variable.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/Variable.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/Variable.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/VariableMultiRow.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/VariableMultiRow.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/VariableMultiRow.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Action.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Action.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Action.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Action.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/AggregatorFeed.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/AggregatorFeed.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/AggregatorFeed.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/AggregatorFeed.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/AggregatorItem.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/AggregatorItem.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/AggregatorItem.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/AggregatorItem.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Block.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Block.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Block.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Block.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Book.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Book.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Book.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Book.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Box.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Box.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Box.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Box.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CckFieldRevision.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CckFieldRevision.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CckFieldRevision.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CckFieldRevision.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CckFieldValues.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CckFieldValues.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CckFieldValues.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CckFieldValues.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Comment.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Comment.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Comment.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Comment.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CommentVariable.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CommentVariable.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/CommentVariable.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/CommentVariable.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ContactCategory.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ContactCategory.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ContactCategory.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ContactCategory.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ContactSettings.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ContactSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ContactSettings.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ContactSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Field.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Field.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Field.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Field.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstance.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstance.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstancePerFormDisplay.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstancePerViewMode.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstancePerViewMode.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FieldInstancePerViewMode.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FieldInstancePerViewMode.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/File.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/File.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/File.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/File.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FilterFormat.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FilterFormat.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/FilterFormat.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/FilterFormat.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Menu.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Menu.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Menu.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Menu.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Node.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Node.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Node.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Node.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/NodeRevision.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/NodeRevision.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/NodeRevision.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/NodeRevision.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/NodeType.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/NodeType.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/NodeType.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/NodeType.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ProfileField.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ProfileField.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ProfileField.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ProfileField.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ProfileFieldValues.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ProfileFieldValues.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ProfileFieldValues.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ProfileFieldValues.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Role.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Role.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Role.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Role.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Term.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Term.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Term.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Term.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/TermNode.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/TermNode.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/TermNode.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/TermNode.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/TermNodeRevision.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/TermNodeRevision.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/TermNodeRevision.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/TermNodeRevision.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Upload.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Upload.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Upload.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Upload.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UploadInstance.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UploadInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UploadInstance.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UploadInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UrlAlias.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UrlAlias.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UrlAlias.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UrlAlias.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/User.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/User.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/User.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/User.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPicture.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPicture.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPicture.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPicture.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPictureFile.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPictureFile.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPictureFile.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPictureFile.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPictureInstance.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPictureInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/UserPictureInstance.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/UserPictureInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ViewMode.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ViewMode.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ViewMode.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ViewMode.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ViewModeBase.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ViewModeBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/ViewModeBase.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/ViewModeBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Vocabulary.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Vocabulary.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/Vocabulary.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/Vocabulary.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/VocabularyBase.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/VocabularyBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/VocabularyBase.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/VocabularyBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/VocabularyPerType.php b/core/modules/migrate_drupal/src/Plugin/migrate/source/d6/VocabularyPerType.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Plugin/migrate/source/d6/VocabularyPerType.php rename to core/modules/migrate_drupal/src/Plugin/migrate/source/d6/VocabularyPerType.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ActionSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6ActionSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ActionSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6ActionSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorFeed.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorFeed.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorFeed.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorFeed.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorItem.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorItem.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorItem.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorItem.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6AggregatorSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6AggregatorSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Block.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Block.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Block.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Block.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Book.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Book.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Book.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Book.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6BookSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6BookSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6BookSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6BookSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Box.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Box.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Box.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Box.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Comment.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Comment.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Comment.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Comment.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6CommentVariable.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6CommentVariable.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6CommentVariable.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6CommentVariable.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ContactCategory.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6ContactCategory.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ContactCategory.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6ContactCategory.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ContactSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6ContactSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ContactSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6ContactSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DateFormat.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6DateFormat.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DateFormat.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6DateFormat.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DblogSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6DblogSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DblogSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6DblogSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DumpBase.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6DumpBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6DumpBase.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6DumpBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FieldInstance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FieldInstance.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FieldSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FieldSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6FieldSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6File.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6File.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6File.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6File.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FileSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FileSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FileSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6FileSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FilterFormat.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6FilterFormat.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6FilterFormat.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6FilterFormat.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ForumSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6ForumSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6ForumSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6ForumSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6LocaleSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6LocaleSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6LocaleSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6LocaleSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Menu.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Menu.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Menu.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Menu.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6MenuSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6MenuSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6MenuSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6MenuSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Node.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Node.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Node.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Node.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeBodyInstance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeBodyInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeBodyInstance.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeBodyInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeRevision.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeRevision.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeRevision.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeRevision.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeType.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeType.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6NodeType.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6NodeType.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SearchPage.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SearchPage.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SearchPage.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SearchPage.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SearchSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SearchSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SearchSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SearchSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SimpletestSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SimpletestSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SimpletestSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SimpletestSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6StatisticsSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6StatisticsSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6StatisticsSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6StatisticsSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SyslogSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SyslogSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SyslogSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SyslogSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemCron.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemCron.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemCron.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemCron.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemFile.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemFile.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemFile.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemFile.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemFilter.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemFilter.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemFilter.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemFilter.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemImage.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemImage.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemImage.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemImage.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemImageGd.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemImageGd.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemImageGd.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemImageGd.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemMaintenance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemMaintenance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemMaintenance.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemMaintenance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemPerformance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemPerformance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemPerformance.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemPerformance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemRss.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemRss.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemRss.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemSite.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemSite.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemSite.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemSite.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemTheme.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemTheme.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6SystemTheme.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6SystemTheme.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomySettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomySettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomySettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomySettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomyTerm.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomyTerm.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomyTerm.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomyTerm.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomyVocabulary.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomyVocabulary.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TaxonomyVocabulary.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6TaxonomyVocabulary.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TermNode.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6TermNode.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TermNode.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6TermNode.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TextSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6TextSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6TextSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6TextSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UpdateSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UpdateSettings.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Upload.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6Upload.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6Upload.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6Upload.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UploadField.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UploadField.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UploadField.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UploadField.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UploadInstance.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UploadInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UploadInstance.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UploadInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UrlAlias.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UrlAlias.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UrlAlias.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UrlAlias.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6User.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6User.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6User.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6User.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserMail.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserMail.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserMail.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserMail.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserProfileFields.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserProfileFields.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserProfileFields.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserProfileFields.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserRole.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserRole.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6UserRole.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6UserRole.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6VocabularyField.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6VocabularyField.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/Dump/Drupal6VocabularyField.php rename to core/modules/migrate_drupal/src/Tests/Dump/Drupal6VocabularyField.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/MigrateDrupalTestBase.php b/core/modules/migrate_drupal/src/Tests/MigrateDrupalTestBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/MigrateDrupalTestBase.php rename to core/modules/migrate_drupal/src/Tests/MigrateDrupalTestBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/MigrateFullDrupalTestBase.php b/core/modules/migrate_drupal/src/Tests/MigrateFullDrupalTestBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/MigrateFullDrupalTestBase.php rename to core/modules/migrate_drupal/src/Tests/MigrateFullDrupalTestBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateActionConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateActionConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateActionConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateActionConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorFeedTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorFeedTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorFeedTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorFeedTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorItemTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorItemTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateAggregatorItemTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateAggregatorItemTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBlockTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateBlockTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBlockTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateBlockTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBookConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateBookConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBookConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateBookConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBookTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateBookTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateBookTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateBookTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCckFieldRevisionTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldRevisionTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCckFieldRevisionTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldRevisionTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCckFieldValuesTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCckFieldValuesTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCckFieldValuesTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableDisplayBase.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableDisplayBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableDisplayBase.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableDisplayBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableEntityDisplay.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableEntityDisplay.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableEntityDisplay.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableEntityDisplay.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableEntityFormDisplay.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableEntityFormDisplay.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableEntityFormDisplay.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableEntityFormDisplay.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableField.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableField.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableField.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableField.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableInstance.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableInstance.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCommentVariableInstance.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCommentVariableInstance.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateContactCategoryTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateContactCategoryTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateContactCategoryTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateContactCategoryTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateContactConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateContactConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateContactConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateContactConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCustomBlockTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateCustomBlockTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateCustomBlockTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateCustomBlockTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDateFormatTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateDateFormatTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDateFormatTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateDateFormatTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDblogConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateDblogConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDblogConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateDblogConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDrupal6Test.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6Test.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateDrupal6Test.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateDrupal6Test.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFieldConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFieldConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldFormatterSettingsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFieldFormatterSettingsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldFormatterSettingsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFieldFormatterSettingsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldInstanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFieldInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldInstanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFieldInstanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFieldTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldWidgetSettingsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFieldWidgetSettingsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFieldWidgetSettingsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFieldWidgetSettingsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFileConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFileConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFileConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFileConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFileTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFileTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFileTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFilterFormatTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateFilterFormatTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateFilterFormatTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateFilterFormatTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateForumConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateForumConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateForumConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateForumConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateLocaleConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateLocaleConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateLocaleConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateLocaleConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateMenuConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateMenuConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateMenuConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateMenuConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateMenuTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateMenuTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateMenuTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateMenuTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateNodeConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateNodeConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeRevisionTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateNodeRevisionTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeRevisionTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateNodeRevisionTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTestBase.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTestBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTestBase.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTestBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTypeTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTypeTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateNodeTypeTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateNodeTypeTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateProfileValuesTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateProfileValuesTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateProfileValuesTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateProfileValuesTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSearchConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSearchConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSearchConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSearchConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSearchPageTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSearchPageTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSearchPageTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSearchPageTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSimpletestConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSimpletestConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSimpletestConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSimpletestConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateStatisticsConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateStatisticsConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateStatisticsConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateStatisticsConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSyslogConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSyslogConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSyslogConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSyslogConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemCronTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemCronTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemCronTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemCronTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemFileTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemFileTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemFileTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemFileTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemFilterTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemFilterTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemFilterTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemFilterTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemImageGdTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemImageGdTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemImageGdTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemImageGdTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemImageTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemImageTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemImageTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemImageTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemMaintenanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemMaintenanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemMaintenanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemMaintenanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemPerformanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemPerformanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemPerformanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemPerformanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemRssTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemRssTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemRssTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemSiteTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemSiteTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemSiteTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemSiteTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemThemeTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateSystemThemeTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateSystemThemeTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateSystemThemeTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyTermTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyTermTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyTermTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyTermTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyVocabularyTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyVocabularyTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTaxonomyVocabularyTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTaxonomyVocabularyTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeRevisionTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeRevisionTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeRevisionTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeRevisionTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeTestBase.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeTestBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTermNodeTestBase.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTermNodeTestBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTextConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateTextConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateTextConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateTextConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUpdateConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUpdateConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadBase.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadBase.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadBase.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadBase.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadEntityDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadEntityDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadEntityDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadEntityDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadEntityFormDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadEntityFormDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadEntityFormDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadEntityFormDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadFieldTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadFieldTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadFieldTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadInstanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadInstanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadInstanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUploadTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUploadTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUploadTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUrlAliasTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUrlAliasTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUrlAliasTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUrlAliasTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserConfigsTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserConfigsTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserConfigsTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureEntityDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureEntityDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureEntityDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureEntityDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureEntityFormDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureEntityFormDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureEntityFormDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureEntityFormDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureFieldTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureFieldTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureFieldTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureFileTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureFileTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureFileTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureFileTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureInstanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserPictureInstanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserPictureInstanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileEntityDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileEntityDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileEntityDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileEntityDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileEntityFormDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileEntityFormDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileEntityFormDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileEntityFormDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileFieldInstanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileFieldInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileFieldInstanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileFieldInstanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileFieldTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserProfileFieldTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserProfileFieldTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserRoleTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserRoleTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserRoleTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserRoleTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUserTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateUserTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateUserTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateViewModesTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateViewModesTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateViewModesTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateViewModesTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyEntityDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyEntityDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyEntityDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyEntityDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyEntityFormDisplayTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyEntityFormDisplayTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyEntityFormDisplayTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyEntityFormDisplayTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyFieldInstanceTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyFieldInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyFieldInstanceTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyFieldInstanceTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyFieldTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/d6/MigrateVocabularyFieldTest.php rename to core/modules/migrate_drupal/src/Tests/d6/MigrateVocabularyFieldTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/dependencies/MigrateDependenciesTest.php b/core/modules/migrate_drupal/src/Tests/dependencies/MigrateDependenciesTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/dependencies/MigrateDependenciesTest.php rename to core/modules/migrate_drupal/src/Tests/dependencies/MigrateDependenciesTest.php diff --git a/core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/destination/ConfigDestinationTest.php b/core/modules/migrate_drupal/src/Tests/destination/ConfigDestinationTest.php similarity index 100% rename from core/modules/migrate_drupal/lib/Drupal/migrate_drupal/Tests/destination/ConfigDestinationTest.php rename to core/modules/migrate_drupal/src/Tests/destination/ConfigDestinationTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowSourceWithHighwaterTest.php b/core/modules/migrate_drupal/tests/src/source/VariableMultiRowSourceWithHighwaterTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowSourceWithHighwaterTest.php rename to core/modules/migrate_drupal/tests/src/source/VariableMultiRowSourceWithHighwaterTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowTest.php b/core/modules/migrate_drupal/tests/src/source/VariableMultiRowTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowTest.php rename to core/modules/migrate_drupal/tests/src/source/VariableMultiRowTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowTestBase.php b/core/modules/migrate_drupal/tests/src/source/VariableMultiRowTestBase.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableMultiRowTestBase.php rename to core/modules/migrate_drupal/tests/src/source/VariableMultiRowTestBase.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableTest.php b/core/modules/migrate_drupal/tests/src/source/VariableTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/VariableTest.php rename to core/modules/migrate_drupal/tests/src/source/VariableTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ActionTest.php b/core/modules/migrate_drupal/tests/src/source/d6/ActionTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ActionTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/ActionTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/AggregatorFeedTest.php b/core/modules/migrate_drupal/tests/src/source/d6/AggregatorFeedTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/AggregatorFeedTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/AggregatorFeedTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/AggregatorItemTest.php b/core/modules/migrate_drupal/tests/src/source/d6/AggregatorItemTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/AggregatorItemTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/AggregatorItemTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/BlockTest.php b/core/modules/migrate_drupal/tests/src/source/d6/BlockTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/BlockTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/BlockTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/BoxTest.php b/core/modules/migrate_drupal/tests/src/source/d6/BoxTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/BoxTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/BoxTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentSourceWithHighwaterTest.php b/core/modules/migrate_drupal/tests/src/source/d6/CommentSourceWithHighwaterTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentSourceWithHighwaterTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/CommentSourceWithHighwaterTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentTest.php b/core/modules/migrate_drupal/tests/src/source/d6/CommentTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/CommentTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentTestBase.php b/core/modules/migrate_drupal/tests/src/source/d6/CommentTestBase.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/CommentTestBase.php rename to core/modules/migrate_drupal/tests/src/source/d6/CommentTestBase.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php b/core/modules/migrate_drupal/tests/src/source/d6/ContactCategoryTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ContactCategoryTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/ContactCategoryTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/Drupal6SqlBaseTest.php b/core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/Drupal6SqlBaseTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/Drupal6SqlBaseTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldInstancePerViewModeTest.php b/core/modules/migrate_drupal/tests/src/source/d6/FieldInstancePerViewModeTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldInstancePerViewModeTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/FieldInstancePerViewModeTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldInstanceTest.php b/core/modules/migrate_drupal/tests/src/source/d6/FieldInstanceTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldInstanceTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/FieldInstanceTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldTest.php b/core/modules/migrate_drupal/tests/src/source/d6/FieldTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FieldTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/FieldTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FileTest.php b/core/modules/migrate_drupal/tests/src/source/d6/FileTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FileTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/FileTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FilterFormatTest.php b/core/modules/migrate_drupal/tests/src/source/d6/FilterFormatTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/FilterFormatTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/FilterFormatTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/MenuTest.php b/core/modules/migrate_drupal/tests/src/source/d6/MenuTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/MenuTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/MenuTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeRevisionTest.php b/core/modules/migrate_drupal/tests/src/source/d6/NodeRevisionTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeRevisionTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/NodeRevisionTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeTest.php b/core/modules/migrate_drupal/tests/src/source/d6/NodeTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/NodeTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeTypeTest.php b/core/modules/migrate_drupal/tests/src/source/d6/NodeTypeTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/NodeTypeTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/NodeTypeTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ProfileFieldTest.php b/core/modules/migrate_drupal/tests/src/source/d6/ProfileFieldTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ProfileFieldTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/ProfileFieldTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/RoleTest.php b/core/modules/migrate_drupal/tests/src/source/d6/RoleTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/RoleTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/RoleTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermSourceWithVocabularyFilterTest.php b/core/modules/migrate_drupal/tests/src/source/d6/TermSourceWithVocabularyFilterTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermSourceWithVocabularyFilterTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/TermSourceWithVocabularyFilterTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermTest.php b/core/modules/migrate_drupal/tests/src/source/d6/TermTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/TermTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermTestBase.php b/core/modules/migrate_drupal/tests/src/source/d6/TermTestBase.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TermTestBase.php rename to core/modules/migrate_drupal/tests/src/source/d6/TermTestBase.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TestComment.php b/core/modules/migrate_drupal/tests/src/source/d6/TestComment.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TestComment.php rename to core/modules/migrate_drupal/tests/src/source/d6/TestComment.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TestTerm.php b/core/modules/migrate_drupal/tests/src/source/d6/TestTerm.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/TestTerm.php rename to core/modules/migrate_drupal/tests/src/source/d6/TestTerm.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UrlAliasTest.php b/core/modules/migrate_drupal/tests/src/source/d6/UrlAliasTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UrlAliasTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/UrlAliasTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UserPictureTest.php b/core/modules/migrate_drupal/tests/src/source/d6/UserPictureTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UserPictureTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/UserPictureTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UserTest.php b/core/modules/migrate_drupal/tests/src/source/d6/UserTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/UserTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/UserTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ViewModeTest.php b/core/modules/migrate_drupal/tests/src/source/d6/ViewModeTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/ViewModeTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/ViewModeTest.php diff --git a/core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/VocabularyTest.php b/core/modules/migrate_drupal/tests/src/source/d6/VocabularyTest.php similarity index 100% rename from core/modules/migrate_drupal/tests/Drupal/migrate_drupal/Tests/source/d6/VocabularyTest.php rename to core/modules/migrate_drupal/tests/src/source/d6/VocabularyTest.php diff --git a/core/modules/node/lib/Drupal/node/Access/NodeAddAccessCheck.php b/core/modules/node/src/Access/NodeAddAccessCheck.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Access/NodeAddAccessCheck.php rename to core/modules/node/src/Access/NodeAddAccessCheck.php diff --git a/core/modules/node/lib/Drupal/node/Access/NodeRevisionAccessCheck.php b/core/modules/node/src/Access/NodeRevisionAccessCheck.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Access/NodeRevisionAccessCheck.php rename to core/modules/node/src/Access/NodeRevisionAccessCheck.php diff --git a/core/modules/node/lib/Drupal/node/Controller/NodeController.php b/core/modules/node/src/Controller/NodeController.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Controller/NodeController.php rename to core/modules/node/src/Controller/NodeController.php diff --git a/core/modules/node/lib/Drupal/node/Controller/NodeViewController.php b/core/modules/node/src/Controller/NodeViewController.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Controller/NodeViewController.php rename to core/modules/node/src/Controller/NodeViewController.php diff --git a/core/modules/node/lib/Drupal/node/Entity/Node.php b/core/modules/node/src/Entity/Node.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Entity/Node.php rename to core/modules/node/src/Entity/Node.php diff --git a/core/modules/node/lib/Drupal/node/Entity/NodeType.php b/core/modules/node/src/Entity/NodeType.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Entity/NodeType.php rename to core/modules/node/src/Entity/NodeType.php diff --git a/core/modules/node/lib/Drupal/node/EventSubscriber/NodeAdminRouteSubscriber.php b/core/modules/node/src/EventSubscriber/NodeAdminRouteSubscriber.php similarity index 100% rename from core/modules/node/lib/Drupal/node/EventSubscriber/NodeAdminRouteSubscriber.php rename to core/modules/node/src/EventSubscriber/NodeAdminRouteSubscriber.php diff --git a/core/modules/node/lib/Drupal/node/Form/DeleteMultiple.php b/core/modules/node/src/Form/DeleteMultiple.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/DeleteMultiple.php rename to core/modules/node/src/Form/DeleteMultiple.php diff --git a/core/modules/node/lib/Drupal/node/Form/NodeDeleteForm.php b/core/modules/node/src/Form/NodeDeleteForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/NodeDeleteForm.php rename to core/modules/node/src/Form/NodeDeleteForm.php diff --git a/core/modules/node/lib/Drupal/node/Form/NodeRevisionDeleteForm.php b/core/modules/node/src/Form/NodeRevisionDeleteForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/NodeRevisionDeleteForm.php rename to core/modules/node/src/Form/NodeRevisionDeleteForm.php diff --git a/core/modules/node/lib/Drupal/node/Form/NodeRevisionRevertForm.php b/core/modules/node/src/Form/NodeRevisionRevertForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/NodeRevisionRevertForm.php rename to core/modules/node/src/Form/NodeRevisionRevertForm.php diff --git a/core/modules/node/lib/Drupal/node/Form/NodeTypeDeleteConfirm.php b/core/modules/node/src/Form/NodeTypeDeleteConfirm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/NodeTypeDeleteConfirm.php rename to core/modules/node/src/Form/NodeTypeDeleteConfirm.php diff --git a/core/modules/node/lib/Drupal/node/Form/RebuildPermissionsForm.php b/core/modules/node/src/Form/RebuildPermissionsForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Form/RebuildPermissionsForm.php rename to core/modules/node/src/Form/RebuildPermissionsForm.php diff --git a/core/modules/node/lib/Drupal/node/NodeAccessController.php b/core/modules/node/src/NodeAccessController.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeAccessController.php rename to core/modules/node/src/NodeAccessController.php diff --git a/core/modules/node/lib/Drupal/node/NodeAccessControllerInterface.php b/core/modules/node/src/NodeAccessControllerInterface.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeAccessControllerInterface.php rename to core/modules/node/src/NodeAccessControllerInterface.php diff --git a/core/modules/node/lib/Drupal/node/NodeForm.php b/core/modules/node/src/NodeForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeForm.php rename to core/modules/node/src/NodeForm.php diff --git a/core/modules/node/lib/Drupal/node/NodeGrantDatabaseStorage.php b/core/modules/node/src/NodeGrantDatabaseStorage.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeGrantDatabaseStorage.php rename to core/modules/node/src/NodeGrantDatabaseStorage.php diff --git a/core/modules/node/lib/Drupal/node/NodeGrantDatabaseStorageInterface.php b/core/modules/node/src/NodeGrantDatabaseStorageInterface.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeGrantDatabaseStorageInterface.php rename to core/modules/node/src/NodeGrantDatabaseStorageInterface.php diff --git a/core/modules/node/lib/Drupal/node/NodeInterface.php b/core/modules/node/src/NodeInterface.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeInterface.php rename to core/modules/node/src/NodeInterface.php diff --git a/core/modules/node/lib/Drupal/node/NodeListBuilder.php b/core/modules/node/src/NodeListBuilder.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeListBuilder.php rename to core/modules/node/src/NodeListBuilder.php diff --git a/core/modules/node/lib/Drupal/node/NodeStorage.php b/core/modules/node/src/NodeStorage.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeStorage.php rename to core/modules/node/src/NodeStorage.php diff --git a/core/modules/node/lib/Drupal/node/NodeStorageInterface.php b/core/modules/node/src/NodeStorageInterface.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeStorageInterface.php rename to core/modules/node/src/NodeStorageInterface.php diff --git a/core/modules/node/lib/Drupal/node/NodeTranslationHandler.php b/core/modules/node/src/NodeTranslationHandler.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeTranslationHandler.php rename to core/modules/node/src/NodeTranslationHandler.php diff --git a/core/modules/node/lib/Drupal/node/NodeTypeAccessController.php b/core/modules/node/src/NodeTypeAccessController.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeTypeAccessController.php rename to core/modules/node/src/NodeTypeAccessController.php diff --git a/core/modules/node/lib/Drupal/node/NodeTypeForm.php b/core/modules/node/src/NodeTypeForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeTypeForm.php rename to core/modules/node/src/NodeTypeForm.php diff --git a/core/modules/node/lib/Drupal/node/NodeTypeInterface.php b/core/modules/node/src/NodeTypeInterface.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeTypeInterface.php rename to core/modules/node/src/NodeTypeInterface.php diff --git a/core/modules/node/lib/Drupal/node/NodeTypeListBuilder.php b/core/modules/node/src/NodeTypeListBuilder.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeTypeListBuilder.php rename to core/modules/node/src/NodeTypeListBuilder.php diff --git a/core/modules/node/lib/Drupal/node/NodeViewBuilder.php b/core/modules/node/src/NodeViewBuilder.php similarity index 100% rename from core/modules/node/lib/Drupal/node/NodeViewBuilder.php rename to core/modules/node/src/NodeViewBuilder.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/AssignOwnerNode.php b/core/modules/node/src/Plugin/Action/AssignOwnerNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/AssignOwnerNode.php rename to core/modules/node/src/Plugin/Action/AssignOwnerNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/DeleteNode.php b/core/modules/node/src/Plugin/Action/DeleteNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/DeleteNode.php rename to core/modules/node/src/Plugin/Action/DeleteNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/DemoteNode.php b/core/modules/node/src/Plugin/Action/DemoteNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/DemoteNode.php rename to core/modules/node/src/Plugin/Action/DemoteNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/PromoteNode.php b/core/modules/node/src/Plugin/Action/PromoteNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/PromoteNode.php rename to core/modules/node/src/Plugin/Action/PromoteNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/PublishNode.php b/core/modules/node/src/Plugin/Action/PublishNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/PublishNode.php rename to core/modules/node/src/Plugin/Action/PublishNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/SaveNode.php b/core/modules/node/src/Plugin/Action/SaveNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/SaveNode.php rename to core/modules/node/src/Plugin/Action/SaveNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/StickyNode.php b/core/modules/node/src/Plugin/Action/StickyNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/StickyNode.php rename to core/modules/node/src/Plugin/Action/StickyNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/UnpublishByKeywordNode.php b/core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/UnpublishByKeywordNode.php rename to core/modules/node/src/Plugin/Action/UnpublishByKeywordNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/UnpublishNode.php b/core/modules/node/src/Plugin/Action/UnpublishNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/UnpublishNode.php rename to core/modules/node/src/Plugin/Action/UnpublishNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Action/UnstickyNode.php b/core/modules/node/src/Plugin/Action/UnstickyNode.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Action/UnstickyNode.php rename to core/modules/node/src/Plugin/Action/UnstickyNode.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php b/core/modules/node/src/Plugin/Block/SyndicateBlock.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php rename to core/modules/node/src/Plugin/Block/SyndicateBlock.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Condition/NodeType.php b/core/modules/node/src/Plugin/Condition/NodeType.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Condition/NodeType.php rename to core/modules/node/src/Plugin/Condition/NodeType.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/Search/NodeSearch.php b/core/modules/node/src/Plugin/Search/NodeSearch.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/Search/NodeSearch.php rename to core/modules/node/src/Plugin/Search/NodeSearch.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/entity_reference/selection/NodeSelection.php b/core/modules/node/src/Plugin/entity_reference/selection/NodeSelection.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/entity_reference/selection/NodeSelection.php rename to core/modules/node/src/Plugin/entity_reference/selection/NodeSelection.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/area/ListingEmpty.php b/core/modules/node/src/Plugin/views/area/ListingEmpty.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/area/ListingEmpty.php rename to core/modules/node/src/Plugin/views/area/ListingEmpty.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php b/core/modules/node/src/Plugin/views/argument/Nid.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/argument/Nid.php rename to core/modules/node/src/Plugin/views/argument/Nid.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Type.php b/core/modules/node/src/Plugin/views/argument/Type.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/argument/Type.php rename to core/modules/node/src/Plugin/views/argument/Type.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/UidRevision.php b/core/modules/node/src/Plugin/views/argument/UidRevision.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/argument/UidRevision.php rename to core/modules/node/src/Plugin/views/argument/UidRevision.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php b/core/modules/node/src/Plugin/views/argument/Vid.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/argument/Vid.php rename to core/modules/node/src/Plugin/views/argument/Vid.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/argument_default/Node.php b/core/modules/node/src/Plugin/views/argument_default/Node.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/argument_default/Node.php rename to core/modules/node/src/Plugin/views/argument_default/Node.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Language.php b/core/modules/node/src/Plugin/views/field/Language.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Language.php rename to core/modules/node/src/Plugin/views/field/Language.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php b/core/modules/node/src/Plugin/views/field/Link.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php rename to core/modules/node/src/Plugin/views/field/Link.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php b/core/modules/node/src/Plugin/views/field/LinkDelete.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php rename to core/modules/node/src/Plugin/views/field/LinkDelete.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php b/core/modules/node/src/Plugin/views/field/LinkEdit.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php rename to core/modules/node/src/Plugin/views/field/LinkEdit.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php b/core/modules/node/src/Plugin/views/field/Node.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Node.php rename to core/modules/node/src/Plugin/views/field/Node.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/NodeBulkForm.php b/core/modules/node/src/Plugin/views/field/NodeBulkForm.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/NodeBulkForm.php rename to core/modules/node/src/Plugin/views/field/NodeBulkForm.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Path.php b/core/modules/node/src/Plugin/views/field/Path.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Path.php rename to core/modules/node/src/Plugin/views/field/Path.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php b/core/modules/node/src/Plugin/views/field/Revision.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Revision.php rename to core/modules/node/src/Plugin/views/field/Revision.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php b/core/modules/node/src/Plugin/views/field/RevisionLink.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLink.php rename to core/modules/node/src/Plugin/views/field/RevisionLink.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php b/core/modules/node/src/Plugin/views/field/RevisionLinkDelete.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkDelete.php rename to core/modules/node/src/Plugin/views/field/RevisionLinkDelete.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php b/core/modules/node/src/Plugin/views/field/RevisionLinkRevert.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php rename to core/modules/node/src/Plugin/views/field/RevisionLinkRevert.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Type.php b/core/modules/node/src/Plugin/views/field/Type.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/field/Type.php rename to core/modules/node/src/Plugin/views/field/Type.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/filter/Access.php b/core/modules/node/src/Plugin/views/filter/Access.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/filter/Access.php rename to core/modules/node/src/Plugin/views/filter/Access.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/filter/Status.php b/core/modules/node/src/Plugin/views/filter/Status.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/filter/Status.php rename to core/modules/node/src/Plugin/views/filter/Status.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/filter/UidRevision.php b/core/modules/node/src/Plugin/views/filter/UidRevision.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/filter/UidRevision.php rename to core/modules/node/src/Plugin/views/filter/UidRevision.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/row/NodeRow.php b/core/modules/node/src/Plugin/views/row/NodeRow.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/row/NodeRow.php rename to core/modules/node/src/Plugin/views/row/NodeRow.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/row/Rss.php b/core/modules/node/src/Plugin/views/row/Rss.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/row/Rss.php rename to core/modules/node/src/Plugin/views/row/Rss.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php b/core/modules/node/src/Plugin/views/wizard/Node.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/wizard/Node.php rename to core/modules/node/src/Plugin/views/wizard/Node.php diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/wizard/NodeRevision.php b/core/modules/node/src/Plugin/views/wizard/NodeRevision.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Plugin/views/wizard/NodeRevision.php rename to core/modules/node/src/Plugin/views/wizard/NodeRevision.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Condition/NodeConditionTest.php b/core/modules/node/src/Tests/Condition/NodeConditionTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Condition/NodeConditionTest.php rename to core/modules/node/src/Tests/Condition/NodeConditionTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Config/NodeImportChangeTest.php b/core/modules/node/src/Tests/Config/NodeImportChangeTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Config/NodeImportChangeTest.php rename to core/modules/node/src/Tests/Config/NodeImportChangeTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Config/NodeImportCreateTest.php b/core/modules/node/src/Tests/Config/NodeImportCreateTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Config/NodeImportCreateTest.php rename to core/modules/node/src/Tests/Config/NodeImportCreateTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/MultiStepNodeFormBasicOptionsTest.php b/core/modules/node/src/Tests/MultiStepNodeFormBasicOptionsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/MultiStepNodeFormBasicOptionsTest.php rename to core/modules/node/src/Tests/MultiStepNodeFormBasicOptionsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessBaseTableTest.php b/core/modules/node/src/Tests/NodeAccessBaseTableTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessBaseTableTest.php rename to core/modules/node/src/Tests/NodeAccessBaseTableTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessFieldTest.php b/core/modules/node/src/Tests/NodeAccessFieldTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessFieldTest.php rename to core/modules/node/src/Tests/NodeAccessFieldTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareCombinationTest.php b/core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareCombinationTest.php rename to core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php b/core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageAwareTest.php rename to core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageTest.php b/core/modules/node/src/Tests/NodeAccessLanguageTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessLanguageTest.php rename to core/modules/node/src/Tests/NodeAccessLanguageTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessPagerTest.php b/core/modules/node/src/Tests/NodeAccessPagerTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessPagerTest.php rename to core/modules/node/src/Tests/NodeAccessPagerTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessRebuildTest.php b/core/modules/node/src/Tests/NodeAccessRebuildTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessRebuildTest.php rename to core/modules/node/src/Tests/NodeAccessRebuildTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessRecordsTest.php b/core/modules/node/src/Tests/NodeAccessRecordsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessRecordsTest.php rename to core/modules/node/src/Tests/NodeAccessRecordsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAccessTest.php b/core/modules/node/src/Tests/NodeAccessTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAccessTest.php rename to core/modules/node/src/Tests/NodeAccessTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeAdminTest.php b/core/modules/node/src/Tests/NodeAdminTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeAdminTest.php rename to core/modules/node/src/Tests/NodeAdminTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php b/core/modules/node/src/Tests/NodeBlockFunctionalTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeBlockFunctionalTest.php rename to core/modules/node/src/Tests/NodeBlockFunctionalTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeCacheTagsTest.php b/core/modules/node/src/Tests/NodeCacheTagsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeCacheTagsTest.php rename to core/modules/node/src/Tests/NodeCacheTagsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeCreationTest.php b/core/modules/node/src/Tests/NodeCreationTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeCreationTest.php rename to core/modules/node/src/Tests/NodeCreationTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeEntityViewModeAlterTest.php b/core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeEntityViewModeAlterTest.php rename to core/modules/node/src/Tests/NodeEntityViewModeAlterTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeFieldMultilingualTestCase.php b/core/modules/node/src/Tests/NodeFieldMultilingualTestCase.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeFieldMultilingualTestCase.php rename to core/modules/node/src/Tests/NodeFieldMultilingualTestCase.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeFormButtonsTest.php b/core/modules/node/src/Tests/NodeFormButtonsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeFormButtonsTest.php rename to core/modules/node/src/Tests/NodeFormButtonsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeLastChangedTest.php b/core/modules/node/src/Tests/NodeLastChangedTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeLastChangedTest.php rename to core/modules/node/src/Tests/NodeLastChangedTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeLoadMultipleTest.php b/core/modules/node/src/Tests/NodeLoadMultipleTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeLoadMultipleTest.php rename to core/modules/node/src/Tests/NodeLoadMultipleTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodePostSettingsTest.php b/core/modules/node/src/Tests/NodePostSettingsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodePostSettingsTest.php rename to core/modules/node/src/Tests/NodePostSettingsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeQueryAlterTest.php b/core/modules/node/src/Tests/NodeQueryAlterTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeQueryAlterTest.php rename to core/modules/node/src/Tests/NodeQueryAlterTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php b/core/modules/node/src/Tests/NodeRSSContentTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeRSSContentTest.php rename to core/modules/node/src/Tests/NodeRSSContentTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRevisionPermissionsTest.php b/core/modules/node/src/Tests/NodeRevisionPermissionsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeRevisionPermissionsTest.php rename to core/modules/node/src/Tests/NodeRevisionPermissionsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRevisionsAllTestCase.php b/core/modules/node/src/Tests/NodeRevisionsAllTestCase.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeRevisionsAllTestCase.php rename to core/modules/node/src/Tests/NodeRevisionsAllTestCase.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRevisionsTest.php b/core/modules/node/src/Tests/NodeRevisionsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeRevisionsTest.php rename to core/modules/node/src/Tests/NodeRevisionsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeRevisionsUiTest.php b/core/modules/node/src/Tests/NodeRevisionsUiTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeRevisionsUiTest.php rename to core/modules/node/src/Tests/NodeRevisionsUiTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php b/core/modules/node/src/Tests/NodeSaveTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeSaveTest.php rename to core/modules/node/src/Tests/NodeSaveTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeSyndicateBlockTest.php b/core/modules/node/src/Tests/NodeSyndicateBlockTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeSyndicateBlockTest.php rename to core/modules/node/src/Tests/NodeSyndicateBlockTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTemplateSuggestionsTest.php b/core/modules/node/src/Tests/NodeTemplateSuggestionsTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTemplateSuggestionsTest.php rename to core/modules/node/src/Tests/NodeTemplateSuggestionsTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTestBase.php b/core/modules/node/src/Tests/NodeTestBase.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTestBase.php rename to core/modules/node/src/Tests/NodeTestBase.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTitleTest.php b/core/modules/node/src/Tests/NodeTitleTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTitleTest.php rename to core/modules/node/src/Tests/NodeTitleTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php b/core/modules/node/src/Tests/NodeTitleXSSTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTitleXSSTest.php rename to core/modules/node/src/Tests/NodeTitleXSSTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTokenReplaceTest.php b/core/modules/node/src/Tests/NodeTokenReplaceTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTokenReplaceTest.php rename to core/modules/node/src/Tests/NodeTokenReplaceTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php b/core/modules/node/src/Tests/NodeTranslationUITest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTranslationUITest.php rename to core/modules/node/src/Tests/NodeTranslationUITest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTypeInitialLanguageTest.php b/core/modules/node/src/Tests/NodeTypeInitialLanguageTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTypeInitialLanguageTest.php rename to core/modules/node/src/Tests/NodeTypeInitialLanguageTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTypePersistenceTest.php b/core/modules/node/src/Tests/NodeTypePersistenceTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTypePersistenceTest.php rename to core/modules/node/src/Tests/NodeTypePersistenceTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php b/core/modules/node/src/Tests/NodeTypeRenameConfigImportTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTypeRenameConfigImportTest.php rename to core/modules/node/src/Tests/NodeTypeRenameConfigImportTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeTypeTest.php b/core/modules/node/src/Tests/NodeTypeTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeTypeTest.php rename to core/modules/node/src/Tests/NodeTypeTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeValidationTest.php b/core/modules/node/src/Tests/NodeValidationTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeValidationTest.php rename to core/modules/node/src/Tests/NodeValidationTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeViewLanguageTest.php b/core/modules/node/src/Tests/NodeViewLanguageTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeViewLanguageTest.php rename to core/modules/node/src/Tests/NodeViewLanguageTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/NodeViewTest.php b/core/modules/node/src/Tests/NodeViewTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/NodeViewTest.php rename to core/modules/node/src/Tests/NodeViewTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/PageEditTest.php b/core/modules/node/src/Tests/PageEditTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/PageEditTest.php rename to core/modules/node/src/Tests/PageEditTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/PagePreviewTest.php b/core/modules/node/src/Tests/PagePreviewTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/PagePreviewTest.php rename to core/modules/node/src/Tests/PagePreviewTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/PageViewTest.php b/core/modules/node/src/Tests/PageViewTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/PageViewTest.php rename to core/modules/node/src/Tests/PageViewTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/SummaryLengthTest.php b/core/modules/node/src/Tests/SummaryLengthTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/SummaryLengthTest.php rename to core/modules/node/src/Tests/SummaryLengthTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/BulkFormTest.php b/core/modules/node/src/Tests/Views/BulkFormTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/BulkFormTest.php rename to core/modules/node/src/Tests/Views/BulkFormTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/FieldTypeTest.php b/core/modules/node/src/Tests/Views/FieldTypeTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/FieldTypeTest.php rename to core/modules/node/src/Tests/Views/FieldTypeTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/FilterUidRevisionTest.php b/core/modules/node/src/Tests/Views/FilterUidRevisionTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/FilterUidRevisionTest.php rename to core/modules/node/src/Tests/Views/FilterUidRevisionTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/FrontPageTest.php b/core/modules/node/src/Tests/Views/FrontPageTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/FrontPageTest.php rename to core/modules/node/src/Tests/Views/FrontPageTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/NodeContextualLinksTest.php b/core/modules/node/src/Tests/Views/NodeContextualLinksTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/NodeContextualLinksTest.php rename to core/modules/node/src/Tests/Views/NodeContextualLinksTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/NodeIntegrationTest.php b/core/modules/node/src/Tests/Views/NodeIntegrationTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/NodeIntegrationTest.php rename to core/modules/node/src/Tests/Views/NodeIntegrationTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/NodeRevisionWizardTest.php b/core/modules/node/src/Tests/Views/NodeRevisionWizardTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/NodeRevisionWizardTest.php rename to core/modules/node/src/Tests/Views/NodeRevisionWizardTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/NodeTestBase.php b/core/modules/node/src/Tests/Views/NodeTestBase.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/NodeTestBase.php rename to core/modules/node/src/Tests/Views/NodeTestBase.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/RevisionRelationships.php b/core/modules/node/src/Tests/Views/RevisionRelationships.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/RevisionRelationships.php rename to core/modules/node/src/Tests/Views/RevisionRelationships.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/RowPluginTest.php b/core/modules/node/src/Tests/Views/RowPluginTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/RowPluginTest.php rename to core/modules/node/src/Tests/Views/RowPluginTest.php diff --git a/core/modules/node/lib/Drupal/node/Tests/Views/StatusExtraTest.php b/core/modules/node/src/Tests/Views/StatusExtraTest.php similarity index 100% rename from core/modules/node/lib/Drupal/node/Tests/Views/StatusExtraTest.php rename to core/modules/node/src/Tests/Views/StatusExtraTest.php diff --git a/core/modules/node/tests/Drupal/node/Tests/Plugin/views/field/NodeBulkFormTest.php b/core/modules/node/tests/src/Plugin/views/field/NodeBulkFormTest.php similarity index 100% rename from core/modules/node/tests/Drupal/node/Tests/Plugin/views/field/NodeBulkFormTest.php rename to core/modules/node/tests/src/Plugin/views/field/NodeBulkFormTest.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php b/core/modules/options/src/Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php rename to core/modules/options/src/Plugin/Field/FieldFormatter/OptionsDefaultFormatter.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php b/core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php rename to core/modules/options/src/Plugin/Field/FieldFormatter/OptionsKeyFormatter.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListBooleanItem.php b/core/modules/options/src/Plugin/Field/FieldType/ListBooleanItem.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListBooleanItem.php rename to core/modules/options/src/Plugin/Field/FieldType/ListBooleanItem.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListFloatItem.php b/core/modules/options/src/Plugin/Field/FieldType/ListFloatItem.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListFloatItem.php rename to core/modules/options/src/Plugin/Field/FieldType/ListFloatItem.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListIntegerItem.php b/core/modules/options/src/Plugin/Field/FieldType/ListIntegerItem.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListIntegerItem.php rename to core/modules/options/src/Plugin/Field/FieldType/ListIntegerItem.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListItemBase.php b/core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListItemBase.php rename to core/modules/options/src/Plugin/Field/FieldType/ListItemBase.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListTextItem.php b/core/modules/options/src/Plugin/Field/FieldType/ListTextItem.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldType/ListTextItem.php rename to core/modules/options/src/Plugin/Field/FieldType/ListTextItem.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/ButtonsWidget.php b/core/modules/options/src/Plugin/Field/FieldWidget/ButtonsWidget.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/ButtonsWidget.php rename to core/modules/options/src/Plugin/Field/FieldWidget/ButtonsWidget.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/OnOffWidget.php b/core/modules/options/src/Plugin/Field/FieldWidget/OnOffWidget.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/OnOffWidget.php rename to core/modules/options/src/Plugin/Field/FieldWidget/OnOffWidget.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/OptionsWidgetBase.php b/core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/OptionsWidgetBase.php rename to core/modules/options/src/Plugin/Field/FieldWidget/OptionsWidgetBase.php diff --git a/core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/SelectWidget.php b/core/modules/options/src/Plugin/Field/FieldWidget/SelectWidget.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Plugin/Field/FieldWidget/SelectWidget.php rename to core/modules/options/src/Plugin/Field/FieldWidget/SelectWidget.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsDynamicValuesTestBase.php b/core/modules/options/src/Tests/OptionsDynamicValuesTestBase.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsDynamicValuesTestBase.php rename to core/modules/options/src/Tests/OptionsDynamicValuesTestBase.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsDynamicValuesValidationTest.php b/core/modules/options/src/Tests/OptionsDynamicValuesValidationTest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsDynamicValuesValidationTest.php rename to core/modules/options/src/Tests/OptionsDynamicValuesValidationTest.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsFieldTest.php b/core/modules/options/src/Tests/OptionsFieldTest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsFieldTest.php rename to core/modules/options/src/Tests/OptionsFieldTest.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsFieldUITest.php b/core/modules/options/src/Tests/OptionsFieldUITest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsFieldUITest.php rename to core/modules/options/src/Tests/OptionsFieldUITest.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsFieldUnitTestBase.php b/core/modules/options/src/Tests/OptionsFieldUnitTestBase.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsFieldUnitTestBase.php rename to core/modules/options/src/Tests/OptionsFieldUnitTestBase.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsFormattersTest.php b/core/modules/options/src/Tests/OptionsFormattersTest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsFormattersTest.php rename to core/modules/options/src/Tests/OptionsFormattersTest.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsSelectDynamicValuesTest.php b/core/modules/options/src/Tests/OptionsSelectDynamicValuesTest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsSelectDynamicValuesTest.php rename to core/modules/options/src/Tests/OptionsSelectDynamicValuesTest.php diff --git a/core/modules/options/lib/Drupal/options/Tests/OptionsWidgetsTest.php b/core/modules/options/src/Tests/OptionsWidgetsTest.php similarity index 100% rename from core/modules/options/lib/Drupal/options/Tests/OptionsWidgetsTest.php rename to core/modules/options/src/Tests/OptionsWidgetsTest.php diff --git a/core/modules/path/lib/Drupal/path/Controller/PathController.php b/core/modules/path/src/Controller/PathController.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Controller/PathController.php rename to core/modules/path/src/Controller/PathController.php diff --git a/core/modules/path/lib/Drupal/path/Form/AddForm.php b/core/modules/path/src/Form/AddForm.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Form/AddForm.php rename to core/modules/path/src/Form/AddForm.php diff --git a/core/modules/path/lib/Drupal/path/Form/DeleteForm.php b/core/modules/path/src/Form/DeleteForm.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Form/DeleteForm.php rename to core/modules/path/src/Form/DeleteForm.php diff --git a/core/modules/path/lib/Drupal/path/Form/EditForm.php b/core/modules/path/src/Form/EditForm.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Form/EditForm.php rename to core/modules/path/src/Form/EditForm.php diff --git a/core/modules/path/lib/Drupal/path/Form/PathFilterForm.php b/core/modules/path/src/Form/PathFilterForm.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Form/PathFilterForm.php rename to core/modules/path/src/Form/PathFilterForm.php diff --git a/core/modules/path/lib/Drupal/path/Form/PathFormBase.php b/core/modules/path/src/Form/PathFormBase.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Form/PathFormBase.php rename to core/modules/path/src/Form/PathFormBase.php diff --git a/core/modules/path/lib/Drupal/path/Plugin/Field/FieldType/PathFieldItemList.php b/core/modules/path/src/Plugin/Field/FieldType/PathFieldItemList.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Plugin/Field/FieldType/PathFieldItemList.php rename to core/modules/path/src/Plugin/Field/FieldType/PathFieldItemList.php diff --git a/core/modules/path/lib/Drupal/path/Plugin/Field/FieldType/PathItem.php b/core/modules/path/src/Plugin/Field/FieldType/PathItem.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Plugin/Field/FieldType/PathItem.php rename to core/modules/path/src/Plugin/Field/FieldType/PathItem.php diff --git a/core/modules/path/lib/Drupal/path/Plugin/Field/FieldWidget/PathWidget.php b/core/modules/path/src/Plugin/Field/FieldWidget/PathWidget.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Plugin/Field/FieldWidget/PathWidget.php rename to core/modules/path/src/Plugin/Field/FieldWidget/PathWidget.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathAdminTest.php b/core/modules/path/src/Tests/PathAdminTest.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathAdminTest.php rename to core/modules/path/src/Tests/PathAdminTest.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathAliasTest.php b/core/modules/path/src/Tests/PathAliasTest.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathAliasTest.php rename to core/modules/path/src/Tests/PathAliasTest.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathLanguageTest.php b/core/modules/path/src/Tests/PathLanguageTest.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathLanguageTest.php rename to core/modules/path/src/Tests/PathLanguageTest.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathLanguageUiTest.php b/core/modules/path/src/Tests/PathLanguageUiTest.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathLanguageUiTest.php rename to core/modules/path/src/Tests/PathLanguageUiTest.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php b/core/modules/path/src/Tests/PathTaxonomyTermTest.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathTaxonomyTermTest.php rename to core/modules/path/src/Tests/PathTaxonomyTermTest.php diff --git a/core/modules/path/lib/Drupal/path/Tests/PathTestBase.php b/core/modules/path/src/Tests/PathTestBase.php similarity index 100% rename from core/modules/path/lib/Drupal/path/Tests/PathTestBase.php rename to core/modules/path/src/Tests/PathTestBase.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityAccessCheck.php b/core/modules/quickedit/src/Access/EditEntityAccessCheck.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityAccessCheck.php rename to core/modules/quickedit/src/Access/EditEntityAccessCheck.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityFieldAccessCheck.php b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityFieldAccessCheck.php rename to core/modules/quickedit/src/Access/EditEntityFieldAccessCheck.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityFieldAccessCheckInterface.php b/core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Access/EditEntityFieldAccessCheckInterface.php rename to core/modules/quickedit/src/Access/EditEntityFieldAccessCheckInterface.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Ajax/BaseCommand.php b/core/modules/quickedit/src/Ajax/BaseCommand.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Ajax/BaseCommand.php rename to core/modules/quickedit/src/Ajax/BaseCommand.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Ajax/EntitySavedCommand.php b/core/modules/quickedit/src/Ajax/EntitySavedCommand.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Ajax/EntitySavedCommand.php rename to core/modules/quickedit/src/Ajax/EntitySavedCommand.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormCommand.php b/core/modules/quickedit/src/Ajax/FieldFormCommand.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormCommand.php rename to core/modules/quickedit/src/Ajax/FieldFormCommand.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormSavedCommand.php b/core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormSavedCommand.php rename to core/modules/quickedit/src/Ajax/FieldFormSavedCommand.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormValidationErrorsCommand.php b/core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Ajax/FieldFormValidationErrorsCommand.php rename to core/modules/quickedit/src/Ajax/FieldFormValidationErrorsCommand.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Annotation/InPlaceEditor.php b/core/modules/quickedit/src/Annotation/InPlaceEditor.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Annotation/InPlaceEditor.php rename to core/modules/quickedit/src/Annotation/InPlaceEditor.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/EditorSelector.php b/core/modules/quickedit/src/EditorSelector.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/EditorSelector.php rename to core/modules/quickedit/src/EditorSelector.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/EditorSelectorInterface.php b/core/modules/quickedit/src/EditorSelectorInterface.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/EditorSelectorInterface.php rename to core/modules/quickedit/src/EditorSelectorInterface.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Form/QuickEditFieldForm.php b/core/modules/quickedit/src/Form/QuickEditFieldForm.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Form/QuickEditFieldForm.php rename to core/modules/quickedit/src/Form/QuickEditFieldForm.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/MetadataGenerator.php b/core/modules/quickedit/src/MetadataGenerator.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/MetadataGenerator.php rename to core/modules/quickedit/src/MetadataGenerator.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/MetadataGeneratorInterface.php b/core/modules/quickedit/src/MetadataGeneratorInterface.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/MetadataGeneratorInterface.php rename to core/modules/quickedit/src/MetadataGeneratorInterface.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditor/FormEditor.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditor/FormEditor.php rename to core/modules/quickedit/src/Plugin/InPlaceEditor/FormEditor.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditor/PlainTextEditor.php b/core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditor/PlainTextEditor.php rename to core/modules/quickedit/src/Plugin/InPlaceEditor/PlainTextEditor.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorBase.php b/core/modules/quickedit/src/Plugin/InPlaceEditorBase.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorBase.php rename to core/modules/quickedit/src/Plugin/InPlaceEditorBase.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorInterface.php b/core/modules/quickedit/src/Plugin/InPlaceEditorInterface.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorInterface.php rename to core/modules/quickedit/src/Plugin/InPlaceEditorInterface.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorManager.php b/core/modules/quickedit/src/Plugin/InPlaceEditorManager.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Plugin/InPlaceEditorManager.php rename to core/modules/quickedit/src/Plugin/InPlaceEditorManager.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/QuickEditController.php b/core/modules/quickedit/src/QuickEditController.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/QuickEditController.php rename to core/modules/quickedit/src/QuickEditController.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Tests/EditorSelectionTest.php b/core/modules/quickedit/src/Tests/EditorSelectionTest.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Tests/EditorSelectionTest.php rename to core/modules/quickedit/src/Tests/EditorSelectionTest.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Tests/MetadataGeneratorTest.php b/core/modules/quickedit/src/Tests/MetadataGeneratorTest.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Tests/MetadataGeneratorTest.php rename to core/modules/quickedit/src/Tests/MetadataGeneratorTest.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditAutocompleteTermTest.php b/core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditAutocompleteTermTest.php rename to core/modules/quickedit/src/Tests/QuickEditAutocompleteTermTest.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditLoadingTest.php b/core/modules/quickedit/src/Tests/QuickEditLoadingTest.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditLoadingTest.php rename to core/modules/quickedit/src/Tests/QuickEditLoadingTest.php diff --git a/core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditTestBase.php b/core/modules/quickedit/src/Tests/QuickEditTestBase.php similarity index 100% rename from core/modules/quickedit/lib/Drupal/quickedit/Tests/QuickEditTestBase.php rename to core/modules/quickedit/src/Tests/QuickEditTestBase.php diff --git a/core/modules/quickedit/tests/modules/lib/Drupal/quickedit_test/MockEditEntityFieldAccessCheck.php b/core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php similarity index 100% rename from core/modules/quickedit/tests/modules/lib/Drupal/quickedit_test/MockEditEntityFieldAccessCheck.php rename to core/modules/quickedit/tests/modules/src/MockEditEntityFieldAccessCheck.php diff --git a/core/modules/quickedit/tests/modules/lib/Drupal/quickedit_test/Plugin/InPlaceEditor/WysiwygEditor.php b/core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php similarity index 100% rename from core/modules/quickedit/tests/modules/lib/Drupal/quickedit_test/Plugin/InPlaceEditor/WysiwygEditor.php rename to core/modules/quickedit/tests/modules/src/Plugin/InPlaceEditor/WysiwygEditor.php diff --git a/core/modules/quickedit/tests/Drupal/quickedit/Tests/Access/EditEntityAccessCheckTest.php b/core/modules/quickedit/tests/src/Access/EditEntityAccessCheckTest.php similarity index 100% rename from core/modules/quickedit/tests/Drupal/quickedit/Tests/Access/EditEntityAccessCheckTest.php rename to core/modules/quickedit/tests/src/Access/EditEntityAccessCheckTest.php diff --git a/core/modules/quickedit/tests/Drupal/quickedit/Tests/Access/EditEntityFieldAccessCheckTest.php b/core/modules/quickedit/tests/src/Access/EditEntityFieldAccessCheckTest.php similarity index 100% rename from core/modules/quickedit/tests/Drupal/quickedit/Tests/Access/EditEntityFieldAccessCheckTest.php rename to core/modules/quickedit/tests/src/Access/EditEntityFieldAccessCheckTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/CommonDataConverter.php b/core/modules/rdf/src/CommonDataConverter.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/CommonDataConverter.php rename to core/modules/rdf/src/CommonDataConverter.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Entity/RdfMapping.php b/core/modules/rdf/src/Entity/RdfMapping.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Entity/RdfMapping.php rename to core/modules/rdf/src/Entity/RdfMapping.php diff --git a/core/modules/rdf/lib/Drupal/rdf/RdfMappingInterface.php b/core/modules/rdf/src/RdfMappingInterface.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/RdfMappingInterface.php rename to core/modules/rdf/src/RdfMappingInterface.php diff --git a/core/modules/rdf/lib/Drupal/rdf/SchemaOrgDataConverter.php b/core/modules/rdf/src/SchemaOrgDataConverter.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/SchemaOrgDataConverter.php rename to core/modules/rdf/src/SchemaOrgDataConverter.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php b/core/modules/rdf/src/Tests/CommentAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/CommentAttributesTest.php rename to core/modules/rdf/src/Tests/CommentAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/CrudTest.php b/core/modules/rdf/src/Tests/CrudTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/CrudTest.php rename to core/modules/rdf/src/Tests/CrudTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/DateTimeFieldRdfaTest.php b/core/modules/rdf/src/Tests/Field/DateTimeFieldRdfaTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/DateTimeFieldRdfaTest.php rename to core/modules/rdf/src/Tests/Field/DateTimeFieldRdfaTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/EmailFieldRdfaTest.php b/core/modules/rdf/src/Tests/Field/EmailFieldRdfaTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/EmailFieldRdfaTest.php rename to core/modules/rdf/src/Tests/Field/EmailFieldRdfaTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/FieldRdfaDatatypeCallbackTest.php b/core/modules/rdf/src/Tests/Field/FieldRdfaDatatypeCallbackTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/FieldRdfaDatatypeCallbackTest.php rename to core/modules/rdf/src/Tests/Field/FieldRdfaDatatypeCallbackTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/FieldRdfaTestBase.php b/core/modules/rdf/src/Tests/Field/FieldRdfaTestBase.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/FieldRdfaTestBase.php rename to core/modules/rdf/src/Tests/Field/FieldRdfaTestBase.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/TaxonomyTermReferenceRdfaTest.php b/core/modules/rdf/src/Tests/Field/TaxonomyTermReferenceRdfaTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/TaxonomyTermReferenceRdfaTest.php rename to core/modules/rdf/src/Tests/Field/TaxonomyTermReferenceRdfaTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/TelephoneFieldRdfaTest.php b/core/modules/rdf/src/Tests/Field/TelephoneFieldRdfaTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/TelephoneFieldRdfaTest.php rename to core/modules/rdf/src/Tests/Field/TelephoneFieldRdfaTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/TestDataConverter.php b/core/modules/rdf/src/Tests/Field/TestDataConverter.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/TestDataConverter.php rename to core/modules/rdf/src/Tests/Field/TestDataConverter.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/Field/TextFieldRdfaTest.php b/core/modules/rdf/src/Tests/Field/TextFieldRdfaTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/Field/TextFieldRdfaTest.php rename to core/modules/rdf/src/Tests/Field/TextFieldRdfaTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/FileFieldAttributesTest.php b/core/modules/rdf/src/Tests/FileFieldAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/FileFieldAttributesTest.php rename to core/modules/rdf/src/Tests/FileFieldAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/GetNamespacesTest.php b/core/modules/rdf/src/Tests/GetNamespacesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/GetNamespacesTest.php rename to core/modules/rdf/src/Tests/GetNamespacesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/GetRdfNamespacesTest.php b/core/modules/rdf/src/Tests/GetRdfNamespacesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/GetRdfNamespacesTest.php rename to core/modules/rdf/src/Tests/GetRdfNamespacesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/ImageFieldAttributesTest.php b/core/modules/rdf/src/Tests/ImageFieldAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/ImageFieldAttributesTest.php rename to core/modules/rdf/src/Tests/ImageFieldAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/NodeAttributesTest.php b/core/modules/rdf/src/Tests/NodeAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/NodeAttributesTest.php rename to core/modules/rdf/src/Tests/NodeAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/RdfaAttributesTest.php b/core/modules/rdf/src/Tests/RdfaAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/RdfaAttributesTest.php rename to core/modules/rdf/src/Tests/RdfaAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/StandardProfileTest.php b/core/modules/rdf/src/Tests/StandardProfileTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/StandardProfileTest.php rename to core/modules/rdf/src/Tests/StandardProfileTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/TaxonomyAttributesTest.php b/core/modules/rdf/src/Tests/TaxonomyAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/TaxonomyAttributesTest.php rename to core/modules/rdf/src/Tests/TaxonomyAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/TaxonomyTermFieldAttributesTest.php b/core/modules/rdf/src/Tests/TaxonomyTermFieldAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/TaxonomyTermFieldAttributesTest.php rename to core/modules/rdf/src/Tests/TaxonomyTermFieldAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php b/core/modules/rdf/src/Tests/TrackerAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/TrackerAttributesTest.php rename to core/modules/rdf/src/Tests/TrackerAttributesTest.php diff --git a/core/modules/rdf/lib/Drupal/rdf/Tests/UserAttributesTest.php b/core/modules/rdf/src/Tests/UserAttributesTest.php similarity index 100% rename from core/modules/rdf/lib/Drupal/rdf/Tests/UserAttributesTest.php rename to core/modules/rdf/src/Tests/UserAttributesTest.php diff --git a/core/modules/rdf/tests/Drupal/rdf/Tests/RdfMappingConfigEntityUnitTest.php b/core/modules/rdf/tests/src/RdfMappingConfigEntityUnitTest.php similarity index 100% rename from core/modules/rdf/tests/Drupal/rdf/Tests/RdfMappingConfigEntityUnitTest.php rename to core/modules/rdf/tests/src/RdfMappingConfigEntityUnitTest.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/Entity/ResponsiveImageMapping.php b/core/modules/responsive_image/src/Entity/ResponsiveImageMapping.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/Entity/ResponsiveImageMapping.php rename to core/modules/responsive_image/src/Entity/ResponsiveImageMapping.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/Form/ResponsiveImageMappingDeleteForm.php b/core/modules/responsive_image/src/Form/ResponsiveImageMappingDeleteForm.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/Form/ResponsiveImageMappingDeleteForm.php rename to core/modules/responsive_image/src/Form/ResponsiveImageMappingDeleteForm.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php b/core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php rename to core/modules/responsive_image/src/Plugin/Field/FieldFormatter/ResponsiveImageFormatter.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingForm.php b/core/modules/responsive_image/src/ResponsiveImageMappingForm.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingForm.php rename to core/modules/responsive_image/src/ResponsiveImageMappingForm.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingInterface.php b/core/modules/responsive_image/src/ResponsiveImageMappingInterface.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingInterface.php rename to core/modules/responsive_image/src/ResponsiveImageMappingInterface.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingListBuilder.php b/core/modules/responsive_image/src/ResponsiveImageMappingListBuilder.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/ResponsiveImageMappingListBuilder.php rename to core/modules/responsive_image/src/ResponsiveImageMappingListBuilder.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/Tests/ResponsiveImageAdminUITest.php b/core/modules/responsive_image/src/Tests/ResponsiveImageAdminUITest.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/Tests/ResponsiveImageAdminUITest.php rename to core/modules/responsive_image/src/Tests/ResponsiveImageAdminUITest.php diff --git a/core/modules/responsive_image/lib/Drupal/responsive_image/Tests/ResponsiveImageFieldDisplayTest.php b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php similarity index 100% rename from core/modules/responsive_image/lib/Drupal/responsive_image/Tests/ResponsiveImageFieldDisplayTest.php rename to core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php diff --git a/core/modules/responsive_image/tests/Drupal/responsive_image/Tests/ResponsiveImageMappingEntityTest.php b/core/modules/responsive_image/tests/src/ResponsiveImageMappingEntityTest.php similarity index 100% rename from core/modules/responsive_image/tests/Drupal/responsive_image/Tests/ResponsiveImageMappingEntityTest.php rename to core/modules/responsive_image/tests/src/ResponsiveImageMappingEntityTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Access/CSRFAccessCheck.php b/core/modules/rest/src/Access/CSRFAccessCheck.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Access/CSRFAccessCheck.php rename to core/modules/rest/src/Access/CSRFAccessCheck.php diff --git a/core/modules/rest/lib/Drupal/rest/Annotation/RestResource.php b/core/modules/rest/src/Annotation/RestResource.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Annotation/RestResource.php rename to core/modules/rest/src/Annotation/RestResource.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/LinkManager.php b/core/modules/rest/src/LinkManager/LinkManager.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/LinkManager.php rename to core/modules/rest/src/LinkManager/LinkManager.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/LinkManagerInterface.php b/core/modules/rest/src/LinkManager/LinkManagerInterface.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/LinkManagerInterface.php rename to core/modules/rest/src/LinkManager/LinkManagerInterface.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/RelationLinkManager.php b/core/modules/rest/src/LinkManager/RelationLinkManager.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/RelationLinkManager.php rename to core/modules/rest/src/LinkManager/RelationLinkManager.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/RelationLinkManagerInterface.php b/core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/RelationLinkManagerInterface.php rename to core/modules/rest/src/LinkManager/RelationLinkManagerInterface.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/TypeLinkManager.php b/core/modules/rest/src/LinkManager/TypeLinkManager.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/TypeLinkManager.php rename to core/modules/rest/src/LinkManager/TypeLinkManager.php diff --git a/core/modules/rest/lib/Drupal/rest/LinkManager/TypeLinkManagerInterface.php b/core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/LinkManager/TypeLinkManagerInterface.php rename to core/modules/rest/src/LinkManager/TypeLinkManagerInterface.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/Derivative/EntityDerivative.php b/core/modules/rest/src/Plugin/Derivative/EntityDerivative.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/Derivative/EntityDerivative.php rename to core/modules/rest/src/Plugin/Derivative/EntityDerivative.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/ResourceBase.php b/core/modules/rest/src/Plugin/ResourceBase.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/ResourceBase.php rename to core/modules/rest/src/Plugin/ResourceBase.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/ResourceInterface.php b/core/modules/rest/src/Plugin/ResourceInterface.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/ResourceInterface.php rename to core/modules/rest/src/Plugin/ResourceInterface.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/Type/ResourcePluginManager.php b/core/modules/rest/src/Plugin/Type/ResourcePluginManager.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/Type/ResourcePluginManager.php rename to core/modules/rest/src/Plugin/Type/ResourcePluginManager.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/rest/resource/DBLogResource.php b/core/modules/rest/src/Plugin/rest/resource/DBLogResource.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/rest/resource/DBLogResource.php rename to core/modules/rest/src/Plugin/rest/resource/DBLogResource.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/rest/resource/EntityResource.php b/core/modules/rest/src/Plugin/rest/resource/EntityResource.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/rest/resource/EntityResource.php rename to core/modules/rest/src/Plugin/rest/resource/EntityResource.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php b/core/modules/rest/src/Plugin/views/display/RestExport.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php rename to core/modules/rest/src/Plugin/views/display/RestExport.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/views/row/DataEntityRow.php b/core/modules/rest/src/Plugin/views/row/DataEntityRow.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/views/row/DataEntityRow.php rename to core/modules/rest/src/Plugin/views/row/DataEntityRow.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/views/row/DataFieldRow.php b/core/modules/rest/src/Plugin/views/row/DataFieldRow.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/views/row/DataFieldRow.php rename to core/modules/rest/src/Plugin/views/row/DataFieldRow.php diff --git a/core/modules/rest/lib/Drupal/rest/Plugin/views/style/Serializer.php b/core/modules/rest/src/Plugin/views/style/Serializer.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Plugin/views/style/Serializer.php rename to core/modules/rest/src/Plugin/views/style/Serializer.php diff --git a/core/modules/rest/lib/Drupal/rest/RequestHandler.php b/core/modules/rest/src/RequestHandler.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/RequestHandler.php rename to core/modules/rest/src/RequestHandler.php diff --git a/core/modules/rest/lib/Drupal/rest/ResourceResponse.php b/core/modules/rest/src/ResourceResponse.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/ResourceResponse.php rename to core/modules/rest/src/ResourceResponse.php diff --git a/core/modules/rest/lib/Drupal/rest/Routing/ResourceRoutes.php b/core/modules/rest/src/Routing/ResourceRoutes.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Routing/ResourceRoutes.php rename to core/modules/rest/src/Routing/ResourceRoutes.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/AuthTest.php b/core/modules/rest/src/Tests/AuthTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/AuthTest.php rename to core/modules/rest/src/Tests/AuthTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/CreateTest.php b/core/modules/rest/src/Tests/CreateTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/CreateTest.php rename to core/modules/rest/src/Tests/CreateTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/CsrfTest.php b/core/modules/rest/src/Tests/CsrfTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/CsrfTest.php rename to core/modules/rest/src/Tests/CsrfTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/DBLogTest.php b/core/modules/rest/src/Tests/DBLogTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/DBLogTest.php rename to core/modules/rest/src/Tests/DBLogTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/DeleteTest.php b/core/modules/rest/src/Tests/DeleteTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/DeleteTest.php rename to core/modules/rest/src/Tests/DeleteTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/NodeTest.php b/core/modules/rest/src/Tests/NodeTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/NodeTest.php rename to core/modules/rest/src/Tests/NodeTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/RESTTestBase.php b/core/modules/rest/src/Tests/RESTTestBase.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/RESTTestBase.php rename to core/modules/rest/src/Tests/RESTTestBase.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/ReadTest.php b/core/modules/rest/src/Tests/ReadTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/ReadTest.php rename to core/modules/rest/src/Tests/ReadTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/ResourceTest.php b/core/modules/rest/src/Tests/ResourceTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/ResourceTest.php rename to core/modules/rest/src/Tests/ResourceTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/UpdateTest.php b/core/modules/rest/src/Tests/UpdateTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/UpdateTest.php rename to core/modules/rest/src/Tests/UpdateTest.php diff --git a/core/modules/rest/lib/Drupal/rest/Tests/Views/StyleSerializerTest.php b/core/modules/rest/src/Tests/Views/StyleSerializerTest.php similarity index 100% rename from core/modules/rest/lib/Drupal/rest/Tests/Views/StyleSerializerTest.php rename to core/modules/rest/src/Tests/Views/StyleSerializerTest.php diff --git a/core/modules/rest/tests/Drupal/rest/Tests/CollectRoutesTest.php b/core/modules/rest/tests/src/CollectRoutesTest.php similarity index 100% rename from core/modules/rest/tests/Drupal/rest/Tests/CollectRoutesTest.php rename to core/modules/rest/tests/src/CollectRoutesTest.php diff --git a/core/modules/search/lib/Drupal/search/Annotation/SearchPlugin.php b/core/modules/search/src/Annotation/SearchPlugin.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Annotation/SearchPlugin.php rename to core/modules/search/src/Annotation/SearchPlugin.php diff --git a/core/modules/search/lib/Drupal/search/Controller/SearchController.php b/core/modules/search/src/Controller/SearchController.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Controller/SearchController.php rename to core/modules/search/src/Controller/SearchController.php diff --git a/core/modules/search/lib/Drupal/search/Entity/SearchPage.php b/core/modules/search/src/Entity/SearchPage.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Entity/SearchPage.php rename to core/modules/search/src/Entity/SearchPage.php diff --git a/core/modules/search/lib/Drupal/search/Form/ReindexConfirm.php b/core/modules/search/src/Form/ReindexConfirm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/ReindexConfirm.php rename to core/modules/search/src/Form/ReindexConfirm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchBlockForm.php b/core/modules/search/src/Form/SearchBlockForm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchBlockForm.php rename to core/modules/search/src/Form/SearchBlockForm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchPageAddForm.php b/core/modules/search/src/Form/SearchPageAddForm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchPageAddForm.php rename to core/modules/search/src/Form/SearchPageAddForm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchPageDeleteForm.php b/core/modules/search/src/Form/SearchPageDeleteForm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchPageDeleteForm.php rename to core/modules/search/src/Form/SearchPageDeleteForm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchPageEditForm.php b/core/modules/search/src/Form/SearchPageEditForm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchPageEditForm.php rename to core/modules/search/src/Form/SearchPageEditForm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchPageForm.php b/core/modules/search/src/Form/SearchPageForm.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchPageForm.php rename to core/modules/search/src/Form/SearchPageForm.php diff --git a/core/modules/search/lib/Drupal/search/Form/SearchPageFormBase.php b/core/modules/search/src/Form/SearchPageFormBase.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Form/SearchPageFormBase.php rename to core/modules/search/src/Form/SearchPageFormBase.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php b/core/modules/search/src/Plugin/Block/SearchBlock.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/Block/SearchBlock.php rename to core/modules/search/src/Plugin/Block/SearchBlock.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/ConfigurableSearchPluginBase.php b/core/modules/search/src/Plugin/ConfigurableSearchPluginBase.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/ConfigurableSearchPluginBase.php rename to core/modules/search/src/Plugin/ConfigurableSearchPluginBase.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/ConfigurableSearchPluginInterface.php b/core/modules/search/src/Plugin/ConfigurableSearchPluginInterface.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/ConfigurableSearchPluginInterface.php rename to core/modules/search/src/Plugin/ConfigurableSearchPluginInterface.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/Derivative/SearchLocalTask.php b/core/modules/search/src/Plugin/Derivative/SearchLocalTask.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/Derivative/SearchLocalTask.php rename to core/modules/search/src/Plugin/Derivative/SearchLocalTask.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php b/core/modules/search/src/Plugin/SearchIndexingInterface.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/SearchIndexingInterface.php rename to core/modules/search/src/Plugin/SearchIndexingInterface.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/SearchInterface.php b/core/modules/search/src/Plugin/SearchInterface.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/SearchInterface.php rename to core/modules/search/src/Plugin/SearchInterface.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/SearchPluginBag.php b/core/modules/search/src/Plugin/SearchPluginBag.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/SearchPluginBag.php rename to core/modules/search/src/Plugin/SearchPluginBag.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/SearchPluginBase.php b/core/modules/search/src/Plugin/SearchPluginBase.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/SearchPluginBase.php rename to core/modules/search/src/Plugin/SearchPluginBase.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/views/argument/Search.php b/core/modules/search/src/Plugin/views/argument/Search.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/views/argument/Search.php rename to core/modules/search/src/Plugin/views/argument/Search.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/views/field/Score.php b/core/modules/search/src/Plugin/views/field/Score.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/views/field/Score.php rename to core/modules/search/src/Plugin/views/field/Score.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/views/filter/Search.php b/core/modules/search/src/Plugin/views/filter/Search.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/views/filter/Search.php rename to core/modules/search/src/Plugin/views/filter/Search.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/views/row/SearchRow.php b/core/modules/search/src/Plugin/views/row/SearchRow.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/views/row/SearchRow.php rename to core/modules/search/src/Plugin/views/row/SearchRow.php diff --git a/core/modules/search/lib/Drupal/search/Plugin/views/sort/Score.php b/core/modules/search/src/Plugin/views/sort/Score.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Plugin/views/sort/Score.php rename to core/modules/search/src/Plugin/views/sort/Score.php diff --git a/core/modules/search/lib/Drupal/search/Routing/SearchPageRoutes.php b/core/modules/search/src/Routing/SearchPageRoutes.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Routing/SearchPageRoutes.php rename to core/modules/search/src/Routing/SearchPageRoutes.php diff --git a/core/modules/search/lib/Drupal/search/SearchPageAccessController.php b/core/modules/search/src/SearchPageAccessController.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPageAccessController.php rename to core/modules/search/src/SearchPageAccessController.php diff --git a/core/modules/search/lib/Drupal/search/SearchPageInterface.php b/core/modules/search/src/SearchPageInterface.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPageInterface.php rename to core/modules/search/src/SearchPageInterface.php diff --git a/core/modules/search/lib/Drupal/search/SearchPageListBuilder.php b/core/modules/search/src/SearchPageListBuilder.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPageListBuilder.php rename to core/modules/search/src/SearchPageListBuilder.php diff --git a/core/modules/search/lib/Drupal/search/SearchPageRepository.php b/core/modules/search/src/SearchPageRepository.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPageRepository.php rename to core/modules/search/src/SearchPageRepository.php diff --git a/core/modules/search/lib/Drupal/search/SearchPageRepositoryInterface.php b/core/modules/search/src/SearchPageRepositoryInterface.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPageRepositoryInterface.php rename to core/modules/search/src/SearchPageRepositoryInterface.php diff --git a/core/modules/search/lib/Drupal/search/SearchPluginManager.php b/core/modules/search/src/SearchPluginManager.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchPluginManager.php rename to core/modules/search/src/SearchPluginManager.php diff --git a/core/modules/search/lib/Drupal/search/SearchQuery.php b/core/modules/search/src/SearchQuery.php similarity index 100% rename from core/modules/search/lib/Drupal/search/SearchQuery.php rename to core/modules/search/src/SearchQuery.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchAdvancedSearchFormTest.php b/core/modules/search/src/Tests/SearchAdvancedSearchFormTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchAdvancedSearchFormTest.php rename to core/modules/search/src/Tests/SearchAdvancedSearchFormTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchBlockTest.php b/core/modules/search/src/Tests/SearchBlockTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchBlockTest.php rename to core/modules/search/src/Tests/SearchBlockTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchCommentCountToggleTest.php b/core/modules/search/src/Tests/SearchCommentCountToggleTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchCommentCountToggleTest.php rename to core/modules/search/src/Tests/SearchCommentCountToggleTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchCommentTest.php b/core/modules/search/src/Tests/SearchCommentTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchCommentTest.php rename to core/modules/search/src/Tests/SearchCommentTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchConfigSettingsFormTest.php b/core/modules/search/src/Tests/SearchConfigSettingsFormTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchConfigSettingsFormTest.php rename to core/modules/search/src/Tests/SearchConfigSettingsFormTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchEmbedFormTest.php b/core/modules/search/src/Tests/SearchEmbedFormTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchEmbedFormTest.php rename to core/modules/search/src/Tests/SearchEmbedFormTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchExactTest.php b/core/modules/search/src/Tests/SearchExactTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchExactTest.php rename to core/modules/search/src/Tests/SearchExactTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchExcerptTest.php b/core/modules/search/src/Tests/SearchExcerptTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchExcerptTest.php rename to core/modules/search/src/Tests/SearchExcerptTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchKeywordsConditionsTest.php b/core/modules/search/src/Tests/SearchKeywordsConditionsTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchKeywordsConditionsTest.php rename to core/modules/search/src/Tests/SearchKeywordsConditionsTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchLanguageTest.php b/core/modules/search/src/Tests/SearchLanguageTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchLanguageTest.php rename to core/modules/search/src/Tests/SearchLanguageTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchMatchTest.php b/core/modules/search/src/Tests/SearchMatchTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchMatchTest.php rename to core/modules/search/src/Tests/SearchMatchTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchMultilingualEntityTest.php b/core/modules/search/src/Tests/SearchMultilingualEntityTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchMultilingualEntityTest.php rename to core/modules/search/src/Tests/SearchMultilingualEntityTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchNodePunctuationTest.php b/core/modules/search/src/Tests/SearchNodePunctuationTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchNodePunctuationTest.php rename to core/modules/search/src/Tests/SearchNodePunctuationTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchNodeUpdateAndDeletionTest.php b/core/modules/search/src/Tests/SearchNodeUpdateAndDeletionTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchNodeUpdateAndDeletionTest.php rename to core/modules/search/src/Tests/SearchNodeUpdateAndDeletionTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchNumberMatchingTest.php b/core/modules/search/src/Tests/SearchNumberMatchingTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchNumberMatchingTest.php rename to core/modules/search/src/Tests/SearchNumberMatchingTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchNumbersTest.php b/core/modules/search/src/Tests/SearchNumbersTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchNumbersTest.php rename to core/modules/search/src/Tests/SearchNumbersTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchPageCacheTagsTest.php b/core/modules/search/src/Tests/SearchPageCacheTagsTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchPageCacheTagsTest.php rename to core/modules/search/src/Tests/SearchPageCacheTagsTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchPageOverrideTest.php b/core/modules/search/src/Tests/SearchPageOverrideTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchPageOverrideTest.php rename to core/modules/search/src/Tests/SearchPageOverrideTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchPageTextTest.php b/core/modules/search/src/Tests/SearchPageTextTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchPageTextTest.php rename to core/modules/search/src/Tests/SearchPageTextTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchPreprocessLangcodeTest.php b/core/modules/search/src/Tests/SearchPreprocessLangcodeTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchPreprocessLangcodeTest.php rename to core/modules/search/src/Tests/SearchPreprocessLangcodeTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchQueryAlterTest.php b/core/modules/search/src/Tests/SearchQueryAlterTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchQueryAlterTest.php rename to core/modules/search/src/Tests/SearchQueryAlterTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchRankingTest.php b/core/modules/search/src/Tests/SearchRankingTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchRankingTest.php rename to core/modules/search/src/Tests/SearchRankingTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchSetLocaleTest.php b/core/modules/search/src/Tests/SearchSetLocaleTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchSetLocaleTest.php rename to core/modules/search/src/Tests/SearchSetLocaleTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchSimplifyTest.php b/core/modules/search/src/Tests/SearchSimplifyTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchSimplifyTest.php rename to core/modules/search/src/Tests/SearchSimplifyTest.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchTestBase.php b/core/modules/search/src/Tests/SearchTestBase.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchTestBase.php rename to core/modules/search/src/Tests/SearchTestBase.php diff --git a/core/modules/search/lib/Drupal/search/Tests/SearchTokenizerTest.php b/core/modules/search/src/Tests/SearchTokenizerTest.php similarity index 100% rename from core/modules/search/lib/Drupal/search/Tests/SearchTokenizerTest.php rename to core/modules/search/src/Tests/SearchTokenizerTest.php diff --git a/core/modules/search/lib/Drupal/search/ViewsSearchQuery.php b/core/modules/search/src/ViewsSearchQuery.php similarity index 100% rename from core/modules/search/lib/Drupal/search/ViewsSearchQuery.php rename to core/modules/search/src/ViewsSearchQuery.php diff --git a/core/modules/search/tests/modules/search_embedded_form/lib/Drupal/search_embedded_form/Form/SearchEmbeddedForm.php b/core/modules/search/tests/modules/search_embedded_form/src/Form/SearchEmbeddedForm.php similarity index 100% rename from core/modules/search/tests/modules/search_embedded_form/lib/Drupal/search_embedded_form/Form/SearchEmbeddedForm.php rename to core/modules/search/tests/modules/search_embedded_form/src/Form/SearchEmbeddedForm.php diff --git a/core/modules/search/tests/modules/search_extra_type/lib/Drupal/search_extra_type/Plugin/Search/SearchExtraTypeSearch.php b/core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php similarity index 100% rename from core/modules/search/tests/modules/search_extra_type/lib/Drupal/search_extra_type/Plugin/Search/SearchExtraTypeSearch.php rename to core/modules/search/tests/modules/search_extra_type/src/Plugin/Search/SearchExtraTypeSearch.php diff --git a/core/modules/search/tests/Drupal/search/Tests/SearchPageRepositoryTest.php b/core/modules/search/tests/src/SearchPageRepositoryTest.php similarity index 100% rename from core/modules/search/tests/Drupal/search/Tests/SearchPageRepositoryTest.php rename to core/modules/search/tests/src/SearchPageRepositoryTest.php diff --git a/core/modules/search/tests/Drupal/search/Tests/SearchPluginBagTest.php b/core/modules/search/tests/src/SearchPluginBagTest.php similarity index 100% rename from core/modules/search/tests/Drupal/search/Tests/SearchPluginBagTest.php rename to core/modules/search/tests/src/SearchPluginBagTest.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Encoder/JsonEncoder.php b/core/modules/serialization/src/Encoder/JsonEncoder.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Encoder/JsonEncoder.php rename to core/modules/serialization/src/Encoder/JsonEncoder.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Encoder/XmlEncoder.php b/core/modules/serialization/src/Encoder/XmlEncoder.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Encoder/XmlEncoder.php rename to core/modules/serialization/src/Encoder/XmlEncoder.php diff --git a/core/modules/serialization/lib/Drupal/serialization/EntityResolver/ChainEntityResolver.php b/core/modules/serialization/src/EntityResolver/ChainEntityResolver.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/EntityResolver/ChainEntityResolver.php rename to core/modules/serialization/src/EntityResolver/ChainEntityResolver.php diff --git a/core/modules/serialization/lib/Drupal/serialization/EntityResolver/EntityResolverInterface.php b/core/modules/serialization/src/EntityResolver/EntityResolverInterface.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/EntityResolver/EntityResolverInterface.php rename to core/modules/serialization/src/EntityResolver/EntityResolverInterface.php diff --git a/core/modules/serialization/lib/Drupal/serialization/EntityResolver/TargetIdResolver.php b/core/modules/serialization/src/EntityResolver/TargetIdResolver.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/EntityResolver/TargetIdResolver.php rename to core/modules/serialization/src/EntityResolver/TargetIdResolver.php diff --git a/core/modules/serialization/lib/Drupal/serialization/EntityResolver/UuidReferenceInterface.php b/core/modules/serialization/src/EntityResolver/UuidReferenceInterface.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/EntityResolver/UuidReferenceInterface.php rename to core/modules/serialization/src/EntityResolver/UuidReferenceInterface.php diff --git a/core/modules/serialization/lib/Drupal/serialization/EntityResolver/UuidResolver.php b/core/modules/serialization/src/EntityResolver/UuidResolver.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/EntityResolver/UuidResolver.php rename to core/modules/serialization/src/EntityResolver/UuidResolver.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/ComplexDataNormalizer.php b/core/modules/serialization/src/Normalizer/ComplexDataNormalizer.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/ComplexDataNormalizer.php rename to core/modules/serialization/src/Normalizer/ComplexDataNormalizer.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/ConfigEntityNormalizer.php b/core/modules/serialization/src/Normalizer/ConfigEntityNormalizer.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/ConfigEntityNormalizer.php rename to core/modules/serialization/src/Normalizer/ConfigEntityNormalizer.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/EntityNormalizer.php b/core/modules/serialization/src/Normalizer/EntityNormalizer.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/EntityNormalizer.php rename to core/modules/serialization/src/Normalizer/EntityNormalizer.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/ListNormalizer.php b/core/modules/serialization/src/Normalizer/ListNormalizer.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/ListNormalizer.php rename to core/modules/serialization/src/Normalizer/ListNormalizer.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/NormalizerBase.php b/core/modules/serialization/src/Normalizer/NormalizerBase.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/NormalizerBase.php rename to core/modules/serialization/src/Normalizer/NormalizerBase.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Normalizer/TypedDataNormalizer.php b/core/modules/serialization/src/Normalizer/TypedDataNormalizer.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Normalizer/TypedDataNormalizer.php rename to core/modules/serialization/src/Normalizer/TypedDataNormalizer.php diff --git a/core/modules/serialization/lib/Drupal/serialization/RegisterEntityResolversCompilerPass.php b/core/modules/serialization/src/RegisterEntityResolversCompilerPass.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/RegisterEntityResolversCompilerPass.php rename to core/modules/serialization/src/RegisterEntityResolversCompilerPass.php diff --git a/core/modules/serialization/lib/Drupal/serialization/RegisterSerializationClassesCompilerPass.php b/core/modules/serialization/src/RegisterSerializationClassesCompilerPass.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/RegisterSerializationClassesCompilerPass.php rename to core/modules/serialization/src/RegisterSerializationClassesCompilerPass.php diff --git a/core/modules/serialization/lib/Drupal/serialization/SerializationServiceProvider.php b/core/modules/serialization/src/SerializationServiceProvider.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/SerializationServiceProvider.php rename to core/modules/serialization/src/SerializationServiceProvider.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Tests/EntityResolverTest.php b/core/modules/serialization/src/Tests/EntityResolverTest.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Tests/EntityResolverTest.php rename to core/modules/serialization/src/Tests/EntityResolverTest.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Tests/EntitySerializationTest.php b/core/modules/serialization/src/Tests/EntitySerializationTest.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Tests/EntitySerializationTest.php rename to core/modules/serialization/src/Tests/EntitySerializationTest.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Tests/NormalizerTestBase.php b/core/modules/serialization/src/Tests/NormalizerTestBase.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Tests/NormalizerTestBase.php rename to core/modules/serialization/src/Tests/NormalizerTestBase.php diff --git a/core/modules/serialization/lib/Drupal/serialization/Tests/SerializationTest.php b/core/modules/serialization/src/Tests/SerializationTest.php similarity index 100% rename from core/modules/serialization/lib/Drupal/serialization/Tests/SerializationTest.php rename to core/modules/serialization/src/Tests/SerializationTest.php diff --git a/core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestEncoder.php b/core/modules/serialization/tests/serialization_test/src/SerializationTestEncoder.php similarity index 100% rename from core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestEncoder.php rename to core/modules/serialization/tests/serialization_test/src/SerializationTestEncoder.php diff --git a/core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestNormalizer.php b/core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php similarity index 100% rename from core/modules/serialization/tests/serialization_test/lib/Drupal/serialization_test/SerializationTestNormalizer.php rename to core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Encoder/JsonEncoderTest.php b/core/modules/serialization/tests/src/Encoder/JsonEncoderTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Encoder/JsonEncoderTest.php rename to core/modules/serialization/tests/src/Encoder/JsonEncoderTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Encoder/XmlEncoderTest.php b/core/modules/serialization/tests/src/Encoder/XmlEncoderTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Encoder/XmlEncoderTest.php rename to core/modules/serialization/tests/src/Encoder/XmlEncoderTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/EntityResolver/ChainEntityResolverTest.php b/core/modules/serialization/tests/src/EntityResolver/ChainEntityResolverTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/EntityResolver/ChainEntityResolverTest.php rename to core/modules/serialization/tests/src/EntityResolver/ChainEntityResolverTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/ConfigEntityNormalizerTest.php b/core/modules/serialization/tests/src/Normalizer/ConfigEntityNormalizerTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/ConfigEntityNormalizerTest.php rename to core/modules/serialization/tests/src/Normalizer/ConfigEntityNormalizerTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/EntityNormalizerTest.php b/core/modules/serialization/tests/src/Normalizer/EntityNormalizerTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/EntityNormalizerTest.php rename to core/modules/serialization/tests/src/Normalizer/EntityNormalizerTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/ListNormalizerTest.php b/core/modules/serialization/tests/src/Normalizer/ListNormalizerTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/ListNormalizerTest.php rename to core/modules/serialization/tests/src/Normalizer/ListNormalizerTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/NormalizerBaseTest.php b/core/modules/serialization/tests/src/Normalizer/NormalizerBaseTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/NormalizerBaseTest.php rename to core/modules/serialization/tests/src/Normalizer/NormalizerBaseTest.php diff --git a/core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/TypedDataNormalizerTest.php b/core/modules/serialization/tests/src/Normalizer/TypedDataNormalizerTest.php similarity index 100% rename from core/modules/serialization/tests/Drupal/serialization/Tests/Normalizer/TypedDataNormalizerTest.php rename to core/modules/serialization/tests/src/Normalizer/TypedDataNormalizerTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php b/core/modules/simpletest/src/DrupalUnitTestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/DrupalUnitTestBase.php rename to core/modules/simpletest/src/DrupalUnitTestBase.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php b/core/modules/simpletest/src/Form/SimpletestResultsForm.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestResultsForm.php rename to core/modules/simpletest/src/Form/SimpletestResultsForm.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestSettingsForm.php b/core/modules/simpletest/src/Form/SimpletestSettingsForm.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestSettingsForm.php rename to core/modules/simpletest/src/Form/SimpletestSettingsForm.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestTestForm.php b/core/modules/simpletest/src/Form/SimpletestTestForm.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Form/SimpletestTestForm.php rename to core/modules/simpletest/src/Form/SimpletestTestForm.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/InstallerTestBase.php b/core/modules/simpletest/src/InstallerTestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/InstallerTestBase.php rename to core/modules/simpletest/src/InstallerTestBase.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/KernelTestBase.php b/core/modules/simpletest/src/KernelTestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/KernelTestBase.php rename to core/modules/simpletest/src/KernelTestBase.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/TestBase.php b/core/modules/simpletest/src/TestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/TestBase.php rename to core/modules/simpletest/src/TestBase.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/TestServiceProvider.php b/core/modules/simpletest/src/TestServiceProvider.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/TestServiceProvider.php rename to core/modules/simpletest/src/TestServiceProvider.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/BrokenSetUpTest.php b/core/modules/simpletest/src/Tests/BrokenSetUpTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/BrokenSetUpTest.php rename to core/modules/simpletest/src/Tests/BrokenSetUpTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/BrowserTest.php b/core/modules/simpletest/src/Tests/BrowserTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/BrowserTest.php rename to core/modules/simpletest/src/Tests/BrowserTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/FolderTest.php b/core/modules/simpletest/src/Tests/FolderTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/FolderTest.php rename to core/modules/simpletest/src/Tests/FolderTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/InstallationProfileModuleTestsTest.php b/core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/InstallationProfileModuleTestsTest.php rename to core/modules/simpletest/src/Tests/InstallationProfileModuleTestsTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/KernelTestBaseTest.php b/core/modules/simpletest/src/Tests/KernelTestBaseTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/KernelTestBaseTest.php rename to core/modules/simpletest/src/Tests/KernelTestBaseTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/MailCaptureTest.php b/core/modules/simpletest/src/Tests/MailCaptureTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/MailCaptureTest.php rename to core/modules/simpletest/src/Tests/MailCaptureTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/MissingCheckedRequirementsTest.php b/core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/MissingCheckedRequirementsTest.php rename to core/modules/simpletest/src/Tests/MissingCheckedRequirementsTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/MissingDependentModuleUnitTest.php b/core/modules/simpletest/src/Tests/MissingDependentModuleUnitTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/MissingDependentModuleUnitTest.php rename to core/modules/simpletest/src/Tests/MissingDependentModuleUnitTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/OtherInstallationProfileTestsTest.php b/core/modules/simpletest/src/Tests/OtherInstallationProfileTestsTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/OtherInstallationProfileTestsTest.php rename to core/modules/simpletest/src/Tests/OtherInstallationProfileTestsTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/SimpleTestTest.php b/core/modules/simpletest/src/Tests/SimpleTestTest.php old mode 100755 new mode 100644 similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/SimpleTestTest.php rename to core/modules/simpletest/src/Tests/SimpleTestTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/Tests/UserHelpersTest.php b/core/modules/simpletest/src/Tests/UserHelpersTest.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/Tests/UserHelpersTest.php rename to core/modules/simpletest/src/Tests/UserHelpersTest.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/UnitTestBase.php b/core/modules/simpletest/src/UnitTestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/UnitTestBase.php rename to core/modules/simpletest/src/UnitTestBase.php diff --git a/core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php b/core/modules/simpletest/src/WebTestBase.php similarity index 100% rename from core/modules/simpletest/lib/Drupal/simpletest/WebTestBase.php rename to core/modules/simpletest/src/WebTestBase.php diff --git a/core/modules/simpletest/tests/modules/phpunit_test/lib/Drupal/phpunit_test/PhpUnitTestDummyClass.php b/core/modules/simpletest/tests/modules/phpunit_test/src/PhpUnitTestDummyClass.php similarity index 100% rename from core/modules/simpletest/tests/modules/phpunit_test/lib/Drupal/phpunit_test/PhpUnitTestDummyClass.php rename to core/modules/simpletest/tests/modules/phpunit_test/src/PhpUnitTestDummyClass.php diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/Fixtures/select_2nd_selected.html b/core/modules/simpletest/tests/src/Fixtures/select_2nd_selected.html similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/Fixtures/select_2nd_selected.html rename to core/modules/simpletest/tests/src/Fixtures/select_2nd_selected.html diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/Fixtures/select_none_selected.html b/core/modules/simpletest/tests/src/Fixtures/select_none_selected.html similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/Fixtures/select_none_selected.html rename to core/modules/simpletest/tests/src/Fixtures/select_none_selected.html diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/PhpUnitAutoloaderTest.php b/core/modules/simpletest/tests/src/PhpUnitAutoloaderTest.php similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/PhpUnitAutoloaderTest.php rename to core/modules/simpletest/tests/src/PhpUnitAutoloaderTest.php diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/PhpUnitErrorTest.php b/core/modules/simpletest/tests/src/PhpUnitErrorTest.php similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/PhpUnitErrorTest.php rename to core/modules/simpletest/tests/src/PhpUnitErrorTest.php diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/TestBaseTest.php b/core/modules/simpletest/tests/src/TestBaseTest.php similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/TestBaseTest.php rename to core/modules/simpletest/tests/src/TestBaseTest.php diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/WebTestBaseTest.php b/core/modules/simpletest/tests/src/WebTestBaseTest.php similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/WebTestBaseTest.php rename to core/modules/simpletest/tests/src/WebTestBaseTest.php diff --git a/core/modules/simpletest/tests/Drupal/simpletest/Tests/phpunit_error.xml b/core/modules/simpletest/tests/src/phpunit_error.xml similarity index 100% rename from core/modules/simpletest/tests/Drupal/simpletest/Tests/phpunit_error.xml rename to core/modules/simpletest/tests/src/phpunit_error.xml diff --git a/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php b/core/modules/statistics/src/Plugin/Block/StatisticsPopularBlock.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php rename to core/modules/statistics/src/Plugin/Block/StatisticsPopularBlock.php diff --git a/core/modules/statistics/lib/Drupal/statistics/StatisticsSettingsForm.php b/core/modules/statistics/src/StatisticsSettingsForm.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/StatisticsSettingsForm.php rename to core/modules/statistics/src/StatisticsSettingsForm.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsAdminTest.php b/core/modules/statistics/src/Tests/StatisticsAdminTest.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsAdminTest.php rename to core/modules/statistics/src/Tests/StatisticsAdminTest.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsLoggingTest.php b/core/modules/statistics/src/Tests/StatisticsLoggingTest.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsLoggingTest.php rename to core/modules/statistics/src/Tests/StatisticsLoggingTest.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsReportsTest.php b/core/modules/statistics/src/Tests/StatisticsReportsTest.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsReportsTest.php rename to core/modules/statistics/src/Tests/StatisticsReportsTest.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsTestBase.php b/core/modules/statistics/src/Tests/StatisticsTestBase.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsTestBase.php rename to core/modules/statistics/src/Tests/StatisticsTestBase.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsTokenReplaceTest.php b/core/modules/statistics/src/Tests/StatisticsTokenReplaceTest.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/StatisticsTokenReplaceTest.php rename to core/modules/statistics/src/Tests/StatisticsTokenReplaceTest.php diff --git a/core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php b/core/modules/statistics/src/Tests/Views/IntegrationTest.php similarity index 100% rename from core/modules/statistics/lib/Drupal/statistics/Tests/Views/IntegrationTest.php rename to core/modules/statistics/src/Tests/Views/IntegrationTest.php diff --git a/core/modules/syslog/lib/Drupal/syslog/Tests/SyslogTest.php b/core/modules/syslog/src/Tests/SyslogTest.php similarity index 100% rename from core/modules/syslog/lib/Drupal/syslog/Tests/SyslogTest.php rename to core/modules/syslog/src/Tests/SyslogTest.php diff --git a/core/modules/system/lib/Drupal/system/Access/CronAccessCheck.php b/core/modules/system/src/Access/CronAccessCheck.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Access/CronAccessCheck.php rename to core/modules/system/src/Access/CronAccessCheck.php diff --git a/core/modules/system/lib/Drupal/system/ActionConfigEntityInterface.php b/core/modules/system/src/ActionConfigEntityInterface.php similarity index 100% rename from core/modules/system/lib/Drupal/system/ActionConfigEntityInterface.php rename to core/modules/system/src/ActionConfigEntityInterface.php diff --git a/core/modules/system/lib/Drupal/system/Controller/AdminController.php b/core/modules/system/src/Controller/AdminController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/AdminController.php rename to core/modules/system/src/Controller/AdminController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/BatchController.php b/core/modules/system/src/Controller/BatchController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/BatchController.php rename to core/modules/system/src/Controller/BatchController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/FormAjaxController.php b/core/modules/system/src/Controller/FormAjaxController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/FormAjaxController.php rename to core/modules/system/src/Controller/FormAjaxController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/SystemController.php b/core/modules/system/src/Controller/SystemController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/SystemController.php rename to core/modules/system/src/Controller/SystemController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/SystemInfoController.php b/core/modules/system/src/Controller/SystemInfoController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/SystemInfoController.php rename to core/modules/system/src/Controller/SystemInfoController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/ThemeController.php b/core/modules/system/src/Controller/ThemeController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/ThemeController.php rename to core/modules/system/src/Controller/ThemeController.php diff --git a/core/modules/system/lib/Drupal/system/Controller/TimezoneController.php b/core/modules/system/src/Controller/TimezoneController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Controller/TimezoneController.php rename to core/modules/system/src/Controller/TimezoneController.php diff --git a/core/modules/system/lib/Drupal/system/CronController.php b/core/modules/system/src/CronController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/CronController.php rename to core/modules/system/src/CronController.php diff --git a/core/modules/system/lib/Drupal/system/DateFormatAccessController.php b/core/modules/system/src/DateFormatAccessController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/DateFormatAccessController.php rename to core/modules/system/src/DateFormatAccessController.php diff --git a/core/modules/system/lib/Drupal/system/DateFormatInterface.php b/core/modules/system/src/DateFormatInterface.php similarity index 100% rename from core/modules/system/lib/Drupal/system/DateFormatInterface.php rename to core/modules/system/src/DateFormatInterface.php diff --git a/core/modules/system/lib/Drupal/system/DateFormatListBuilder.php b/core/modules/system/src/DateFormatListBuilder.php similarity index 100% rename from core/modules/system/lib/Drupal/system/DateFormatListBuilder.php rename to core/modules/system/src/DateFormatListBuilder.php diff --git a/core/modules/system/lib/Drupal/system/Entity/Action.php b/core/modules/system/src/Entity/Action.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Entity/Action.php rename to core/modules/system/src/Entity/Action.php diff --git a/core/modules/system/lib/Drupal/system/Entity/DateFormat.php b/core/modules/system/src/Entity/DateFormat.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Entity/DateFormat.php rename to core/modules/system/src/Entity/DateFormat.php diff --git a/core/modules/system/lib/Drupal/system/Entity/Menu.php b/core/modules/system/src/Entity/Menu.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Entity/Menu.php rename to core/modules/system/src/Entity/Menu.php diff --git a/core/modules/system/lib/Drupal/system/EventSubscriber/AdminRouteSubscriber.php b/core/modules/system/src/EventSubscriber/AdminRouteSubscriber.php similarity index 100% rename from core/modules/system/lib/Drupal/system/EventSubscriber/AdminRouteSubscriber.php rename to core/modules/system/src/EventSubscriber/AdminRouteSubscriber.php diff --git a/core/modules/system/lib/Drupal/system/EventSubscriber/AutomaticCron.php b/core/modules/system/src/EventSubscriber/AutomaticCron.php similarity index 100% rename from core/modules/system/lib/Drupal/system/EventSubscriber/AutomaticCron.php rename to core/modules/system/src/EventSubscriber/AutomaticCron.php diff --git a/core/modules/system/lib/Drupal/system/FileDownloadController.php b/core/modules/system/src/FileDownloadController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/FileDownloadController.php rename to core/modules/system/src/FileDownloadController.php diff --git a/core/modules/system/lib/Drupal/system/Form/CronForm.php b/core/modules/system/src/Form/CronForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/CronForm.php rename to core/modules/system/src/Form/CronForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/DateFormatAddForm.php b/core/modules/system/src/Form/DateFormatAddForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/DateFormatAddForm.php rename to core/modules/system/src/Form/DateFormatAddForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/DateFormatDeleteForm.php b/core/modules/system/src/Form/DateFormatDeleteForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/DateFormatDeleteForm.php rename to core/modules/system/src/Form/DateFormatDeleteForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/DateFormatEditForm.php b/core/modules/system/src/Form/DateFormatEditForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/DateFormatEditForm.php rename to core/modules/system/src/Form/DateFormatEditForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/DateFormatFormBase.php b/core/modules/system/src/Form/DateFormatFormBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/DateFormatFormBase.php rename to core/modules/system/src/Form/DateFormatFormBase.php diff --git a/core/modules/system/lib/Drupal/system/Form/FileSystemForm.php b/core/modules/system/src/Form/FileSystemForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/FileSystemForm.php rename to core/modules/system/src/Form/FileSystemForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ImageToolkitForm.php b/core/modules/system/src/Form/ImageToolkitForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ImageToolkitForm.php rename to core/modules/system/src/Form/ImageToolkitForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/LoggingForm.php b/core/modules/system/src/Form/LoggingForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/LoggingForm.php rename to core/modules/system/src/Form/LoggingForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ModulesListConfirmForm.php b/core/modules/system/src/Form/ModulesListConfirmForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ModulesListConfirmForm.php rename to core/modules/system/src/Form/ModulesListConfirmForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ModulesListForm.php b/core/modules/system/src/Form/ModulesListForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ModulesListForm.php rename to core/modules/system/src/Form/ModulesListForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ModulesUninstallConfirmForm.php b/core/modules/system/src/Form/ModulesUninstallConfirmForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ModulesUninstallConfirmForm.php rename to core/modules/system/src/Form/ModulesUninstallConfirmForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php b/core/modules/system/src/Form/ModulesUninstallForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php rename to core/modules/system/src/Form/ModulesUninstallForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/PerformanceForm.php b/core/modules/system/src/Form/PerformanceForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/PerformanceForm.php rename to core/modules/system/src/Form/PerformanceForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/RegionalForm.php b/core/modules/system/src/Form/RegionalForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/RegionalForm.php rename to core/modules/system/src/Form/RegionalForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/RssFeedsForm.php b/core/modules/system/src/Form/RssFeedsForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/RssFeedsForm.php rename to core/modules/system/src/Form/RssFeedsForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/SiteInformationForm.php b/core/modules/system/src/Form/SiteInformationForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/SiteInformationForm.php rename to core/modules/system/src/Form/SiteInformationForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/SiteMaintenanceModeForm.php b/core/modules/system/src/Form/SiteMaintenanceModeForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/SiteMaintenanceModeForm.php rename to core/modules/system/src/Form/SiteMaintenanceModeForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ThemeAdminForm.php b/core/modules/system/src/Form/ThemeAdminForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ThemeAdminForm.php rename to core/modules/system/src/Form/ThemeAdminForm.php diff --git a/core/modules/system/lib/Drupal/system/Form/ThemeSettingsForm.php b/core/modules/system/src/Form/ThemeSettingsForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Form/ThemeSettingsForm.php rename to core/modules/system/src/Form/ThemeSettingsForm.php diff --git a/core/modules/system/lib/Drupal/system/MachineNameController.php b/core/modules/system/src/MachineNameController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/MachineNameController.php rename to core/modules/system/src/MachineNameController.php diff --git a/core/modules/system/lib/Drupal/system/MenuAccessController.php b/core/modules/system/src/MenuAccessController.php similarity index 100% rename from core/modules/system/lib/Drupal/system/MenuAccessController.php rename to core/modules/system/src/MenuAccessController.php diff --git a/core/modules/system/lib/Drupal/system/MenuInterface.php b/core/modules/system/src/MenuInterface.php similarity index 100% rename from core/modules/system/lib/Drupal/system/MenuInterface.php rename to core/modules/system/src/MenuInterface.php diff --git a/core/modules/system/lib/Drupal/system/PathBasedBreadcrumbBuilder.php b/core/modules/system/src/PathBasedBreadcrumbBuilder.php similarity index 100% rename from core/modules/system/lib/Drupal/system/PathBasedBreadcrumbBuilder.php rename to core/modules/system/src/PathBasedBreadcrumbBuilder.php diff --git a/core/modules/system/lib/Drupal/system/PathProcessor/PathProcessorFiles.php b/core/modules/system/src/PathProcessor/PathProcessorFiles.php similarity index 100% rename from core/modules/system/lib/Drupal/system/PathProcessor/PathProcessorFiles.php rename to core/modules/system/src/PathProcessor/PathProcessorFiles.php diff --git a/core/modules/system/lib/Drupal/system/PhpStorage/MockPhpStorage.php b/core/modules/system/src/PhpStorage/MockPhpStorage.php similarity index 100% rename from core/modules/system/lib/Drupal/system/PhpStorage/MockPhpStorage.php rename to core/modules/system/src/PhpStorage/MockPhpStorage.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Archiver/Tar.php b/core/modules/system/src/Plugin/Archiver/Tar.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Archiver/Tar.php rename to core/modules/system/src/Plugin/Archiver/Tar.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Archiver/Zip.php b/core/modules/system/src/Plugin/Archiver/Zip.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Archiver/Zip.php rename to core/modules/system/src/Plugin/Archiver/Zip.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php b/core/modules/system/src/Plugin/Block/SystemBrandingBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemBrandingBlock.php rename to core/modules/system/src/Plugin/Block/SystemBrandingBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemBreadcrumbBlock.php b/core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemBreadcrumbBlock.php rename to core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php b/core/modules/system/src/Plugin/Block/SystemHelpBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemHelpBlock.php rename to core/modules/system/src/Plugin/Block/SystemHelpBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php b/core/modules/system/src/Plugin/Block/SystemMainBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemMainBlock.php rename to core/modules/system/src/Plugin/Block/SystemMainBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php b/core/modules/system/src/Plugin/Block/SystemMenuBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemMenuBlock.php rename to core/modules/system/src/Plugin/Block/SystemMenuBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php b/core/modules/system/src/Plugin/Block/SystemPoweredByBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Block/SystemPoweredByBlock.php rename to core/modules/system/src/Plugin/Block/SystemPoweredByBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Derivative/SystemMenuBlock.php b/core/modules/system/src/Plugin/Derivative/SystemMenuBlock.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Derivative/SystemMenuBlock.php rename to core/modules/system/src/Plugin/Derivative/SystemMenuBlock.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/Derivative/ThemeLocalTask.php b/core/modules/system/src/Plugin/Derivative/ThemeLocalTask.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/Derivative/ThemeLocalTask.php rename to core/modules/system/src/Plugin/Derivative/ThemeLocalTask.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/ImageToolkit/GDToolkit.php b/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/ImageToolkit/GDToolkit.php rename to core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php diff --git a/core/modules/system/lib/Drupal/system/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Plugin/views/field/BulkForm.php rename to core/modules/system/src/Plugin/views/field/BulkForm.php diff --git a/core/modules/system/lib/Drupal/system/SystemConfigSubscriber.php b/core/modules/system/src/SystemConfigSubscriber.php similarity index 100% rename from core/modules/system/lib/Drupal/system/SystemConfigSubscriber.php rename to core/modules/system/src/SystemConfigSubscriber.php diff --git a/core/modules/system/lib/Drupal/system/SystemManager.php b/core/modules/system/src/SystemManager.php similarity index 100% rename from core/modules/system/lib/Drupal/system/SystemManager.php rename to core/modules/system/src/SystemManager.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Action/ActionUnitTest.php b/core/modules/system/src/Tests/Action/ActionUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Action/ActionUnitTest.php rename to core/modules/system/src/Tests/Action/ActionUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/AjaxTestBase.php b/core/modules/system/src/Tests/Ajax/AjaxTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/AjaxTestBase.php rename to core/modules/system/src/Tests/Ajax/AjaxTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/CommandsTest.php b/core/modules/system/src/Tests/Ajax/CommandsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/CommandsTest.php rename to core/modules/system/src/Tests/Ajax/CommandsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/DialogTest.php b/core/modules/system/src/Tests/Ajax/DialogTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/DialogTest.php rename to core/modules/system/src/Tests/Ajax/DialogTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/ElementValidationTest.php b/core/modules/system/src/Tests/Ajax/ElementValidationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/ElementValidationTest.php rename to core/modules/system/src/Tests/Ajax/ElementValidationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/FormValuesTest.php b/core/modules/system/src/Tests/Ajax/FormValuesTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/FormValuesTest.php rename to core/modules/system/src/Tests/Ajax/FormValuesTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/FrameworkTest.php b/core/modules/system/src/Tests/Ajax/FrameworkTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/FrameworkTest.php rename to core/modules/system/src/Tests/Ajax/FrameworkTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Ajax/MultiFormTest.php b/core/modules/system/src/Tests/Ajax/MultiFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Ajax/MultiFormTest.php rename to core/modules/system/src/Tests/Ajax/MultiFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Batch/PageTest.php b/core/modules/system/src/Tests/Batch/PageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Batch/PageTest.php rename to core/modules/system/src/Tests/Batch/PageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Batch/ProcessingTest.php b/core/modules/system/src/Tests/Batch/ProcessingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Batch/ProcessingTest.php rename to core/modules/system/src/Tests/Batch/ProcessingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Block/SystemMenuBlockTest.php b/core/modules/system/src/Tests/Block/SystemMenuBlockTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Block/SystemMenuBlockTest.php rename to core/modules/system/src/Tests/Block/SystemMenuBlockTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Bootstrap/GetFilenameUnitTest.php b/core/modules/system/src/Tests/Bootstrap/GetFilenameUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Bootstrap/GetFilenameUnitTest.php rename to core/modules/system/src/Tests/Bootstrap/GetFilenameUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Bootstrap/MiscUnitTest.php b/core/modules/system/src/Tests/Bootstrap/MiscUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Bootstrap/MiscUnitTest.php rename to core/modules/system/src/Tests/Bootstrap/MiscUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Bootstrap/PageCacheTest.php b/core/modules/system/src/Tests/Bootstrap/PageCacheTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Bootstrap/PageCacheTest.php rename to core/modules/system/src/Tests/Bootstrap/PageCacheTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Bootstrap/ResettableStaticUnitTest.php b/core/modules/system/src/Tests/Bootstrap/ResettableStaticUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Bootstrap/ResettableStaticUnitTest.php rename to core/modules/system/src/Tests/Bootstrap/ResettableStaticUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/ApcuBackendUnitTest.php b/core/modules/system/src/Tests/Cache/ApcuBackendUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/ApcuBackendUnitTest.php rename to core/modules/system/src/Tests/Cache/ApcuBackendUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainUnitTest.php b/core/modules/system/src/Tests/Cache/BackendChainUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/BackendChainUnitTest.php rename to core/modules/system/src/Tests/Cache/BackendChainUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/CacheTestBase.php b/core/modules/system/src/Tests/Cache/CacheTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/CacheTestBase.php rename to core/modules/system/src/Tests/Cache/CacheTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/ClearTest.php b/core/modules/system/src/Tests/Cache/ClearTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/ClearTest.php rename to core/modules/system/src/Tests/Cache/ClearTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/DatabaseBackendTagTest.php b/core/modules/system/src/Tests/Cache/DatabaseBackendTagTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/DatabaseBackendTagTest.php rename to core/modules/system/src/Tests/Cache/DatabaseBackendTagTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/DatabaseBackendUnitTest.php b/core/modules/system/src/Tests/Cache/DatabaseBackendUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/DatabaseBackendUnitTest.php rename to core/modules/system/src/Tests/Cache/DatabaseBackendUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/GenericCacheBackendUnitTestBase.php b/core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/GenericCacheBackendUnitTestBase.php rename to core/modules/system/src/Tests/Cache/GenericCacheBackendUnitTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/MemoryBackendUnitTest.php b/core/modules/system/src/Tests/Cache/MemoryBackendUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/MemoryBackendUnitTest.php rename to core/modules/system/src/Tests/Cache/MemoryBackendUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/PageCacheTagsIntegrationTest.php b/core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/PageCacheTagsIntegrationTest.php rename to core/modules/system/src/Tests/Cache/PageCacheTagsIntegrationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/PageCacheTagsTestBase.php b/core/modules/system/src/Tests/Cache/PageCacheTagsTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/PageCacheTagsTestBase.php rename to core/modules/system/src/Tests/Cache/PageCacheTagsTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Cache/PhpBackendUnitTest.php b/core/modules/system/src/Tests/Cache/PhpBackendUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Cache/PhpBackendUnitTest.php rename to core/modules/system/src/Tests/Cache/PhpBackendUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/AddFeedTest.php b/core/modules/system/src/Tests/Common/AddFeedTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/AddFeedTest.php rename to core/modules/system/src/Tests/Common/AddFeedTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/AlterTest.php b/core/modules/system/src/Tests/Common/AlterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/AlterTest.php rename to core/modules/system/src/Tests/Common/AlterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/CascadingStylesheetsTest.php b/core/modules/system/src/Tests/Common/CascadingStylesheetsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/CascadingStylesheetsTest.php rename to core/modules/system/src/Tests/Common/CascadingStylesheetsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/FormatDateTest.php b/core/modules/system/src/Tests/Common/FormatDateTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/FormatDateTest.php rename to core/modules/system/src/Tests/Common/FormatDateTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/HtmlIdentifierUnitTest.php b/core/modules/system/src/Tests/Common/HtmlIdentifierUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/HtmlIdentifierUnitTest.php rename to core/modules/system/src/Tests/Common/HtmlIdentifierUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/JavaScriptTest.php b/core/modules/system/src/Tests/Common/JavaScriptTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/JavaScriptTest.php rename to core/modules/system/src/Tests/Common/JavaScriptTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/MergeAttachmentsTest.php b/core/modules/system/src/Tests/Common/MergeAttachmentsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/MergeAttachmentsTest.php rename to core/modules/system/src/Tests/Common/MergeAttachmentsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/NoJavaScriptAnonymousTest.php b/core/modules/system/src/Tests/Common/NoJavaScriptAnonymousTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/NoJavaScriptAnonymousTest.php rename to core/modules/system/src/Tests/Common/NoJavaScriptAnonymousTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/RegionContentTest.php b/core/modules/system/src/Tests/Common/RegionContentTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/RegionContentTest.php rename to core/modules/system/src/Tests/Common/RegionContentTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/RenderElementTypesTest.php b/core/modules/system/src/Tests/Common/RenderElementTypesTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/RenderElementTypesTest.php rename to core/modules/system/src/Tests/Common/RenderElementTypesTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php b/core/modules/system/src/Tests/Common/RenderTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/RenderTest.php rename to core/modules/system/src/Tests/Common/RenderTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/RenderWebTest.php b/core/modules/system/src/Tests/Common/RenderWebTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/RenderWebTest.php rename to core/modules/system/src/Tests/Common/RenderWebTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/SimpleTestErrorCollectorTest.php b/core/modules/system/src/Tests/Common/SimpleTestErrorCollectorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/SimpleTestErrorCollectorTest.php rename to core/modules/system/src/Tests/Common/SimpleTestErrorCollectorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/SizeUnitTest.php b/core/modules/system/src/Tests/Common/SizeUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/SizeUnitTest.php rename to core/modules/system/src/Tests/Common/SizeUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/SystemListingTest.php b/core/modules/system/src/Tests/Common/SystemListingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/SystemListingTest.php rename to core/modules/system/src/Tests/Common/SystemListingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/TableSortExtenderUnitTest.php b/core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/TableSortExtenderUnitTest.php rename to core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/UrlTest.php b/core/modules/system/src/Tests/Common/UrlTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/UrlTest.php rename to core/modules/system/src/Tests/Common/UrlTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/WriteRecordTest.php b/core/modules/system/src/Tests/Common/WriteRecordTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/WriteRecordTest.php rename to core/modules/system/src/Tests/Common/WriteRecordTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Common/XssUnitTest.php b/core/modules/system/src/Tests/Common/XssUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Common/XssUnitTest.php rename to core/modules/system/src/Tests/Common/XssUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Condition/ConditionFormTest.php b/core/modules/system/src/Tests/Condition/ConditionFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Condition/ConditionFormTest.php rename to core/modules/system/src/Tests/Condition/ConditionFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/AlterTest.php b/core/modules/system/src/Tests/Database/AlterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/AlterTest.php rename to core/modules/system/src/Tests/Database/AlterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/BasicSyntaxTest.php b/core/modules/system/src/Tests/Database/BasicSyntaxTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/BasicSyntaxTest.php rename to core/modules/system/src/Tests/Database/BasicSyntaxTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/CaseSensitivityTest.php b/core/modules/system/src/Tests/Database/CaseSensitivityTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/CaseSensitivityTest.php rename to core/modules/system/src/Tests/Database/CaseSensitivityTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/ConnectionTest.php b/core/modules/system/src/Tests/Database/ConnectionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/ConnectionTest.php rename to core/modules/system/src/Tests/Database/ConnectionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/ConnectionUnitTest.php b/core/modules/system/src/Tests/Database/ConnectionUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/ConnectionUnitTest.php rename to core/modules/system/src/Tests/Database/ConnectionUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/DatabaseExceptionWrapperTest.php b/core/modules/system/src/Tests/Database/DatabaseExceptionWrapperTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/DatabaseExceptionWrapperTest.php rename to core/modules/system/src/Tests/Database/DatabaseExceptionWrapperTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/DatabaseTestBase.php b/core/modules/system/src/Tests/Database/DatabaseTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/DatabaseTestBase.php rename to core/modules/system/src/Tests/Database/DatabaseTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/DatabaseWebTestBase.php b/core/modules/system/src/Tests/Database/DatabaseWebTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/DatabaseWebTestBase.php rename to core/modules/system/src/Tests/Database/DatabaseWebTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/DeleteTruncateTest.php b/core/modules/system/src/Tests/Database/DeleteTruncateTest.php old mode 100755 new mode 100644 similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/DeleteTruncateTest.php rename to core/modules/system/src/Tests/Database/DeleteTruncateTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/FakeRecord.php b/core/modules/system/src/Tests/Database/FakeRecord.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/FakeRecord.php rename to core/modules/system/src/Tests/Database/FakeRecord.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php b/core/modules/system/src/Tests/Database/FetchTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/FetchTest.php rename to core/modules/system/src/Tests/Database/FetchTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/InsertDefaultsTest.php b/core/modules/system/src/Tests/Database/InsertDefaultsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/InsertDefaultsTest.php rename to core/modules/system/src/Tests/Database/InsertDefaultsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/InsertLobTest.php b/core/modules/system/src/Tests/Database/InsertLobTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/InsertLobTest.php rename to core/modules/system/src/Tests/Database/InsertLobTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/InsertTest.php b/core/modules/system/src/Tests/Database/InsertTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/InsertTest.php rename to core/modules/system/src/Tests/Database/InsertTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/InvalidDataTest.php b/core/modules/system/src/Tests/Database/InvalidDataTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/InvalidDataTest.php rename to core/modules/system/src/Tests/Database/InvalidDataTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/LoggingTest.php b/core/modules/system/src/Tests/Database/LoggingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/LoggingTest.php rename to core/modules/system/src/Tests/Database/LoggingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/MergeTest.php b/core/modules/system/src/Tests/Database/MergeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/MergeTest.php rename to core/modules/system/src/Tests/Database/MergeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/NextIdTest.php b/core/modules/system/src/Tests/Database/NextIdTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/NextIdTest.php rename to core/modules/system/src/Tests/Database/NextIdTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/QueryTest.php b/core/modules/system/src/Tests/Database/QueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/QueryTest.php rename to core/modules/system/src/Tests/Database/QueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/RangeQueryTest.php b/core/modules/system/src/Tests/Database/RangeQueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/RangeQueryTest.php rename to core/modules/system/src/Tests/Database/RangeQueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/RegressionTest.php b/core/modules/system/src/Tests/Database/RegressionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/RegressionTest.php rename to core/modules/system/src/Tests/Database/RegressionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SchemaTest.php b/core/modules/system/src/Tests/Database/SchemaTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SchemaTest.php rename to core/modules/system/src/Tests/Database/SchemaTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectCloneTest.php b/core/modules/system/src/Tests/Database/SelectCloneTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectCloneTest.php rename to core/modules/system/src/Tests/Database/SelectCloneTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectComplexTest.php b/core/modules/system/src/Tests/Database/SelectComplexTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectComplexTest.php rename to core/modules/system/src/Tests/Database/SelectComplexTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectOrderedTest.php b/core/modules/system/src/Tests/Database/SelectOrderedTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectOrderedTest.php rename to core/modules/system/src/Tests/Database/SelectOrderedTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectPagerDefaultTest.php b/core/modules/system/src/Tests/Database/SelectPagerDefaultTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectPagerDefaultTest.php rename to core/modules/system/src/Tests/Database/SelectPagerDefaultTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectSubqueryTest.php b/core/modules/system/src/Tests/Database/SelectSubqueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectSubqueryTest.php rename to core/modules/system/src/Tests/Database/SelectSubqueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectTableSortDefaultTest.php b/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectTableSortDefaultTest.php rename to core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SelectTest.php b/core/modules/system/src/Tests/Database/SelectTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SelectTest.php rename to core/modules/system/src/Tests/Database/SelectTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/SerializeQueryTest.php b/core/modules/system/src/Tests/Database/SerializeQueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/SerializeQueryTest.php rename to core/modules/system/src/Tests/Database/SerializeQueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/TaggingTest.php b/core/modules/system/src/Tests/Database/TaggingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/TaggingTest.php rename to core/modules/system/src/Tests/Database/TaggingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/TemporaryQueryTest.php b/core/modules/system/src/Tests/Database/TemporaryQueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/TemporaryQueryTest.php rename to core/modules/system/src/Tests/Database/TemporaryQueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/TransactionTest.php b/core/modules/system/src/Tests/Database/TransactionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/TransactionTest.php rename to core/modules/system/src/Tests/Database/TransactionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/UpdateComplexTest.php b/core/modules/system/src/Tests/Database/UpdateComplexTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/UpdateComplexTest.php rename to core/modules/system/src/Tests/Database/UpdateComplexTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/UpdateLobTest.php b/core/modules/system/src/Tests/Database/UpdateLobTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/UpdateLobTest.php rename to core/modules/system/src/Tests/Database/UpdateLobTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Database/UpdateTest.php b/core/modules/system/src/Tests/Database/UpdateTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Database/UpdateTest.php rename to core/modules/system/src/Tests/Database/UpdateTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Datetime/DateTimePlusIntlTest.php b/core/modules/system/src/Tests/Datetime/DateTimePlusIntlTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Datetime/DateTimePlusIntlTest.php rename to core/modules/system/src/Tests/Datetime/DateTimePlusIntlTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Datetime/DrupalDateTimeIntlTest.php b/core/modules/system/src/Tests/Datetime/DrupalDateTimeIntlTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Datetime/DrupalDateTimeIntlTest.php rename to core/modules/system/src/Tests/Datetime/DrupalDateTimeIntlTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Datetime/DrupalDateTimeTest.php b/core/modules/system/src/Tests/Datetime/DrupalDateTimeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Datetime/DrupalDateTimeTest.php rename to core/modules/system/src/Tests/Datetime/DrupalDateTimeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/DrupalKernel/ContentNegotiationTest.php b/core/modules/system/src/Tests/DrupalKernel/ContentNegotiationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/DrupalKernel/ContentNegotiationTest.php rename to core/modules/system/src/Tests/DrupalKernel/ContentNegotiationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/DrupalKernel/DrupalKernelSiteTest.php b/core/modules/system/src/Tests/DrupalKernel/DrupalKernelSiteTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/DrupalKernel/DrupalKernelSiteTest.php rename to core/modules/system/src/Tests/DrupalKernel/DrupalKernelSiteTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/DrupalKernel/DrupalKernelTest.php b/core/modules/system/src/Tests/DrupalKernel/DrupalKernelTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/DrupalKernel/DrupalKernelTest.php rename to core/modules/system/src/Tests/DrupalKernel/DrupalKernelTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/DrupalKernel/ServiceDestructionTest.php b/core/modules/system/src/Tests/DrupalKernel/ServiceDestructionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/DrupalKernel/ServiceDestructionTest.php rename to core/modules/system/src/Tests/DrupalKernel/ServiceDestructionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/BundleConstraintValidatorTest.php b/core/modules/system/src/Tests/Entity/BundleConstraintValidatorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/BundleConstraintValidatorTest.php rename to core/modules/system/src/Tests/Entity/BundleConstraintValidatorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/ConfigEntityImportTest.php b/core/modules/system/src/Tests/Entity/ConfigEntityImportTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/ConfigEntityImportTest.php rename to core/modules/system/src/Tests/Entity/ConfigEntityImportTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/ConfigEntityQueryTest.php b/core/modules/system/src/Tests/Entity/ConfigEntityQueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/ConfigEntityQueryTest.php rename to core/modules/system/src/Tests/Entity/ConfigEntityQueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityAccessTest.php b/core/modules/system/src/Tests/Entity/EntityAccessTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityAccessTest.php rename to core/modules/system/src/Tests/Entity/EntityAccessTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityApiInfoTest.php b/core/modules/system/src/Tests/Entity/EntityApiInfoTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityApiInfoTest.php rename to core/modules/system/src/Tests/Entity/EntityApiInfoTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityApiTest.php b/core/modules/system/src/Tests/Entity/EntityApiTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityApiTest.php rename to core/modules/system/src/Tests/Entity/EntityApiTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityCacheTagsTestBase.php rename to core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php b/core/modules/system/src/Tests/Entity/EntityCrudHookTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityCrudHookTest.php rename to core/modules/system/src/Tests/Entity/EntityCrudHookTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityFieldDefaultValueTest.php b/core/modules/system/src/Tests/Entity/EntityFieldDefaultValueTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityFieldDefaultValueTest.php rename to core/modules/system/src/Tests/Entity/EntityFieldDefaultValueTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityFieldTest.php b/core/modules/system/src/Tests/Entity/EntityFieldTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityFieldTest.php rename to core/modules/system/src/Tests/Entity/EntityFieldTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityFormTest.php b/core/modules/system/src/Tests/Entity/EntityFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityFormTest.php rename to core/modules/system/src/Tests/Entity/EntityFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityLanguageTestBase.php b/core/modules/system/src/Tests/Entity/EntityLanguageTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityLanguageTestBase.php rename to core/modules/system/src/Tests/Entity/EntityLanguageTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityOperationsTest.php b/core/modules/system/src/Tests/Entity/EntityOperationsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityOperationsTest.php rename to core/modules/system/src/Tests/Entity/EntityOperationsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryAggregateTest.php b/core/modules/system/src/Tests/Entity/EntityQueryAggregateTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryAggregateTest.php rename to core/modules/system/src/Tests/Entity/EntityQueryAggregateTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryRelationshipTest.php b/core/modules/system/src/Tests/Entity/EntityQueryRelationshipTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryRelationshipTest.php rename to core/modules/system/src/Tests/Entity/EntityQueryRelationshipTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryTest.php b/core/modules/system/src/Tests/Entity/EntityQueryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityQueryTest.php rename to core/modules/system/src/Tests/Entity/EntityQueryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityRevisionsTest.php b/core/modules/system/src/Tests/Entity/EntityRevisionsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityRevisionsTest.php rename to core/modules/system/src/Tests/Entity/EntityRevisionsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationFormTest.php b/core/modules/system/src/Tests/Entity/EntityTranslationFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationFormTest.php rename to core/modules/system/src/Tests/Entity/EntityTranslationFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php b/core/modules/system/src/Tests/Entity/EntityTranslationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityTranslationTest.php rename to core/modules/system/src/Tests/Entity/EntityTranslationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTypeConstraintValidatorTest.php b/core/modules/system/src/Tests/Entity/EntityTypeConstraintValidatorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityTypeConstraintValidatorTest.php rename to core/modules/system/src/Tests/Entity/EntityTypeConstraintValidatorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityTypedDataDefinitionTest.php b/core/modules/system/src/Tests/Entity/EntityTypedDataDefinitionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityTypedDataDefinitionTest.php rename to core/modules/system/src/Tests/Entity/EntityTypedDataDefinitionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUUIDTest.php b/core/modules/system/src/Tests/Entity/EntityUUIDTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityUUIDTest.php rename to core/modules/system/src/Tests/Entity/EntityUUIDTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php b/core/modules/system/src/Tests/Entity/EntityUnitTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityUnitTestBase.php rename to core/modules/system/src/Tests/Entity/EntityUnitTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityValidationTest.php b/core/modules/system/src/Tests/Entity/EntityValidationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityValidationTest.php rename to core/modules/system/src/Tests/Entity/EntityValidationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityViewBuilderTest.php b/core/modules/system/src/Tests/Entity/EntityViewBuilderTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityViewBuilderTest.php rename to core/modules/system/src/Tests/Entity/EntityViewBuilderTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityViewControllerTest.php b/core/modules/system/src/Tests/Entity/EntityViewControllerTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityViewControllerTest.php rename to core/modules/system/src/Tests/Entity/EntityViewControllerTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/EntityWithUriCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/EntityWithUriCacheTagsTestBase.php rename to core/modules/system/src/Tests/Entity/EntityWithUriCacheTagsTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/FieldAccessTest.php b/core/modules/system/src/Tests/Entity/FieldAccessTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/FieldAccessTest.php rename to core/modules/system/src/Tests/Entity/FieldAccessTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/FieldSqlStorageTest.php b/core/modules/system/src/Tests/Entity/FieldSqlStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/FieldSqlStorageTest.php rename to core/modules/system/src/Tests/Entity/FieldSqlStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Entity/FieldTranslationSqlStorageTest.php b/core/modules/system/src/Tests/Entity/FieldTranslationSqlStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Entity/FieldTranslationSqlStorageTest.php rename to core/modules/system/src/Tests/Entity/FieldTranslationSqlStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Extension/InfoParserUnitTest.php b/core/modules/system/src/Tests/Extension/InfoParserUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Extension/InfoParserUnitTest.php rename to core/modules/system/src/Tests/Extension/InfoParserUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Extension/ThemeHandlerTest.php b/core/modules/system/src/Tests/Extension/ThemeHandlerTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Extension/ThemeHandlerTest.php rename to core/modules/system/src/Tests/Extension/ThemeHandlerTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/ConfigTest.php b/core/modules/system/src/Tests/File/ConfigTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/ConfigTest.php rename to core/modules/system/src/Tests/File/ConfigTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/DirectoryTest.php b/core/modules/system/src/Tests/File/DirectoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/DirectoryTest.php rename to core/modules/system/src/Tests/File/DirectoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/FileTestBase.php b/core/modules/system/src/Tests/File/FileTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/FileTestBase.php rename to core/modules/system/src/Tests/File/FileTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/HtaccessUnitTest.php b/core/modules/system/src/Tests/File/HtaccessUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/HtaccessUnitTest.php rename to core/modules/system/src/Tests/File/HtaccessUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/MimeTypeTest.php b/core/modules/system/src/Tests/File/MimeTypeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/MimeTypeTest.php rename to core/modules/system/src/Tests/File/MimeTypeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/NameMungingTest.php b/core/modules/system/src/Tests/File/NameMungingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/NameMungingTest.php rename to core/modules/system/src/Tests/File/NameMungingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/ReadOnlyStreamWrapperTest.php b/core/modules/system/src/Tests/File/ReadOnlyStreamWrapperTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/ReadOnlyStreamWrapperTest.php rename to core/modules/system/src/Tests/File/ReadOnlyStreamWrapperTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileDirectoryTest.php b/core/modules/system/src/Tests/File/RemoteFileDirectoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileDirectoryTest.php rename to core/modules/system/src/Tests/File/RemoteFileDirectoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileScanDirectoryTest.php b/core/modules/system/src/Tests/File/RemoteFileScanDirectoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileScanDirectoryTest.php rename to core/modules/system/src/Tests/File/RemoteFileScanDirectoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedCopyTest.php b/core/modules/system/src/Tests/File/RemoteFileUnmanagedCopyTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedCopyTest.php rename to core/modules/system/src/Tests/File/RemoteFileUnmanagedCopyTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php b/core/modules/system/src/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php rename to core/modules/system/src/Tests/File/RemoteFileUnmanagedDeleteRecursiveTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedDeleteTest.php b/core/modules/system/src/Tests/File/RemoteFileUnmanagedDeleteTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedDeleteTest.php rename to core/modules/system/src/Tests/File/RemoteFileUnmanagedDeleteTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedMoveTest.php b/core/modules/system/src/Tests/File/RemoteFileUnmanagedMoveTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedMoveTest.php rename to core/modules/system/src/Tests/File/RemoteFileUnmanagedMoveTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedSaveDataTest.php b/core/modules/system/src/Tests/File/RemoteFileUnmanagedSaveDataTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedSaveDataTest.php rename to core/modules/system/src/Tests/File/RemoteFileUnmanagedSaveDataTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/ScanDirectoryTest.php b/core/modules/system/src/Tests/File/ScanDirectoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/ScanDirectoryTest.php rename to core/modules/system/src/Tests/File/ScanDirectoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/StreamWrapperTest.php b/core/modules/system/src/Tests/File/StreamWrapperTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/StreamWrapperTest.php rename to core/modules/system/src/Tests/File/StreamWrapperTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedCopyTest.php b/core/modules/system/src/Tests/File/UnmanagedCopyTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UnmanagedCopyTest.php rename to core/modules/system/src/Tests/File/UnmanagedCopyTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedDeleteRecursiveTest.php b/core/modules/system/src/Tests/File/UnmanagedDeleteRecursiveTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UnmanagedDeleteRecursiveTest.php rename to core/modules/system/src/Tests/File/UnmanagedDeleteRecursiveTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedDeleteTest.php b/core/modules/system/src/Tests/File/UnmanagedDeleteTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UnmanagedDeleteTest.php rename to core/modules/system/src/Tests/File/UnmanagedDeleteTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedMoveTest.php b/core/modules/system/src/Tests/File/UnmanagedMoveTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UnmanagedMoveTest.php rename to core/modules/system/src/Tests/File/UnmanagedMoveTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UnmanagedSaveDataTest.php b/core/modules/system/src/Tests/File/UnmanagedSaveDataTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UnmanagedSaveDataTest.php rename to core/modules/system/src/Tests/File/UnmanagedSaveDataTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/File/UrlRewritingTest.php b/core/modules/system/src/Tests/File/UrlRewritingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/File/UrlRewritingTest.php rename to core/modules/system/src/Tests/File/UrlRewritingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php b/core/modules/system/src/Tests/FileTransfer/FileTransferTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php rename to core/modules/system/src/Tests/FileTransfer/FileTransferTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/FileTransfer/MockTestConnection.php b/core/modules/system/src/Tests/FileTransfer/MockTestConnection.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/FileTransfer/MockTestConnection.php rename to core/modules/system/src/Tests/FileTransfer/MockTestConnection.php diff --git a/core/modules/system/lib/Drupal/system/Tests/FileTransfer/TestFileTransfer.php b/core/modules/system/src/Tests/FileTransfer/TestFileTransfer.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/FileTransfer/TestFileTransfer.php rename to core/modules/system/src/Tests/FileTransfer/TestFileTransfer.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/AlterTest.php b/core/modules/system/src/Tests/Form/AlterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/AlterTest.php rename to core/modules/system/src/Tests/Form/AlterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ArbitraryRebuildTest.php b/core/modules/system/src/Tests/Form/ArbitraryRebuildTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ArbitraryRebuildTest.php rename to core/modules/system/src/Tests/Form/ArbitraryRebuildTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/CheckboxTest.php b/core/modules/system/src/Tests/Form/CheckboxTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/CheckboxTest.php rename to core/modules/system/src/Tests/Form/CheckboxTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ConfirmFormTest.php b/core/modules/system/src/Tests/Form/ConfirmFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ConfirmFormTest.php rename to core/modules/system/src/Tests/Form/ConfirmFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ElementTest.php b/core/modules/system/src/Tests/Form/ElementTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ElementTest.php rename to core/modules/system/src/Tests/Form/ElementTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ElementsLabelsTest.php b/core/modules/system/src/Tests/Form/ElementsLabelsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ElementsLabelsTest.php rename to core/modules/system/src/Tests/Form/ElementsLabelsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ElementsTableSelectTest.php b/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ElementsTableSelectTest.php rename to core/modules/system/src/Tests/Form/ElementsTableSelectTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ElementsVerticalTabsTest.php b/core/modules/system/src/Tests/Form/ElementsVerticalTabsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ElementsVerticalTabsTest.php rename to core/modules/system/src/Tests/Form/ElementsVerticalTabsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/EmailTest.php b/core/modules/system/src/Tests/Form/EmailTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/EmailTest.php rename to core/modules/system/src/Tests/Form/EmailTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/FormCacheTest.php b/core/modules/system/src/Tests/Form/FormCacheTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/FormCacheTest.php rename to core/modules/system/src/Tests/Form/FormCacheTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/FormObjectTest.php b/core/modules/system/src/Tests/Form/FormObjectTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/FormObjectTest.php rename to core/modules/system/src/Tests/Form/FormObjectTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/FormTest.php b/core/modules/system/src/Tests/Form/FormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/FormTest.php rename to core/modules/system/src/Tests/Form/FormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/LanguageSelectElementTest.php b/core/modules/system/src/Tests/Form/LanguageSelectElementTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/LanguageSelectElementTest.php rename to core/modules/system/src/Tests/Form/LanguageSelectElementTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ModulesListFormWebTest.php b/core/modules/system/src/Tests/Form/ModulesListFormWebTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ModulesListFormWebTest.php rename to core/modules/system/src/Tests/Form/ModulesListFormWebTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ProgrammaticTest.php b/core/modules/system/src/Tests/Form/ProgrammaticTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ProgrammaticTest.php rename to core/modules/system/src/Tests/Form/ProgrammaticTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/RebuildTest.php b/core/modules/system/src/Tests/Form/RebuildTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/RebuildTest.php rename to core/modules/system/src/Tests/Form/RebuildTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/RedirectTest.php b/core/modules/system/src/Tests/Form/RedirectTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/RedirectTest.php rename to core/modules/system/src/Tests/Form/RedirectTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/StateValuesCleanAdvancedTest.php b/core/modules/system/src/Tests/Form/StateValuesCleanAdvancedTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/StateValuesCleanAdvancedTest.php rename to core/modules/system/src/Tests/Form/StateValuesCleanAdvancedTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/StateValuesCleanTest.php b/core/modules/system/src/Tests/Form/StateValuesCleanTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/StateValuesCleanTest.php rename to core/modules/system/src/Tests/Form/StateValuesCleanTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/StorageTest.php b/core/modules/system/src/Tests/Form/StorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/StorageTest.php rename to core/modules/system/src/Tests/Form/StorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/SystemConfigFormTest.php b/core/modules/system/src/Tests/Form/SystemConfigFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/SystemConfigFormTest.php rename to core/modules/system/src/Tests/Form/SystemConfigFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/TriggeringElementProgrammedUnitTest.php b/core/modules/system/src/Tests/Form/TriggeringElementProgrammedUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/TriggeringElementProgrammedUnitTest.php rename to core/modules/system/src/Tests/Form/TriggeringElementProgrammedUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/TriggeringElementTest.php b/core/modules/system/src/Tests/Form/TriggeringElementTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/TriggeringElementTest.php rename to core/modules/system/src/Tests/Form/TriggeringElementTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/UrlTest.php b/core/modules/system/src/Tests/Form/UrlTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/UrlTest.php rename to core/modules/system/src/Tests/Form/UrlTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Form/ValidationTest.php b/core/modules/system/src/Tests/Form/ValidationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Form/ValidationTest.php rename to core/modules/system/src/Tests/Form/ValidationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Image/ToolkitGdTest.php b/core/modules/system/src/Tests/Image/ToolkitGdTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Image/ToolkitGdTest.php rename to core/modules/system/src/Tests/Image/ToolkitGdTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Image/ToolkitSetupFormTest.php b/core/modules/system/src/Tests/Image/ToolkitSetupFormTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Image/ToolkitSetupFormTest.php rename to core/modules/system/src/Tests/Image/ToolkitSetupFormTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Image/ToolkitTest.php b/core/modules/system/src/Tests/Image/ToolkitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Image/ToolkitTest.php rename to core/modules/system/src/Tests/Image/ToolkitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Image/ToolkitTestBase.php b/core/modules/system/src/Tests/Image/ToolkitTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Image/ToolkitTestBase.php rename to core/modules/system/src/Tests/Image/ToolkitTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/DistributionProfileTest.php b/core/modules/system/src/Tests/Installer/DistributionProfileTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/DistributionProfileTest.php rename to core/modules/system/src/Tests/Installer/DistributionProfileTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerEmptySettingsTest.php b/core/modules/system/src/Tests/Installer/InstallerEmptySettingsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerEmptySettingsTest.php rename to core/modules/system/src/Tests/Installer/InstallerEmptySettingsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerExistingDatabaseSettingsTest.php b/core/modules/system/src/Tests/Installer/InstallerExistingDatabaseSettingsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerExistingDatabaseSettingsTest.php rename to core/modules/system/src/Tests/Installer/InstallerExistingDatabaseSettingsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerExistingSettingsTest.php b/core/modules/system/src/Tests/Installer/InstallerExistingSettingsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerExistingSettingsTest.php rename to core/modules/system/src/Tests/Installer/InstallerExistingSettingsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerLanguageDirectionTest.php b/core/modules/system/src/Tests/Installer/InstallerLanguageDirectionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerLanguageDirectionTest.php rename to core/modules/system/src/Tests/Installer/InstallerLanguageDirectionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerLanguageTest.php b/core/modules/system/src/Tests/Installer/InstallerLanguageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerLanguageTest.php rename to core/modules/system/src/Tests/Installer/InstallerLanguageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTest.php b/core/modules/system/src/Tests/Installer/InstallerTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTest.php rename to core/modules/system/src/Tests/Installer/InstallerTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTranslationTest.php b/core/modules/system/src/Tests/Installer/InstallerTranslationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTranslationTest.php rename to core/modules/system/src/Tests/Installer/InstallerTranslationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTranslationVersionUnitTest.php b/core/modules/system/src/Tests/Installer/InstallerTranslationVersionUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/InstallerTranslationVersionUnitTest.php rename to core/modules/system/src/Tests/Installer/InstallerTranslationVersionUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Installer/SiteNameTest.php b/core/modules/system/src/Tests/Installer/SiteNameTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Installer/SiteNameTest.php rename to core/modules/system/src/Tests/Installer/SiteNameTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/DatabaseStorageExpirableTest.php b/core/modules/system/src/Tests/KeyValueStore/DatabaseStorageExpirableTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/DatabaseStorageExpirableTest.php rename to core/modules/system/src/Tests/KeyValueStore/DatabaseStorageExpirableTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/DatabaseStorageTest.php b/core/modules/system/src/Tests/KeyValueStore/DatabaseStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/DatabaseStorageTest.php rename to core/modules/system/src/Tests/KeyValueStore/DatabaseStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/GarbageCollectionTest.php b/core/modules/system/src/Tests/KeyValueStore/GarbageCollectionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/GarbageCollectionTest.php rename to core/modules/system/src/Tests/KeyValueStore/GarbageCollectionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php b/core/modules/system/src/Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php rename to core/modules/system/src/Tests/KeyValueStore/KeyValueConfigEntityStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/KeyValueContentEntityStorageTest.php b/core/modules/system/src/Tests/KeyValueStore/KeyValueContentEntityStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/KeyValueContentEntityStorageTest.php rename to core/modules/system/src/Tests/KeyValueStore/KeyValueContentEntityStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/MemoryStorageTest.php b/core/modules/system/src/Tests/KeyValueStore/MemoryStorageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/MemoryStorageTest.php rename to core/modules/system/src/Tests/KeyValueStore/MemoryStorageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/KeyValueStore/StorageTestBase.php b/core/modules/system/src/Tests/KeyValueStore/StorageTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/KeyValueStore/StorageTestBase.php rename to core/modules/system/src/Tests/KeyValueStore/StorageTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Lock/LockFunctionalTest.php b/core/modules/system/src/Tests/Lock/LockFunctionalTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Lock/LockFunctionalTest.php rename to core/modules/system/src/Tests/Lock/LockFunctionalTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Lock/LockUnitTest.php b/core/modules/system/src/Tests/Lock/LockUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Lock/LockUnitTest.php rename to core/modules/system/src/Tests/Lock/LockUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Mail/HtmlToTextTest.php b/core/modules/system/src/Tests/Mail/HtmlToTextTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Mail/HtmlToTextTest.php rename to core/modules/system/src/Tests/Mail/HtmlToTextTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Mail/MailTest.php b/core/modules/system/src/Tests/Mail/MailTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Mail/MailTest.php rename to core/modules/system/src/Tests/Mail/MailTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php b/core/modules/system/src/Tests/Mail/WrapMailUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Mail/WrapMailUnitTest.php rename to core/modules/system/src/Tests/Mail/WrapMailUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php b/core/modules/system/src/Tests/Menu/BreadcrumbTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/BreadcrumbTest.php rename to core/modules/system/src/Tests/Menu/BreadcrumbTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/LinksTest.php b/core/modules/system/src/Tests/Menu/LinksTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/LinksTest.php rename to core/modules/system/src/Tests/Menu/LinksTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/LocalActionTest.php b/core/modules/system/src/Tests/Menu/LocalActionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/LocalActionTest.php rename to core/modules/system/src/Tests/Menu/LocalActionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/LocalTasksTest.php b/core/modules/system/src/Tests/Menu/LocalTasksTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/LocalTasksTest.php rename to core/modules/system/src/Tests/Menu/LocalTasksTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/MenuRouterRebuildTest.php b/core/modules/system/src/Tests/Menu/MenuRouterRebuildTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/MenuRouterRebuildTest.php rename to core/modules/system/src/Tests/Menu/MenuRouterRebuildTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/MenuRouterTest.php b/core/modules/system/src/Tests/Menu/MenuRouterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/MenuRouterTest.php rename to core/modules/system/src/Tests/Menu/MenuRouterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/MenuTestBase.php b/core/modules/system/src/Tests/Menu/MenuTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/MenuTestBase.php rename to core/modules/system/src/Tests/Menu/MenuTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Menu/MenuTranslateTest.php b/core/modules/system/src/Tests/Menu/MenuTranslateTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Menu/MenuTranslateTest.php rename to core/modules/system/src/Tests/Menu/MenuTranslateTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php b/core/modules/system/src/Tests/Module/ClassLoaderTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php rename to core/modules/system/src/Tests/Module/ClassLoaderTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/DependencyTest.php b/core/modules/system/src/Tests/Module/DependencyTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/DependencyTest.php rename to core/modules/system/src/Tests/Module/DependencyTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/HookRequirementsTest.php b/core/modules/system/src/Tests/Module/HookRequirementsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/HookRequirementsTest.php rename to core/modules/system/src/Tests/Module/HookRequirementsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/InstallTest.php b/core/modules/system/src/Tests/Module/InstallTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/InstallTest.php rename to core/modules/system/src/Tests/Module/InstallTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/InstallUninstallTest.php b/core/modules/system/src/Tests/Module/InstallUninstallTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/InstallUninstallTest.php rename to core/modules/system/src/Tests/Module/InstallUninstallTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/ModuleApiTest.php b/core/modules/system/src/Tests/Module/ModuleApiTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/ModuleApiTest.php rename to core/modules/system/src/Tests/Module/ModuleApiTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/ModuleTestBase.php b/core/modules/system/src/Tests/Module/ModuleTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/ModuleTestBase.php rename to core/modules/system/src/Tests/Module/ModuleTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/RequiredTest.php b/core/modules/system/src/Tests/Module/RequiredTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/RequiredTest.php rename to core/modules/system/src/Tests/Module/RequiredTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/UninstallTest.php b/core/modules/system/src/Tests/Module/UninstallTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/UninstallTest.php rename to core/modules/system/src/Tests/Module/UninstallTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Module/VersionTest.php b/core/modules/system/src/Tests/Module/VersionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Module/VersionTest.php rename to core/modules/system/src/Tests/Module/VersionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Page/DefaultMetatagsTest.php b/core/modules/system/src/Tests/Page/DefaultMetatagsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Page/DefaultMetatagsTest.php rename to core/modules/system/src/Tests/Page/DefaultMetatagsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Pager/PagerTest.php b/core/modules/system/src/Tests/Pager/PagerTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Pager/PagerTest.php rename to core/modules/system/src/Tests/Pager/PagerTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/ParamConverter/UpcastingTest.php b/core/modules/system/src/Tests/ParamConverter/UpcastingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/ParamConverter/UpcastingTest.php rename to core/modules/system/src/Tests/ParamConverter/UpcastingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Path/AliasTest.php b/core/modules/system/src/Tests/Path/AliasTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Path/AliasTest.php rename to core/modules/system/src/Tests/Path/AliasTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Path/MatchPathTest.php b/core/modules/system/src/Tests/Path/MatchPathTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Path/MatchPathTest.php rename to core/modules/system/src/Tests/Path/MatchPathTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Path/PathUnitTestBase.php b/core/modules/system/src/Tests/Path/PathUnitTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Path/PathUnitTestBase.php rename to core/modules/system/src/Tests/Path/PathUnitTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Path/UrlAliasFixtures.php b/core/modules/system/src/Tests/Path/UrlAliasFixtures.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Path/UrlAliasFixtures.php rename to core/modules/system/src/Tests/Path/UrlAliasFixtures.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Path/UrlAlterFunctionalTest.php b/core/modules/system/src/Tests/Path/UrlAlterFunctionalTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Path/UrlAlterFunctionalTest.php rename to core/modules/system/src/Tests/Path/UrlAlterFunctionalTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/PhpStorage/PhpStorageFactoryTest.php b/core/modules/system/src/Tests/PhpStorage/PhpStorageFactoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/PhpStorage/PhpStorageFactoryTest.php rename to core/modules/system/src/Tests/PhpStorage/PhpStorageFactoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/AlterDecoratorTest.php b/core/modules/system/src/Tests/Plugin/AlterDecoratorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/AlterDecoratorTest.php rename to core/modules/system/src/Tests/Plugin/AlterDecoratorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/CacheDecoratorLanguageTest.php b/core/modules/system/src/Tests/Plugin/CacheDecoratorLanguageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/CacheDecoratorLanguageTest.php rename to core/modules/system/src/Tests/Plugin/CacheDecoratorLanguageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/CacheDecoratorTest.php b/core/modules/system/src/Tests/Plugin/CacheDecoratorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/CacheDecoratorTest.php rename to core/modules/system/src/Tests/Plugin/CacheDecoratorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/ContextPluginTest.php b/core/modules/system/src/Tests/Plugin/ContextPluginTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/ContextPluginTest.php rename to core/modules/system/src/Tests/Plugin/ContextPluginTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/DerivativeTest.php b/core/modules/system/src/Tests/Plugin/DerivativeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/DerivativeTest.php rename to core/modules/system/src/Tests/Plugin/DerivativeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php b/core/modules/system/src/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php rename to core/modules/system/src/Tests/Plugin/Discovery/AnnotatedClassDiscoveryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php b/core/modules/system/src/Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php rename to core/modules/system/src/Tests/Plugin/Discovery/CustomAnnotationClassDiscoveryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php b/core/modules/system/src/Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php rename to core/modules/system/src/Tests/Plugin/Discovery/CustomDirectoryAnnotatedClassDiscoveryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/DiscoveryTestBase.php b/core/modules/system/src/Tests/Plugin/Discovery/DiscoveryTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/DiscoveryTestBase.php rename to core/modules/system/src/Tests/Plugin/Discovery/DiscoveryTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/StaticDiscoveryTest.php b/core/modules/system/src/Tests/Plugin/Discovery/StaticDiscoveryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/Discovery/StaticDiscoveryTest.php rename to core/modules/system/src/Tests/Plugin/Discovery/StaticDiscoveryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/FactoryTest.php b/core/modules/system/src/Tests/Plugin/FactoryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/FactoryTest.php rename to core/modules/system/src/Tests/Plugin/FactoryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/InspectionTest.php b/core/modules/system/src/Tests/Plugin/InspectionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/InspectionTest.php rename to core/modules/system/src/Tests/Plugin/InspectionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Plugin/PluginTestBase.php b/core/modules/system/src/Tests/Plugin/PluginTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Plugin/PluginTestBase.php rename to core/modules/system/src/Tests/Plugin/PluginTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Queue/QueueTest.php b/core/modules/system/src/Tests/Queue/QueueTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Queue/QueueTest.php rename to core/modules/system/src/Tests/Queue/QueueTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/MatcherDumperTest.php b/core/modules/system/src/Tests/Routing/MatcherDumperTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/MatcherDumperTest.php rename to core/modules/system/src/Tests/Routing/MatcherDumperTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/MockAliasManager.php b/core/modules/system/src/Tests/Routing/MockAliasManager.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/MockAliasManager.php rename to core/modules/system/src/Tests/Routing/MockAliasManager.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/MockMatcher.php b/core/modules/system/src/Tests/Routing/MockMatcher.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/MockMatcher.php rename to core/modules/system/src/Tests/Routing/MockMatcher.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/MockRouteProvider.php b/core/modules/system/src/Tests/Routing/MockRouteProvider.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/MockRouteProvider.php rename to core/modules/system/src/Tests/Routing/MockRouteProvider.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/RouteProviderTest.php b/core/modules/system/src/Tests/Routing/RouteProviderTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/RouteProviderTest.php rename to core/modules/system/src/Tests/Routing/RouteProviderTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/RouterPermissionTest.php b/core/modules/system/src/Tests/Routing/RouterPermissionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/RouterPermissionTest.php rename to core/modules/system/src/Tests/Routing/RouterPermissionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Routing/RouterTest.php b/core/modules/system/src/Tests/Routing/RouterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Routing/RouterTest.php rename to core/modules/system/src/Tests/Routing/RouterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/ServiceProvider/ServiceProviderTest.php b/core/modules/system/src/Tests/ServiceProvider/ServiceProviderTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/ServiceProvider/ServiceProviderTest.php rename to core/modules/system/src/Tests/ServiceProvider/ServiceProviderTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Session/SessionHttpsTest.php b/core/modules/system/src/Tests/Session/SessionHttpsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Session/SessionHttpsTest.php rename to core/modules/system/src/Tests/Session/SessionHttpsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Session/SessionTest.php b/core/modules/system/src/Tests/Session/SessionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Session/SessionTest.php rename to core/modules/system/src/Tests/Session/SessionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/AccessDeniedTest.php b/core/modules/system/src/Tests/System/AccessDeniedTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/AccessDeniedTest.php rename to core/modules/system/src/Tests/System/AccessDeniedTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/AdminMetaTagTest.php b/core/modules/system/src/Tests/System/AdminMetaTagTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/AdminMetaTagTest.php rename to core/modules/system/src/Tests/System/AdminMetaTagTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/AdminTest.php b/core/modules/system/src/Tests/System/AdminTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/AdminTest.php rename to core/modules/system/src/Tests/System/AdminTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/CronQueueTest.php b/core/modules/system/src/Tests/System/CronQueueTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/CronQueueTest.php rename to core/modules/system/src/Tests/System/CronQueueTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/CronRunTest.php b/core/modules/system/src/Tests/System/CronRunTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/CronRunTest.php rename to core/modules/system/src/Tests/System/CronRunTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/DateFormatsLockedTest.php b/core/modules/system/src/Tests/System/DateFormatsLockedTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/DateFormatsLockedTest.php rename to core/modules/system/src/Tests/System/DateFormatsLockedTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/DateFormatsMachineNameTest.php b/core/modules/system/src/Tests/System/DateFormatsMachineNameTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/DateFormatsMachineNameTest.php rename to core/modules/system/src/Tests/System/DateFormatsMachineNameTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/DateTimeTest.php b/core/modules/system/src/Tests/System/DateTimeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/DateTimeTest.php rename to core/modules/system/src/Tests/System/DateTimeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/DefaultMobileMetaTagsTest.php b/core/modules/system/src/Tests/System/DefaultMobileMetaTagsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/DefaultMobileMetaTagsTest.php rename to core/modules/system/src/Tests/System/DefaultMobileMetaTagsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/ErrorHandlerTest.php b/core/modules/system/src/Tests/System/ErrorHandlerTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/ErrorHandlerTest.php rename to core/modules/system/src/Tests/System/ErrorHandlerTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/FloodTest.php b/core/modules/system/src/Tests/System/FloodTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/FloodTest.php rename to core/modules/system/src/Tests/System/FloodTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/FrontPageTest.php b/core/modules/system/src/Tests/System/FrontPageTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/FrontPageTest.php rename to core/modules/system/src/Tests/System/FrontPageTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/IgnoreSlaveSubscriberTest.php b/core/modules/system/src/Tests/System/IgnoreSlaveSubscriberTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/IgnoreSlaveSubscriberTest.php rename to core/modules/system/src/Tests/System/IgnoreSlaveSubscriberTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/IndexPhpTest.php b/core/modules/system/src/Tests/System/IndexPhpTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/IndexPhpTest.php rename to core/modules/system/src/Tests/System/IndexPhpTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/InfoAlterTest.php b/core/modules/system/src/Tests/System/InfoAlterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/InfoAlterTest.php rename to core/modules/system/src/Tests/System/InfoAlterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/MainContentFallbackTest.php b/core/modules/system/src/Tests/System/MainContentFallbackTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/MainContentFallbackTest.php rename to core/modules/system/src/Tests/System/MainContentFallbackTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/PageNotFoundTest.php b/core/modules/system/src/Tests/System/PageNotFoundTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/PageNotFoundTest.php rename to core/modules/system/src/Tests/System/PageNotFoundTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php b/core/modules/system/src/Tests/System/PageTitleTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/PageTitleTest.php rename to core/modules/system/src/Tests/System/PageTitleTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/PasswordHashingTest.php b/core/modules/system/src/Tests/System/PasswordHashingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/PasswordHashingTest.php rename to core/modules/system/src/Tests/System/PasswordHashingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/RetrieveFileTest.php b/core/modules/system/src/Tests/System/RetrieveFileTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/RetrieveFileTest.php rename to core/modules/system/src/Tests/System/RetrieveFileTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/ScriptTest.php b/core/modules/system/src/Tests/System/ScriptTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/ScriptTest.php rename to core/modules/system/src/Tests/System/ScriptTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/SettingsRewriteTest.php b/core/modules/system/src/Tests/System/SettingsRewriteTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/SettingsRewriteTest.php rename to core/modules/system/src/Tests/System/SettingsRewriteTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/ShutdownFunctionsTest.php b/core/modules/system/src/Tests/System/ShutdownFunctionsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/ShutdownFunctionsTest.php rename to core/modules/system/src/Tests/System/ShutdownFunctionsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/SiteMaintenanceTest.php b/core/modules/system/src/Tests/System/SiteMaintenanceTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/SiteMaintenanceTest.php rename to core/modules/system/src/Tests/System/SiteMaintenanceTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/StatusTest.php b/core/modules/system/src/Tests/System/StatusTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/StatusTest.php rename to core/modules/system/src/Tests/System/StatusTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/SystemAuthorizeTest.php b/core/modules/system/src/Tests/System/SystemAuthorizeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/SystemAuthorizeTest.php rename to core/modules/system/src/Tests/System/SystemAuthorizeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/SystemConfigFormTestBase.php b/core/modules/system/src/Tests/System/SystemConfigFormTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/SystemConfigFormTestBase.php rename to core/modules/system/src/Tests/System/SystemConfigFormTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/ThemeTest.php b/core/modules/system/src/Tests/System/ThemeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/ThemeTest.php rename to core/modules/system/src/Tests/System/ThemeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/TokenReplaceUnitTest.php b/core/modules/system/src/Tests/System/TokenReplaceUnitTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/TokenReplaceUnitTest.php rename to core/modules/system/src/Tests/System/TokenReplaceUnitTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/TokenReplaceUnitTestBase.php b/core/modules/system/src/Tests/System/TokenReplaceUnitTestBase.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/TokenReplaceUnitTestBase.php rename to core/modules/system/src/Tests/System/TokenReplaceUnitTestBase.php diff --git a/core/modules/system/lib/Drupal/system/Tests/System/TokenScanTest.php b/core/modules/system/src/Tests/System/TokenScanTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/System/TokenScanTest.php rename to core/modules/system/src/Tests/System/TokenScanTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/EntityFilteringThemeTest.php b/core/modules/system/src/Tests/Theme/EntityFilteringThemeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/EntityFilteringThemeTest.php rename to core/modules/system/src/Tests/Theme/EntityFilteringThemeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/FastTest.php b/core/modules/system/src/Tests/Theme/FastTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/FastTest.php rename to core/modules/system/src/Tests/Theme/FastTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/FunctionsTest.php b/core/modules/system/src/Tests/Theme/FunctionsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/FunctionsTest.php rename to core/modules/system/src/Tests/Theme/FunctionsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php b/core/modules/system/src/Tests/Theme/HtmlAttributesTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/HtmlAttributesTest.php rename to core/modules/system/src/Tests/Theme/HtmlAttributesTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/RegistryTest.php b/core/modules/system/src/Tests/Theme/RegistryTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/RegistryTest.php rename to core/modules/system/src/Tests/Theme/RegistryTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TableTest.php b/core/modules/system/src/Tests/Theme/TableTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TableTest.php rename to core/modules/system/src/Tests/Theme/TableTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeEarlyInitializationTest.php b/core/modules/system/src/Tests/Theme/ThemeEarlyInitializationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeEarlyInitializationTest.php rename to core/modules/system/src/Tests/Theme/ThemeEarlyInitializationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeInfoStylesTest.php b/core/modules/system/src/Tests/Theme/ThemeInfoStylesTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeInfoStylesTest.php rename to core/modules/system/src/Tests/Theme/ThemeInfoStylesTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeSettingsTest.php b/core/modules/system/src/Tests/Theme/ThemeSettingsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeSettingsTest.php rename to core/modules/system/src/Tests/Theme/ThemeSettingsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeSuggestionsAlterTest.php b/core/modules/system/src/Tests/Theme/ThemeSuggestionsAlterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeSuggestionsAlterTest.php rename to core/modules/system/src/Tests/Theme/ThemeSuggestionsAlterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTest.php b/core/modules/system/src/Tests/Theme/ThemeTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTest.php rename to core/modules/system/src/Tests/Theme/ThemeTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTestPhpTemplate.php b/core/modules/system/src/Tests/Theme/ThemeTestPhpTemplate.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTestPhpTemplate.php rename to core/modules/system/src/Tests/Theme/ThemeTestPhpTemplate.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTestTwig.php b/core/modules/system/src/Tests/Theme/ThemeTestTwig.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/ThemeTestTwig.php rename to core/modules/system/src/Tests/Theme/ThemeTestTwig.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigDebugMarkupTest.php b/core/modules/system/src/Tests/Theme/TwigDebugMarkupTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigDebugMarkupTest.php rename to core/modules/system/src/Tests/Theme/TwigDebugMarkupTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigExtensionTest.php b/core/modules/system/src/Tests/Theme/TwigExtensionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigExtensionTest.php rename to core/modules/system/src/Tests/Theme/TwigExtensionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigFilterTest.php b/core/modules/system/src/Tests/Theme/TwigFilterTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigFilterTest.php rename to core/modules/system/src/Tests/Theme/TwigFilterTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigNamespaceTest.php b/core/modules/system/src/Tests/Theme/TwigNamespaceTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigNamespaceTest.php rename to core/modules/system/src/Tests/Theme/TwigNamespaceTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigRawTest.php b/core/modules/system/src/Tests/Theme/TwigRawTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigRawTest.php rename to core/modules/system/src/Tests/Theme/TwigRawTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigSettingsTest.php b/core/modules/system/src/Tests/Theme/TwigSettingsTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigSettingsTest.php rename to core/modules/system/src/Tests/Theme/TwigSettingsTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Theme/TwigTransTest.php b/core/modules/system/src/Tests/Theme/TwigTransTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Theme/TwigTransTest.php rename to core/modules/system/src/Tests/Theme/TwigTransTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Transliteration/TransliterationTest.php b/core/modules/system/src/Tests/Transliteration/TransliterationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Transliteration/TransliterationTest.php rename to core/modules/system/src/Tests/Transliteration/TransliterationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/TypedData/TypedDataDefinitionTest.php b/core/modules/system/src/Tests/TypedData/TypedDataDefinitionTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/TypedData/TypedDataDefinitionTest.php rename to core/modules/system/src/Tests/TypedData/TypedDataDefinitionTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/TypedData/TypedDataTest.php b/core/modules/system/src/Tests/TypedData/TypedDataTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/TypedData/TypedDataTest.php rename to core/modules/system/src/Tests/TypedData/TypedDataTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/DependencyHookInvocationTest.php b/core/modules/system/src/Tests/Update/DependencyHookInvocationTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/DependencyHookInvocationTest.php rename to core/modules/system/src/Tests/Update/DependencyHookInvocationTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/DependencyMissingTest.php b/core/modules/system/src/Tests/Update/DependencyMissingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/DependencyMissingTest.php rename to core/modules/system/src/Tests/Update/DependencyMissingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/DependencyOrderingTest.php b/core/modules/system/src/Tests/Update/DependencyOrderingTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/DependencyOrderingTest.php rename to core/modules/system/src/Tests/Update/DependencyOrderingTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/InvalidUpdateHook.php b/core/modules/system/src/Tests/Update/InvalidUpdateHook.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/InvalidUpdateHook.php rename to core/modules/system/src/Tests/Update/InvalidUpdateHook.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/UpdateScriptTest.php b/core/modules/system/src/Tests/Update/UpdateScriptTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/UpdateScriptTest.php rename to core/modules/system/src/Tests/Update/UpdateScriptTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Update/UpdatesWith7x.php b/core/modules/system/src/Tests/Update/UpdatesWith7x.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Update/UpdatesWith7x.php rename to core/modules/system/src/Tests/Update/UpdatesWith7x.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Validation/AllowedValuesConstraintValidatorTest.php b/core/modules/system/src/Tests/Validation/AllowedValuesConstraintValidatorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Validation/AllowedValuesConstraintValidatorTest.php rename to core/modules/system/src/Tests/Validation/AllowedValuesConstraintValidatorTest.php diff --git a/core/modules/system/lib/Drupal/system/Tests/Validation/ComplexDataConstraintValidatorTest.php b/core/modules/system/src/Tests/Validation/ComplexDataConstraintValidatorTest.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Tests/Validation/ComplexDataConstraintValidatorTest.php rename to core/modules/system/src/Tests/Validation/ComplexDataConstraintValidatorTest.php diff --git a/core/modules/system/lib/Drupal/system/Theme/BatchNegotiator.php b/core/modules/system/src/Theme/BatchNegotiator.php similarity index 100% rename from core/modules/system/lib/Drupal/system/Theme/BatchNegotiator.php rename to core/modules/system/src/Theme/BatchNegotiator.php diff --git a/core/modules/system/tests/modules/action_test/lib/Drupal/action_test/Plugin/Action/NoType.php b/core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php similarity index 100% rename from core/modules/system/tests/modules/action_test/lib/Drupal/action_test/Plugin/Action/NoType.php rename to core/modules/system/tests/modules/action_test/src/Plugin/Action/NoType.php diff --git a/core/modules/system/tests/modules/action_test/lib/Drupal/action_test/Plugin/Action/SaveEntity.php b/core/modules/system/tests/modules/action_test/src/Plugin/Action/SaveEntity.php similarity index 100% rename from core/modules/system/tests/modules/action_test/lib/Drupal/action_test/Plugin/Action/SaveEntity.php rename to core/modules/system/tests/modules/action_test/src/Plugin/Action/SaveEntity.php diff --git a/core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Callbacks.php b/core/modules/system/tests/modules/ajax_forms_test/src/Callbacks.php similarity index 100% rename from core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Callbacks.php rename to core/modules/system/tests/modules/ajax_forms_test/src/Callbacks.php diff --git a/core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestCommandsForm.php b/core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestCommandsForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestCommandsForm.php rename to core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestCommandsForm.php diff --git a/core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestLazyLoadForm.php b/core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestLazyLoadForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestLazyLoadForm.php rename to core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestLazyLoadForm.php diff --git a/core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestSimpleForm.php b/core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestSimpleForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestSimpleForm.php rename to core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestSimpleForm.php diff --git a/core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestValidationForm.php b/core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestValidationForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_forms_test/lib/Drupal/ajax_forms_test/Form/AjaxFormsTestValidationForm.php rename to core/modules/system/tests/modules/ajax_forms_test/src/Form/AjaxFormsTestValidationForm.php diff --git a/core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Controller/AjaxTestController.php b/core/modules/system/tests/modules/ajax_test/src/Controller/AjaxTestController.php similarity index 100% rename from core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Controller/AjaxTestController.php rename to core/modules/system/tests/modules/ajax_test/src/Controller/AjaxTestController.php diff --git a/core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Form/AjaxTestDialogForm.php b/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Form/AjaxTestDialogForm.php rename to core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php diff --git a/core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Form/AjaxTestForm.php b/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestForm.php similarity index 100% rename from core/modules/system/tests/modules/ajax_test/lib/Drupal/ajax_test/Form/AjaxTestForm.php rename to core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestForm.php diff --git a/core/modules/system/tests/modules/batch_test/lib/Drupal/batch_test/Controller/BatchTestController.php b/core/modules/system/tests/modules/batch_test/src/Controller/BatchTestController.php similarity index 100% rename from core/modules/system/tests/modules/batch_test/lib/Drupal/batch_test/Controller/BatchTestController.php rename to core/modules/system/tests/modules/batch_test/src/Controller/BatchTestController.php diff --git a/core/modules/system/tests/modules/batch_test/lib/Drupal/batch_test/Form/BatchTestForm.php b/core/modules/system/tests/modules/batch_test/src/Form/BatchTestForm.php similarity index 100% rename from core/modules/system/tests/modules/batch_test/lib/Drupal/batch_test/Form/BatchTestForm.php rename to core/modules/system/tests/modules/batch_test/src/Form/BatchTestForm.php diff --git a/core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php b/core/modules/system/tests/modules/common_test/src/Controller/CommonTestController.php similarity index 100% rename from core/modules/system/tests/modules/common_test/lib/Drupal/common_test/Controller/CommonTestController.php rename to core/modules/system/tests/modules/common_test/src/Controller/CommonTestController.php diff --git a/core/modules/system/tests/modules/condition_test/lib/Drupal/condition_test/FormController.php b/core/modules/system/tests/modules/condition_test/src/FormController.php similarity index 100% rename from core/modules/system/tests/modules/condition_test/lib/Drupal/condition_test/FormController.php rename to core/modules/system/tests/modules/condition_test/src/FormController.php diff --git a/core/modules/system/tests/modules/database_test/lib/Drupal/database_test/Controller/DatabaseTestController.php b/core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php similarity index 100% rename from core/modules/system/tests/modules/database_test/lib/Drupal/database_test/Controller/DatabaseTestController.php rename to core/modules/system/tests/modules/database_test/src/Controller/DatabaseTestController.php diff --git a/core/modules/system/tests/modules/database_test/lib/Drupal/database_test/Form/DatabaseTestForm.php b/core/modules/system/tests/modules/database_test/src/Form/DatabaseTestForm.php similarity index 100% rename from core/modules/system/tests/modules/database_test/lib/Drupal/database_test/Form/DatabaseTestForm.php rename to core/modules/system/tests/modules/database_test/src/Form/DatabaseTestForm.php diff --git a/core/modules/system/tests/modules/entity_cache_test_dependency/lib/Drupal/entity_cache_test_dependency/Entity/EntityCacheTest.php b/core/modules/system/tests/modules/entity_cache_test_dependency/src/Entity/EntityCacheTest.php similarity index 100% rename from core/modules/system/tests/modules/entity_cache_test_dependency/lib/Drupal/entity_cache_test_dependency/Entity/EntityCacheTest.php rename to core/modules/system/tests/modules/entity_cache_test_dependency/src/Entity/EntityCacheTest.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Controller/EntityTestController.php b/core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Controller/EntityTestController.php rename to core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTest.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestBaseFieldDisplay.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestBaseFieldDisplay.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestCache.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestCache.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestCache.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestCache.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestDefaultAccess.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestDefaultAccess.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestDefaultAccess.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestDefaultAccess.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestLabel.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestLabel.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestLabel.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestLabel.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestLabelCallback.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestLabelCallback.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestLabelCallback.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestLabelCallback.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMul.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMul.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMulRev.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestNoLabel.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestNoLabel.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php b/core/modules/system/tests/modules/entity_test/src/Entity/EntityTestRev.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php rename to core/modules/system/tests/modules/entity_test/src/Entity/EntityTestRev.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestAccessController.php b/core/modules/system/tests/modules/entity_test/src/EntityTestAccessController.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestAccessController.php rename to core/modules/system/tests/modules/entity_test/src/EntityTestAccessController.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestDeleteForm.php b/core/modules/system/tests/modules/entity_test/src/EntityTestDeleteForm.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestDeleteForm.php rename to core/modules/system/tests/modules/entity_test/src/EntityTestDeleteForm.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestForm.php b/core/modules/system/tests/modules/entity_test/src/EntityTestForm.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestForm.php rename to core/modules/system/tests/modules/entity_test/src/EntityTestForm.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestListBuilder.php b/core/modules/system/tests/modules/entity_test/src/EntityTestListBuilder.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestListBuilder.php rename to core/modules/system/tests/modules/entity_test/src/EntityTestListBuilder.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestViewBuilder.php b/core/modules/system/tests/modules/entity_test/src/EntityTestViewBuilder.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/EntityTestViewBuilder.php rename to core/modules/system/tests/modules/entity_test/src/EntityTestViewBuilder.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Plugin/Derivative/EntityTestLocalTasks.php b/core/modules/system/tests/modules/entity_test/src/Plugin/Derivative/EntityTestLocalTasks.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Plugin/Derivative/EntityTestLocalTasks.php rename to core/modules/system/tests/modules/entity_test/src/Plugin/Derivative/EntityTestLocalTasks.php diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Routing/EntityTestRoutes.php b/core/modules/system/tests/modules/entity_test/src/Routing/EntityTestRoutes.php similarity index 100% rename from core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Routing/EntityTestRoutes.php rename to core/modules/system/tests/modules/entity_test/src/Routing/EntityTestRoutes.php diff --git a/core/modules/system/tests/modules/error_test/lib/Drupal/error_test/Controller/ErrorTestController.php b/core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php similarity index 100% rename from core/modules/system/tests/modules/error_test/lib/Drupal/error_test/Controller/ErrorTestController.php rename to core/modules/system/tests/modules/error_test/src/Controller/ErrorTestController.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/AutocompleteController.php b/core/modules/system/tests/modules/form_test/src/AutocompleteController.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/AutocompleteController.php rename to core/modules/system/tests/modules/form_test/src/AutocompleteController.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Callbacks.php b/core/modules/system/tests/modules/form_test/src/Callbacks.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Callbacks.php rename to core/modules/system/tests/modules/form_test/src/Callbacks.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/ConfirmFormArrayPathTestForm.php b/core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/ConfirmFormArrayPathTestForm.php rename to core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/ConfirmFormTestForm.php b/core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/ConfirmFormTestForm.php rename to core/modules/system/tests/modules/form_test/src/ConfirmFormTestForm.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Controller/FormTestController.php b/core/modules/system/tests/modules/form_test/src/Controller/FormTestController.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Controller/FormTestController.php rename to core/modules/system/tests/modules/form_test/src/Controller/FormTestController.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/EventSubscriber/FormTestEventSubscriber.php b/core/modules/system/tests/modules/form_test/src/EventSubscriber/FormTestEventSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/EventSubscriber/FormTestEventSubscriber.php rename to core/modules/system/tests/modules/form_test/src/EventSubscriber/FormTestEventSubscriber.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Form/FormTestForm.php b/core/modules/system/tests/modules/form_test/src/Form/FormTestForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Form/FormTestForm.php rename to core/modules/system/tests/modules/form_test/src/Form/FormTestForm.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Form/RedirectBlockForm.php b/core/modules/system/tests/modules/form_test/src/Form/RedirectBlockForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Form/RedirectBlockForm.php rename to core/modules/system/tests/modules/form_test/src/Form/RedirectBlockForm.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestArgumentsObject.php b/core/modules/system/tests/modules/form_test/src/FormTestArgumentsObject.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestArgumentsObject.php rename to core/modules/system/tests/modules/form_test/src/FormTestArgumentsObject.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestAutocompleteForm.php b/core/modules/system/tests/modules/form_test/src/FormTestAutocompleteForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestAutocompleteForm.php rename to core/modules/system/tests/modules/form_test/src/FormTestAutocompleteForm.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestControllerObject.php b/core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestControllerObject.php rename to core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestObject.php b/core/modules/system/tests/modules/form_test/src/FormTestObject.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestObject.php rename to core/modules/system/tests/modules/form_test/src/FormTestObject.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestServiceObject.php b/core/modules/system/tests/modules/form_test/src/FormTestServiceObject.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/FormTestServiceObject.php rename to core/modules/system/tests/modules/form_test/src/FormTestServiceObject.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Plugin/Block/RedirectFormBlock.php b/core/modules/system/tests/modules/form_test/src/Plugin/Block/RedirectFormBlock.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/Plugin/Block/RedirectFormBlock.php rename to core/modules/system/tests/modules/form_test/src/Plugin/Block/RedirectFormBlock.php diff --git a/core/modules/system/tests/modules/form_test/lib/Drupal/form_test/SystemConfigFormTestForm.php b/core/modules/system/tests/modules/form_test/src/SystemConfigFormTestForm.php similarity index 100% rename from core/modules/system/tests/modules/form_test/lib/Drupal/form_test/SystemConfigFormTestForm.php rename to core/modules/system/tests/modules/form_test/src/SystemConfigFormTestForm.php diff --git a/core/modules/system/tests/modules/image_test/lib/Drupal/image_test/Plugin/ImageToolkit/BrokenToolkit.php b/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/BrokenToolkit.php similarity index 100% rename from core/modules/system/tests/modules/image_test/lib/Drupal/image_test/Plugin/ImageToolkit/BrokenToolkit.php rename to core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/BrokenToolkit.php diff --git a/core/modules/system/tests/modules/image_test/lib/Drupal/image_test/Plugin/ImageToolkit/TestToolkit.php b/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/TestToolkit.php similarity index 100% rename from core/modules/system/tests/modules/image_test/lib/Drupal/image_test/Plugin/ImageToolkit/TestToolkit.php rename to core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/TestToolkit.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Controller/MenuTestController.php b/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Controller/MenuTestController.php rename to core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/EventSubscriber/MaintenanceModeSubscriber.php b/core/modules/system/tests/modules/menu_test/src/EventSubscriber/MaintenanceModeSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/EventSubscriber/MaintenanceModeSubscriber.php rename to core/modules/system/tests/modules/menu_test/src/EventSubscriber/MaintenanceModeSubscriber.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Derivative/LocalTaskTest.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Derivative/LocalTaskTest.php rename to core/modules/system/tests/modules/menu_test/src/Plugin/Derivative/LocalTaskTest.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalAction/TestLocalAction.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalAction/TestLocalAction.php rename to core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalAction/TestLocalAction4.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction4.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalAction/TestLocalAction4.php rename to core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalAction/TestLocalAction4.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php b/core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php rename to core/modules/system/tests/modules/menu_test/src/Plugin/Menu/LocalTask/TestTasksSettingsSub1.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/TestControllers.php b/core/modules/system/tests/modules/menu_test/src/TestControllers.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/TestControllers.php rename to core/modules/system/tests/modules/menu_test/src/TestControllers.php diff --git a/core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Theme/TestThemeNegotiator.php b/core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php similarity index 100% rename from core/modules/system/tests/modules/menu_test/lib/Drupal/menu_test/Theme/TestThemeNegotiator.php rename to core/modules/system/tests/modules/menu_test/src/Theme/TestThemeNegotiator.php diff --git a/core/modules/system/tests/modules/module_autoload_test/lib/Drupal/module_autoload_test/SomeClass.php b/core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php similarity index 100% rename from core/modules/system/tests/modules/module_autoload_test/lib/Drupal/module_autoload_test/SomeClass.php rename to core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php diff --git a/core/modules/system/tests/modules/module_test/lib/Drupal/module_test/Controller/ModuleTestController.php b/core/modules/system/tests/modules/module_test/src/Controller/ModuleTestController.php similarity index 100% rename from core/modules/system/tests/modules/module_test/lib/Drupal/module_test/Controller/ModuleTestController.php rename to core/modules/system/tests/modules/module_test/src/Controller/ModuleTestController.php diff --git a/core/modules/system/tests/modules/paramconverter_test/lib/Drupal/paramconverter_test/TestControllers.php b/core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php similarity index 100% rename from core/modules/system/tests/modules/paramconverter_test/lib/Drupal/paramconverter_test/TestControllers.php rename to core/modules/system/tests/modules/paramconverter_test/src/TestControllers.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Controller/PluginTest.php b/core/modules/system/tests/modules/plugin_test/src/Controller/PluginTest.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Controller/PluginTest.php rename to core/modules/system/tests/modules/plugin_test/src/Controller/PluginTest.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/CustomDirectoryExample1.php b/core/modules/system/tests/modules/plugin_test/src/CustomDirectoryExample1.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/CustomDirectoryExample1.php rename to core/modules/system/tests/modules/plugin_test/src/CustomDirectoryExample1.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/CustomDirectoryExample2.php b/core/modules/system/tests/modules/plugin_test/src/CustomDirectoryExample2.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/CustomDirectoryExample2.php rename to core/modules/system/tests/modules/plugin_test/src/CustomDirectoryExample2.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/AlterDecoratorTestPluginManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/AlterDecoratorTestPluginManager.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/AlterDecoratorTestPluginManager.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/AlterDecoratorTestPluginManager.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/Annotation/PluginExample.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/Annotation/PluginExample.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/CachedMockBlockManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/CachedMockBlockManager.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/CachedMockBlockManager.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/CachedMockBlockManager.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/DefaultsTestPluginManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/DefaultsTestPluginManager.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/DefaultsTestPluginManager.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/DefaultsTestPluginManager.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/MockBlockManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/MockBlockManager.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/TestPluginBag.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginBag.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/TestPluginBag.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginBag.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/TestPluginManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/TestPluginManager.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/custom_annotation/Example1.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example1.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/custom_annotation/Example1.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example1.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/custom_annotation/Example2.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example2.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/custom_annotation/Example2.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/custom_annotation/Example2.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Apple.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Apple.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Apple.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Apple.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Banana.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Banana.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Banana.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Banana.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Cherry.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Cherry.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Cherry.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Cherry.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/NonAnnotatedClass.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/NonAnnotatedClass.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/NonAnnotatedClass.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/NonAnnotatedClass.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Orange.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Orange.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/Orange.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/Orange.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/README.txt b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/README.txt similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/fruit/README.txt rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/fruit/README.txt diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockComplexContextBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockComplexContextBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockComplexContextBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockLayoutBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockLayoutBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlockDeriver.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockMenuBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockMenuBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockMenuBlockDeriver.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockTestBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockTestBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockTestBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockTestBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockUserLoginBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockUserLoginBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockUserLoginBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockUserLoginBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockUserNameBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockUserNameBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/MockUserNameBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockUserNameBlock.php diff --git a/core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/TypedDataStringBlock.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php similarity index 100% rename from core/modules/system/tests/modules/plugin_test/lib/Drupal/plugin_test/Plugin/plugin_test/mock_block/TypedDataStringBlock.php rename to core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/TypedDataStringBlock.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/Access/DefinedTestAccessCheck.php b/core/modules/system/tests/modules/router_test_directory/src/Access/DefinedTestAccessCheck.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/Access/DefinedTestAccessCheck.php rename to core/modules/system/tests/modules/router_test_directory/src/Access/DefinedTestAccessCheck.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/Access/TestAccessCheck.php b/core/modules/system/tests/modules/router_test_directory/src/Access/TestAccessCheck.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/Access/TestAccessCheck.php rename to core/modules/system/tests/modules/router_test_directory/src/Access/TestAccessCheck.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/RouteTestSubscriber.php b/core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/RouteTestSubscriber.php rename to core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/RouterTestServiceProvider.php b/core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/RouterTestServiceProvider.php rename to core/modules/system/tests/modules/router_test_directory/src/RouterTestServiceProvider.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/TestContent.php b/core/modules/system/tests/modules/router_test_directory/src/TestContent.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/TestContent.php rename to core/modules/system/tests/modules/router_test_directory/src/TestContent.php diff --git a/core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/TestControllers.php b/core/modules/system/tests/modules/router_test_directory/src/TestControllers.php similarity index 100% rename from core/modules/system/tests/modules/router_test_directory/lib/Drupal/router_test/TestControllers.php rename to core/modules/system/tests/modules/router_test_directory/src/TestControllers.php diff --git a/core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/ServiceProviderTestServiceProvider.php b/core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php similarity index 100% rename from core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/ServiceProviderTestServiceProvider.php rename to core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php diff --git a/core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/TestClass.php b/core/modules/system/tests/modules/service_provider_test/src/TestClass.php similarity index 100% rename from core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/TestClass.php rename to core/modules/system/tests/modules/service_provider_test/src/TestClass.php diff --git a/core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/TestFileUsage.php b/core/modules/system/tests/modules/service_provider_test/src/TestFileUsage.php similarity index 100% rename from core/modules/system/tests/modules/service_provider_test/lib/Drupal/service_provider_test/TestFileUsage.php rename to core/modules/system/tests/modules/service_provider_test/src/TestFileUsage.php diff --git a/core/modules/system/tests/modules/session_test/lib/Drupal/session_test/Controller/SessionTestController.php b/core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php similarity index 100% rename from core/modules/system/tests/modules/session_test/lib/Drupal/session_test/Controller/SessionTestController.php rename to core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php diff --git a/core/modules/system/tests/modules/session_test/lib/Drupal/session_test/EventSubscriber/SessionTestSubscriber.php b/core/modules/system/tests/modules/session_test/src/EventSubscriber/SessionTestSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/session_test/lib/Drupal/session_test/EventSubscriber/SessionTestSubscriber.php rename to core/modules/system/tests/modules/session_test/src/EventSubscriber/SessionTestSubscriber.php diff --git a/core/modules/system/tests/modules/session_test/lib/Drupal/session_test/Form/SessionTestForm.php b/core/modules/system/tests/modules/session_test/src/Form/SessionTestForm.php similarity index 100% rename from core/modules/system/tests/modules/session_test/lib/Drupal/session_test/Form/SessionTestForm.php rename to core/modules/system/tests/modules/session_test/src/Form/SessionTestForm.php diff --git a/core/modules/system/tests/modules/system_mail_failure_test/lib/Drupal/system_mail_failure_test/Plugin/Mail/TestPhpMailFailure.php b/core/modules/system/tests/modules/system_mail_failure_test/src/Plugin/Mail/TestPhpMailFailure.php similarity index 100% rename from core/modules/system/tests/modules/system_mail_failure_test/lib/Drupal/system_mail_failure_test/Plugin/Mail/TestPhpMailFailure.php rename to core/modules/system/tests/modules/system_mail_failure_test/src/Plugin/Mail/TestPhpMailFailure.php diff --git a/core/modules/system/tests/modules/system_module_test/lib/Drupal/system_module_test/EventSubscriber/HtmlPageSubscriber.php b/core/modules/system/tests/modules/system_module_test/src/EventSubscriber/HtmlPageSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/system_module_test/lib/Drupal/system_module_test/EventSubscriber/HtmlPageSubscriber.php rename to core/modules/system/tests/modules/system_module_test/src/EventSubscriber/HtmlPageSubscriber.php diff --git a/core/modules/system/tests/modules/system_test/lib/Drupal/system_test/Controller/PageCacheAcceptHeaderController.php b/core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php similarity index 100% rename from core/modules/system/tests/modules/system_test/lib/Drupal/system_test/Controller/PageCacheAcceptHeaderController.php rename to core/modules/system/tests/modules/system_test/src/Controller/PageCacheAcceptHeaderController.php diff --git a/core/modules/system/tests/modules/system_test/lib/Drupal/system_test/Controller/SystemTestController.php b/core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php similarity index 100% rename from core/modules/system/tests/modules/system_test/lib/Drupal/system_test/Controller/SystemTestController.php rename to core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php diff --git a/core/modules/system/tests/modules/system_test/lib/Drupal/system_test/MockFileTransfer.php b/core/modules/system/tests/modules/system_test/src/MockFileTransfer.php similarity index 100% rename from core/modules/system/tests/modules/system_test/lib/Drupal/system_test/MockFileTransfer.php rename to core/modules/system/tests/modules/system_test/src/MockFileTransfer.php diff --git a/core/modules/system/tests/modules/test_page_test/lib/Drupal/test_page_test/Controller/Test.php b/core/modules/system/tests/modules/test_page_test/src/Controller/Test.php similarity index 100% rename from core/modules/system/tests/modules/test_page_test/lib/Drupal/test_page_test/Controller/Test.php rename to core/modules/system/tests/modules/test_page_test/src/Controller/Test.php diff --git a/core/modules/system/tests/modules/test_page_test/lib/Drupal/test_page_test/Controller/TestPageTestController.php b/core/modules/system/tests/modules/test_page_test/src/Controller/TestPageTestController.php similarity index 100% rename from core/modules/system/tests/modules/test_page_test/lib/Drupal/test_page_test/Controller/TestPageTestController.php rename to core/modules/system/tests/modules/test_page_test/src/Controller/TestPageTestController.php diff --git a/core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/EventSubscriber/ThemeTestSubscriber.php b/core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php similarity index 100% rename from core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/EventSubscriber/ThemeTestSubscriber.php rename to core/modules/system/tests/modules/theme_test/src/EventSubscriber/ThemeTestSubscriber.php diff --git a/core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/Theme/CustomThemeNegotiator.php b/core/modules/system/tests/modules/theme_test/src/Theme/CustomThemeNegotiator.php similarity index 100% rename from core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/Theme/CustomThemeNegotiator.php rename to core/modules/system/tests/modules/theme_test/src/Theme/CustomThemeNegotiator.php diff --git a/core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/Theme/HighPriorityThemeNegotiator.php b/core/modules/system/tests/modules/theme_test/src/Theme/HighPriorityThemeNegotiator.php similarity index 100% rename from core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/Theme/HighPriorityThemeNegotiator.php rename to core/modules/system/tests/modules/theme_test/src/Theme/HighPriorityThemeNegotiator.php diff --git a/core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/ThemeTestController.php b/core/modules/system/tests/modules/theme_test/src/ThemeTestController.php similarity index 100% rename from core/modules/system/tests/modules/theme_test/lib/Drupal/theme_test/ThemeTestController.php rename to core/modules/system/tests/modules/theme_test/src/ThemeTestController.php diff --git a/core/modules/system/tests/modules/twig_extension_test/lib/Drupal/twig_extension_test/TwigExtension/TestExtension.php b/core/modules/system/tests/modules/twig_extension_test/src/TwigExtension/TestExtension.php similarity index 100% rename from core/modules/system/tests/modules/twig_extension_test/lib/Drupal/twig_extension_test/TwigExtension/TestExtension.php rename to core/modules/system/tests/modules/twig_extension_test/src/TwigExtension/TestExtension.php diff --git a/core/modules/system/tests/modules/twig_extension_test/lib/Drupal/twig_extension_test/TwigExtensionTestController.php b/core/modules/system/tests/modules/twig_extension_test/src/TwigExtensionTestController.php similarity index 100% rename from core/modules/system/tests/modules/twig_extension_test/lib/Drupal/twig_extension_test/TwigExtensionTestController.php rename to core/modules/system/tests/modules/twig_extension_test/src/TwigExtensionTestController.php diff --git a/core/modules/system/tests/modules/twig_theme_test/lib/Drupal/twig_theme_test/TwigThemeTestController.php b/core/modules/system/tests/modules/twig_theme_test/src/TwigThemeTestController.php similarity index 100% rename from core/modules/system/tests/modules/twig_theme_test/lib/Drupal/twig_theme_test/TwigThemeTestController.php rename to core/modules/system/tests/modules/twig_theme_test/src/TwigThemeTestController.php diff --git a/core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/Controller/URLAlterTestController.php b/core/modules/system/tests/modules/url_alter_test/src/Controller/URLAlterTestController.php similarity index 100% rename from core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/Controller/URLAlterTestController.php rename to core/modules/system/tests/modules/url_alter_test/src/Controller/URLAlterTestController.php diff --git a/core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/PathProcessor.php b/core/modules/system/tests/modules/url_alter_test/src/PathProcessor.php similarity index 100% rename from core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/PathProcessor.php rename to core/modules/system/tests/modules/url_alter_test/src/PathProcessor.php diff --git a/core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/PathProcessorTest.php b/core/modules/system/tests/modules/url_alter_test/src/PathProcessorTest.php similarity index 100% rename from core/modules/system/tests/modules/url_alter_test/lib/Drupal/url_alter_test/PathProcessorTest.php rename to core/modules/system/tests/modules/url_alter_test/src/PathProcessorTest.php diff --git a/core/modules/system/tests/Drupal/system/Tests/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php b/core/modules/system/tests/src/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php similarity index 100% rename from core/modules/system/tests/Drupal/system/Tests/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php rename to core/modules/system/tests/src/Breadcrumbs/PathBasedBreadcrumbBuilderTest.php diff --git a/core/modules/system/tests/Drupal/system/Tests/Controller/SystemControllerTest.php b/core/modules/system/tests/src/Controller/SystemControllerTest.php similarity index 100% rename from core/modules/system/tests/Drupal/system/Tests/Controller/SystemControllerTest.php rename to core/modules/system/tests/src/Controller/SystemControllerTest.php diff --git a/core/modules/system/tests/Drupal/system/Tests/Transliteration/MachineNameControllerTest.php b/core/modules/system/tests/src/Transliteration/MachineNameControllerTest.php similarity index 100% rename from core/modules/system/tests/Drupal/system/Tests/Transliteration/MachineNameControllerTest.php rename to core/modules/system/tests/src/Transliteration/MachineNameControllerTest.php diff --git a/core/modules/system/tests/themes/test_theme/lib/Drupal/test_theme/ThemeClass.php b/core/modules/system/tests/themes/test_theme/src/ThemeClass.php similarity index 100% rename from core/modules/system/tests/themes/test_theme/lib/Drupal/test_theme/ThemeClass.php rename to core/modules/system/tests/themes/test_theme/src/ThemeClass.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TaxonomyController.php b/core/modules/taxonomy/src/Controller/TaxonomyController.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TaxonomyController.php rename to core/modules/taxonomy/src/Controller/TaxonomyController.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php b/core/modules/taxonomy/src/Controller/TermAutocompleteController.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Controller/TermAutocompleteController.php rename to core/modules/taxonomy/src/Controller/TermAutocompleteController.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php b/core/modules/taxonomy/src/Entity/Term.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php rename to core/modules/taxonomy/src/Entity/Term.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Vocabulary.php b/core/modules/taxonomy/src/Entity/Vocabulary.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Vocabulary.php rename to core/modules/taxonomy/src/Entity/Vocabulary.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php b/core/modules/taxonomy/src/Form/OverviewTerms.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php rename to core/modules/taxonomy/src/Form/OverviewTerms.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/TermDeleteForm.php b/core/modules/taxonomy/src/Form/TermDeleteForm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Form/TermDeleteForm.php rename to core/modules/taxonomy/src/Form/TermDeleteForm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyDeleteForm.php b/core/modules/taxonomy/src/Form/VocabularyDeleteForm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyDeleteForm.php rename to core/modules/taxonomy/src/Form/VocabularyDeleteForm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php b/core/modules/taxonomy/src/Form/VocabularyResetForm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Form/VocabularyResetForm.php rename to core/modules/taxonomy/src/Form/VocabularyResetForm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php b/core/modules/taxonomy/src/Plugin/Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php rename to core/modules/taxonomy/src/Plugin/Field/FieldFormatter/EntityReferenceTaxonomyTermRssFormatter.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/LinkFormatter.php b/core/modules/taxonomy/src/Plugin/Field/FieldFormatter/LinkFormatter.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/LinkFormatter.php rename to core/modules/taxonomy/src/Plugin/Field/FieldFormatter/LinkFormatter.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/PlainFormatter.php b/core/modules/taxonomy/src/Plugin/Field/FieldFormatter/PlainFormatter.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/PlainFormatter.php rename to core/modules/taxonomy/src/Plugin/Field/FieldFormatter/PlainFormatter.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php b/core/modules/taxonomy/src/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php rename to core/modules/taxonomy/src/Plugin/Field/FieldFormatter/RSSCategoryFormatter.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php b/core/modules/taxonomy/src/Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php rename to core/modules/taxonomy/src/Plugin/Field/FieldFormatter/TaxonomyFormatterBase.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php b/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php rename to core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceFieldItemList.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php b/core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php rename to core/modules/taxonomy/src/Plugin/Field/FieldType/TaxonomyTermReferenceItem.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php b/core/modules/taxonomy/src/Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php rename to core/modules/taxonomy/src/Plugin/Field/FieldWidget/TaxonomyAutocompleteWidget.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Validation/Constraint/TermParentConstraint.php b/core/modules/taxonomy/src/Plugin/Validation/Constraint/TermParentConstraint.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Validation/Constraint/TermParentConstraint.php rename to core/modules/taxonomy/src/Plugin/Validation/Constraint/TermParentConstraint.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Validation/Constraint/TermParentConstraintValidator.php b/core/modules/taxonomy/src/Plugin/Validation/Constraint/TermParentConstraintValidator.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/Validation/Constraint/TermParentConstraintValidator.php rename to core/modules/taxonomy/src/Plugin/Validation/Constraint/TermParentConstraintValidator.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/entity_reference/selection/TermSelection.php b/core/modules/taxonomy/src/Plugin/entity_reference/selection/TermSelection.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/entity_reference/selection/TermSelection.php rename to core/modules/taxonomy/src/Plugin/entity_reference/selection/TermSelection.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php b/core/modules/taxonomy/src/Plugin/views/argument/IndexTid.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTid.php rename to core/modules/taxonomy/src/Plugin/views/argument/IndexTid.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTidDepth.php b/core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTidDepth.php rename to core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepth.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTidDepthModifier.php b/core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepthModifier.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/IndexTidDepthModifier.php rename to core/modules/taxonomy/src/Plugin/views/argument/IndexTidDepthModifier.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/Taxonomy.php b/core/modules/taxonomy/src/Plugin/views/argument/Taxonomy.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/Taxonomy.php rename to core/modules/taxonomy/src/Plugin/views/argument/Taxonomy.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/VocabularyVid.php b/core/modules/taxonomy/src/Plugin/views/argument/VocabularyVid.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument/VocabularyVid.php rename to core/modules/taxonomy/src/Plugin/views/argument/VocabularyVid.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_default/Tid.php b/core/modules/taxonomy/src/Plugin/views/argument_default/Tid.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_default/Tid.php rename to core/modules/taxonomy/src/Plugin/views/argument_default/Tid.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_validator/Term.php b/core/modules/taxonomy/src/Plugin/views/argument_validator/Term.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_validator/Term.php rename to core/modules/taxonomy/src/Plugin/views/argument_validator/Term.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_validator/TermName.php b/core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/argument_validator/TermName.php rename to core/modules/taxonomy/src/Plugin/views/argument_validator/TermName.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Language.php b/core/modules/taxonomy/src/Plugin/views/field/Language.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Language.php rename to core/modules/taxonomy/src/Plugin/views/field/Language.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php b/core/modules/taxonomy/src/Plugin/views/field/LinkEdit.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php rename to core/modules/taxonomy/src/Plugin/views/field/LinkEdit.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php b/core/modules/taxonomy/src/Plugin/views/field/Taxonomy.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/Taxonomy.php rename to core/modules/taxonomy/src/Plugin/views/field/Taxonomy.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/TaxonomyIndexTid.php b/core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/TaxonomyIndexTid.php rename to core/modules/taxonomy/src/Plugin/views/field/TaxonomyIndexTid.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/filter/TaxonomyIndexTid.php b/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/filter/TaxonomyIndexTid.php rename to core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTid.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/filter/TaxonomyIndexTidDepth.php b/core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/filter/TaxonomyIndexTidDepth.php rename to core/modules/taxonomy/src/Plugin/views/filter/TaxonomyIndexTidDepth.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/relationship/NodeTermData.php b/core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/relationship/NodeTermData.php rename to core/modules/taxonomy/src/Plugin/views/relationship/NodeTermData.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/wizard/TaxonomyTerm.php b/core/modules/taxonomy/src/Plugin/views/wizard/TaxonomyTerm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/wizard/TaxonomyTerm.php rename to core/modules/taxonomy/src/Plugin/views/wizard/TaxonomyTerm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermAccessController.php b/core/modules/taxonomy/src/TermAccessController.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermAccessController.php rename to core/modules/taxonomy/src/TermAccessController.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermBreadcrumbBuilder.php b/core/modules/taxonomy/src/TermBreadcrumbBuilder.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermBreadcrumbBuilder.php rename to core/modules/taxonomy/src/TermBreadcrumbBuilder.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermForm.php b/core/modules/taxonomy/src/TermForm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermForm.php rename to core/modules/taxonomy/src/TermForm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermInterface.php b/core/modules/taxonomy/src/TermInterface.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermInterface.php rename to core/modules/taxonomy/src/TermInterface.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorage.php b/core/modules/taxonomy/src/TermStorage.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermStorage.php rename to core/modules/taxonomy/src/TermStorage.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageInterface.php b/core/modules/taxonomy/src/TermStorageInterface.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermStorageInterface.php rename to core/modules/taxonomy/src/TermStorageInterface.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php b/core/modules/taxonomy/src/TermTranslationHandler.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php rename to core/modules/taxonomy/src/TermTranslationHandler.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermViewBuilder.php b/core/modules/taxonomy/src/TermViewBuilder.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/TermViewBuilder.php rename to core/modules/taxonomy/src/TermViewBuilder.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/EfqTest.php b/core/modules/taxonomy/src/Tests/EfqTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/EfqTest.php rename to core/modules/taxonomy/src/Tests/EfqTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/LegacyTest.php b/core/modules/taxonomy/src/Tests/LegacyTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/LegacyTest.php rename to core/modules/taxonomy/src/Tests/LegacyTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/LoadMultipleTest.php b/core/modules/taxonomy/src/Tests/LoadMultipleTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/LoadMultipleTest.php rename to core/modules/taxonomy/src/Tests/LoadMultipleTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/RssTest.php b/core/modules/taxonomy/src/Tests/RssTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/RssTest.php rename to core/modules/taxonomy/src/Tests/RssTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyImageTest.php b/core/modules/taxonomy/src/Tests/TaxonomyImageTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyImageTest.php rename to core/modules/taxonomy/src/Tests/TaxonomyImageTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTermIndentationTest.php b/core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTermIndentationTest.php rename to core/modules/taxonomy/src/Tests/TaxonomyTermIndentationTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTermReferenceItemTest.php b/core/modules/taxonomy/src/Tests/TaxonomyTermReferenceItemTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTermReferenceItemTest.php rename to core/modules/taxonomy/src/Tests/TaxonomyTermReferenceItemTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTestBase.php b/core/modules/taxonomy/src/Tests/TaxonomyTestBase.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TaxonomyTestBase.php rename to core/modules/taxonomy/src/Tests/TaxonomyTestBase.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermCacheTagsTest.php b/core/modules/taxonomy/src/Tests/TermCacheTagsTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermCacheTagsTest.php rename to core/modules/taxonomy/src/Tests/TermCacheTagsTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermFieldMultipleVocabularyTest.php b/core/modules/taxonomy/src/Tests/TermFieldMultipleVocabularyTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermFieldMultipleVocabularyTest.php rename to core/modules/taxonomy/src/Tests/TermFieldMultipleVocabularyTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermFieldTest.php b/core/modules/taxonomy/src/Tests/TermFieldTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermFieldTest.php rename to core/modules/taxonomy/src/Tests/TermFieldTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermIndexTest.php b/core/modules/taxonomy/src/Tests/TermIndexTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermIndexTest.php rename to core/modules/taxonomy/src/Tests/TermIndexTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermLanguageTest.php b/core/modules/taxonomy/src/Tests/TermLanguageTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermLanguageTest.php rename to core/modules/taxonomy/src/Tests/TermLanguageTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php b/core/modules/taxonomy/src/Tests/TermTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php rename to core/modules/taxonomy/src/Tests/TermTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTranslationUITest.php b/core/modules/taxonomy/src/Tests/TermTranslationUITest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTranslationUITest.php rename to core/modules/taxonomy/src/Tests/TermTranslationUITest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php b/core/modules/taxonomy/src/Tests/TermUnitTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermUnitTest.php rename to core/modules/taxonomy/src/Tests/TermUnitTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermValidationTest.php b/core/modules/taxonomy/src/Tests/TermValidationTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermValidationTest.php rename to core/modules/taxonomy/src/Tests/TermValidationTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/ThemeTest.php b/core/modules/taxonomy/src/Tests/ThemeTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/ThemeTest.php rename to core/modules/taxonomy/src/Tests/ThemeTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TokenReplaceTest.php b/core/modules/taxonomy/src/Tests/TokenReplaceTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TokenReplaceTest.php rename to core/modules/taxonomy/src/Tests/TokenReplaceTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/RelationshipNodeTermDataTest.php b/core/modules/taxonomy/src/Tests/Views/RelationshipNodeTermDataTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/RelationshipNodeTermDataTest.php rename to core/modules/taxonomy/src/Tests/Views/RelationshipNodeTermDataTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/RelationshipRepresentativeNode.php b/core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNode.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/RelationshipRepresentativeNode.php rename to core/modules/taxonomy/src/Tests/Views/RelationshipRepresentativeNode.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyIndexTidUiTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyIndexTidUiTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyIndexTidUiTest.php rename to core/modules/taxonomy/src/Tests/Views/TaxonomyIndexTidUiTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyParentUITest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyParentUITest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyParentUITest.php rename to core/modules/taxonomy/src/Tests/Views/TaxonomyParentUITest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyTestBase.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyTestBase.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/Views/TaxonomyTestBase.php rename to core/modules/taxonomy/src/Tests/Views/TaxonomyTestBase.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyCrudTest.php b/core/modules/taxonomy/src/Tests/VocabularyCrudTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyCrudTest.php rename to core/modules/taxonomy/src/Tests/VocabularyCrudTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyLanguageTest.php b/core/modules/taxonomy/src/Tests/VocabularyLanguageTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyLanguageTest.php rename to core/modules/taxonomy/src/Tests/VocabularyLanguageTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyPermissionsTest.php b/core/modules/taxonomy/src/Tests/VocabularyPermissionsTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyPermissionsTest.php rename to core/modules/taxonomy/src/Tests/VocabularyPermissionsTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUiTest.php b/core/modules/taxonomy/src/Tests/VocabularyUiTest.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/Tests/VocabularyUiTest.php rename to core/modules/taxonomy/src/Tests/VocabularyUiTest.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyForm.php b/core/modules/taxonomy/src/VocabularyForm.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyForm.php rename to core/modules/taxonomy/src/VocabularyForm.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyInterface.php b/core/modules/taxonomy/src/VocabularyInterface.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyInterface.php rename to core/modules/taxonomy/src/VocabularyInterface.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListBuilder.php b/core/modules/taxonomy/src/VocabularyListBuilder.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListBuilder.php rename to core/modules/taxonomy/src/VocabularyListBuilder.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyStorage.php b/core/modules/taxonomy/src/VocabularyStorage.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyStorage.php rename to core/modules/taxonomy/src/VocabularyStorage.php diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyStorageInterface.php b/core/modules/taxonomy/src/VocabularyStorageInterface.php similarity index 100% rename from core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyStorageInterface.php rename to core/modules/taxonomy/src/VocabularyStorageInterface.php diff --git a/core/modules/taxonomy/tests/Drupal/taxonomy/Tests/Menu/TaxonomyLocalTasksTest.php b/core/modules/taxonomy/tests/src/Menu/TaxonomyLocalTasksTest.php similarity index 100% rename from core/modules/taxonomy/tests/Drupal/taxonomy/Tests/Menu/TaxonomyLocalTasksTest.php rename to core/modules/taxonomy/tests/src/Menu/TaxonomyLocalTasksTest.php diff --git a/core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php b/core/modules/telephone/src/Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php similarity index 100% rename from core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php rename to core/modules/telephone/src/Plugin/Field/FieldFormatter/TelephoneLinkFormatter.php diff --git a/core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldType/TelephoneItem.php b/core/modules/telephone/src/Plugin/Field/FieldType/TelephoneItem.php similarity index 100% rename from core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldType/TelephoneItem.php rename to core/modules/telephone/src/Plugin/Field/FieldType/TelephoneItem.php diff --git a/core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php b/core/modules/telephone/src/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php similarity index 100% rename from core/modules/telephone/lib/Drupal/telephone/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php rename to core/modules/telephone/src/Plugin/Field/FieldWidget/TelephoneDefaultWidget.php diff --git a/core/modules/telephone/lib/Drupal/telephone/Tests/TelephoneFieldTest.php b/core/modules/telephone/src/Tests/TelephoneFieldTest.php similarity index 100% rename from core/modules/telephone/lib/Drupal/telephone/Tests/TelephoneFieldTest.php rename to core/modules/telephone/src/Tests/TelephoneFieldTest.php diff --git a/core/modules/telephone/lib/Drupal/telephone/Tests/TelephoneItemTest.php b/core/modules/telephone/src/Tests/TelephoneItemTest.php similarity index 100% rename from core/modules/telephone/lib/Drupal/telephone/Tests/TelephoneItemTest.php rename to core/modules/telephone/src/Tests/TelephoneItemTest.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextDefaultFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextDefaultFormatter.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextDefaultFormatter.php rename to core/modules/text/src/Plugin/Field/FieldFormatter/TextDefaultFormatter.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php rename to core/modules/text/src/Plugin/Field/FieldFormatter/TextSummaryOrTrimmedFormatter.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php b/core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php rename to core/modules/text/src/Plugin/Field/FieldFormatter/TextTrimmedFormatter.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextItem.php b/core/modules/text/src/Plugin/Field/FieldType/TextItem.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextItem.php rename to core/modules/text/src/Plugin/Field/FieldType/TextItem.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextItemBase.php b/core/modules/text/src/Plugin/Field/FieldType/TextItemBase.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextItemBase.php rename to core/modules/text/src/Plugin/Field/FieldType/TextItemBase.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextLongItem.php b/core/modules/text/src/Plugin/Field/FieldType/TextLongItem.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextLongItem.php rename to core/modules/text/src/Plugin/Field/FieldType/TextLongItem.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextWithSummaryItem.php b/core/modules/text/src/Plugin/Field/FieldType/TextWithSummaryItem.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldType/TextWithSummaryItem.php rename to core/modules/text/src/Plugin/Field/FieldType/TextWithSummaryItem.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextareaWidget.php b/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextareaWidget.php rename to core/modules/text/src/Plugin/Field/FieldWidget/TextareaWidget.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php b/core/modules/text/src/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php rename to core/modules/text/src/Plugin/Field/FieldWidget/TextareaWithSummaryWidget.php diff --git a/core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextfieldWidget.php b/core/modules/text/src/Plugin/Field/FieldWidget/TextfieldWidget.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Plugin/Field/FieldWidget/TextfieldWidget.php rename to core/modules/text/src/Plugin/Field/FieldWidget/TextfieldWidget.php diff --git a/core/modules/text/lib/Drupal/text/Tests/Formatter/TextPlainUnitTest.php b/core/modules/text/src/Tests/Formatter/TextPlainUnitTest.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Tests/Formatter/TextPlainUnitTest.php rename to core/modules/text/src/Tests/Formatter/TextPlainUnitTest.php diff --git a/core/modules/text/lib/Drupal/text/Tests/TextFieldTest.php b/core/modules/text/src/Tests/TextFieldTest.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Tests/TextFieldTest.php rename to core/modules/text/src/Tests/TextFieldTest.php diff --git a/core/modules/text/lib/Drupal/text/Tests/TextSummaryTest.php b/core/modules/text/src/Tests/TextSummaryTest.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Tests/TextSummaryTest.php rename to core/modules/text/src/Tests/TextSummaryTest.php diff --git a/core/modules/text/lib/Drupal/text/Tests/TextWithSummaryItemTest.php b/core/modules/text/src/Tests/TextWithSummaryItemTest.php similarity index 100% rename from core/modules/text/lib/Drupal/text/Tests/TextWithSummaryItemTest.php rename to core/modules/text/src/Tests/TextWithSummaryItemTest.php diff --git a/core/modules/text/lib/Drupal/text/TextProcessed.php b/core/modules/text/src/TextProcessed.php similarity index 100% rename from core/modules/text/lib/Drupal/text/TextProcessed.php rename to core/modules/text/src/TextProcessed.php diff --git a/core/modules/toolbar/lib/Drupal/toolbar/Controller/ToolbarController.php b/core/modules/toolbar/src/Controller/ToolbarController.php similarity index 100% rename from core/modules/toolbar/lib/Drupal/toolbar/Controller/ToolbarController.php rename to core/modules/toolbar/src/Controller/ToolbarController.php diff --git a/core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarAdminMenuTest.php b/core/modules/toolbar/src/Tests/ToolbarAdminMenuTest.php similarity index 100% rename from core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarAdminMenuTest.php rename to core/modules/toolbar/src/Tests/ToolbarAdminMenuTest.php diff --git a/core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarHookToolbarTest.php b/core/modules/toolbar/src/Tests/ToolbarHookToolbarTest.php similarity index 100% rename from core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarHookToolbarTest.php rename to core/modules/toolbar/src/Tests/ToolbarHookToolbarTest.php diff --git a/core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarMenuTranslationTest.php b/core/modules/toolbar/src/Tests/ToolbarMenuTranslationTest.php similarity index 100% rename from core/modules/toolbar/lib/Drupal/toolbar/Tests/ToolbarMenuTranslationTest.php rename to core/modules/toolbar/src/Tests/ToolbarMenuTranslationTest.php diff --git a/core/modules/tour/lib/Drupal/tour/Annotation/Tip.php b/core/modules/tour/src/Annotation/Tip.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Annotation/Tip.php rename to core/modules/tour/src/Annotation/Tip.php diff --git a/core/modules/tour/lib/Drupal/tour/Entity/Tour.php b/core/modules/tour/src/Entity/Tour.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Entity/Tour.php rename to core/modules/tour/src/Entity/Tour.php diff --git a/core/modules/tour/lib/Drupal/tour/Plugin/tour/tip/TipPluginText.php b/core/modules/tour/src/Plugin/tour/tip/TipPluginText.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Plugin/tour/tip/TipPluginText.php rename to core/modules/tour/src/Plugin/tour/tip/TipPluginText.php diff --git a/core/modules/tour/lib/Drupal/tour/Tests/TourPluginTest.php b/core/modules/tour/src/Tests/TourPluginTest.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Tests/TourPluginTest.php rename to core/modules/tour/src/Tests/TourPluginTest.php diff --git a/core/modules/tour/lib/Drupal/tour/Tests/TourTest.php b/core/modules/tour/src/Tests/TourTest.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Tests/TourTest.php rename to core/modules/tour/src/Tests/TourTest.php diff --git a/core/modules/tour/lib/Drupal/tour/Tests/TourTestBase.php b/core/modules/tour/src/Tests/TourTestBase.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Tests/TourTestBase.php rename to core/modules/tour/src/Tests/TourTestBase.php diff --git a/core/modules/tour/lib/Drupal/tour/Tests/TourTestBasic.php b/core/modules/tour/src/Tests/TourTestBasic.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/Tests/TourTestBasic.php rename to core/modules/tour/src/Tests/TourTestBasic.php diff --git a/core/modules/tour/lib/Drupal/tour/TipPluginBase.php b/core/modules/tour/src/TipPluginBase.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TipPluginBase.php rename to core/modules/tour/src/TipPluginBase.php diff --git a/core/modules/tour/lib/Drupal/tour/TipPluginInterface.php b/core/modules/tour/src/TipPluginInterface.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TipPluginInterface.php rename to core/modules/tour/src/TipPluginInterface.php diff --git a/core/modules/tour/lib/Drupal/tour/TipPluginManager.php b/core/modules/tour/src/TipPluginManager.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TipPluginManager.php rename to core/modules/tour/src/TipPluginManager.php diff --git a/core/modules/tour/lib/Drupal/tour/TipsBag.php b/core/modules/tour/src/TipsBag.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TipsBag.php rename to core/modules/tour/src/TipsBag.php diff --git a/core/modules/tour/lib/Drupal/tour/TourInterface.php b/core/modules/tour/src/TourInterface.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TourInterface.php rename to core/modules/tour/src/TourInterface.php diff --git a/core/modules/tour/lib/Drupal/tour/TourViewBuilder.php b/core/modules/tour/src/TourViewBuilder.php similarity index 100% rename from core/modules/tour/lib/Drupal/tour/TourViewBuilder.php rename to core/modules/tour/src/TourViewBuilder.php diff --git a/core/modules/tour/tests/Drupal/tour/Tests/Entity/TourTest.php b/core/modules/tour/tests/src/Entity/TourTest.php similarity index 100% rename from core/modules/tour/tests/Drupal/tour/Tests/Entity/TourTest.php rename to core/modules/tour/tests/src/Entity/TourTest.php diff --git a/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php b/core/modules/tour/tests/tour_test/src/Controller/TourTestController.php similarity index 100% rename from core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Controller/TourTestController.php rename to core/modules/tour/tests/tour_test/src/Controller/TourTestController.php diff --git a/core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Plugin/tour/tip/TipPluginImage.php b/core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginImage.php similarity index 100% rename from core/modules/tour/tests/tour_test/lib/Drupal/tour_test/Plugin/tour/tip/TipPluginImage.php rename to core/modules/tour/tests/tour_test/src/Plugin/tour/tip/TipPluginImage.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Access/ViewOwnTrackerAccessCheck.php b/core/modules/tracker/src/Access/ViewOwnTrackerAccessCheck.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Access/ViewOwnTrackerAccessCheck.php rename to core/modules/tracker/src/Access/ViewOwnTrackerAccessCheck.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Controller/TrackerPage.php b/core/modules/tracker/src/Controller/TrackerPage.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Controller/TrackerPage.php rename to core/modules/tracker/src/Controller/TrackerPage.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Controller/TrackerUserRecent.php b/core/modules/tracker/src/Controller/TrackerUserRecent.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Controller/TrackerUserRecent.php rename to core/modules/tracker/src/Controller/TrackerUserRecent.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Controller/TrackerUserTab.php b/core/modules/tracker/src/Controller/TrackerUserTab.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Controller/TrackerUserTab.php rename to core/modules/tracker/src/Controller/TrackerUserTab.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Plugin/Menu/UserTrackerTab.php b/core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Plugin/Menu/UserTrackerTab.php rename to core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Plugin/views/argument/UserUid.php b/core/modules/tracker/src/Plugin/views/argument/UserUid.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Plugin/views/argument/UserUid.php rename to core/modules/tracker/src/Plugin/views/argument/UserUid.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Plugin/views/filter/UserUid.php b/core/modules/tracker/src/Plugin/views/filter/UserUid.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Plugin/views/filter/UserUid.php rename to core/modules/tracker/src/Plugin/views/filter/UserUid.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Tests/TrackerNodeAccessTest.php b/core/modules/tracker/src/Tests/TrackerNodeAccessTest.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Tests/TrackerNodeAccessTest.php rename to core/modules/tracker/src/Tests/TrackerNodeAccessTest.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Tests/TrackerTest.php b/core/modules/tracker/src/Tests/TrackerTest.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Tests/TrackerTest.php rename to core/modules/tracker/src/Tests/TrackerTest.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Tests/Views/TrackerTestBase.php b/core/modules/tracker/src/Tests/Views/TrackerTestBase.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Tests/Views/TrackerTestBase.php rename to core/modules/tracker/src/Tests/Views/TrackerTestBase.php diff --git a/core/modules/tracker/lib/Drupal/tracker/Tests/Views/TrackerUserUidTest.php b/core/modules/tracker/src/Tests/Views/TrackerUserUidTest.php similarity index 100% rename from core/modules/tracker/lib/Drupal/tracker/Tests/Views/TrackerUserUidTest.php rename to core/modules/tracker/src/Tests/Views/TrackerUserUidTest.php diff --git a/core/modules/update/lib/Drupal/update/Access/UpdateManagerAccessCheck.php b/core/modules/update/src/Access/UpdateManagerAccessCheck.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Access/UpdateManagerAccessCheck.php rename to core/modules/update/src/Access/UpdateManagerAccessCheck.php diff --git a/core/modules/update/lib/Drupal/update/Controller/UpdateController.php b/core/modules/update/src/Controller/UpdateController.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Controller/UpdateController.php rename to core/modules/update/src/Controller/UpdateController.php diff --git a/core/modules/update/lib/Drupal/update/Form/UpdateForm.php b/core/modules/update/src/Form/UpdateForm.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Form/UpdateForm.php rename to core/modules/update/src/Form/UpdateForm.php diff --git a/core/modules/update/lib/Drupal/update/Tests/UpdateContribTest.php b/core/modules/update/src/Tests/UpdateContribTest.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Tests/UpdateContribTest.php rename to core/modules/update/src/Tests/UpdateContribTest.php diff --git a/core/modules/update/lib/Drupal/update/Tests/UpdateCoreTest.php b/core/modules/update/src/Tests/UpdateCoreTest.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Tests/UpdateCoreTest.php rename to core/modules/update/src/Tests/UpdateCoreTest.php diff --git a/core/modules/update/lib/Drupal/update/Tests/UpdateTestBase.php b/core/modules/update/src/Tests/UpdateTestBase.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Tests/UpdateTestBase.php rename to core/modules/update/src/Tests/UpdateTestBase.php diff --git a/core/modules/update/lib/Drupal/update/Tests/UpdateUploadTest.php b/core/modules/update/src/Tests/UpdateUploadTest.php similarity index 100% rename from core/modules/update/lib/Drupal/update/Tests/UpdateUploadTest.php rename to core/modules/update/src/Tests/UpdateUploadTest.php diff --git a/core/modules/update/lib/Drupal/update/UpdateFetcher.php b/core/modules/update/src/UpdateFetcher.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateFetcher.php rename to core/modules/update/src/UpdateFetcher.php diff --git a/core/modules/update/lib/Drupal/update/UpdateFetcherInterface.php b/core/modules/update/src/UpdateFetcherInterface.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateFetcherInterface.php rename to core/modules/update/src/UpdateFetcherInterface.php diff --git a/core/modules/update/lib/Drupal/update/UpdateManager.php b/core/modules/update/src/UpdateManager.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateManager.php rename to core/modules/update/src/UpdateManager.php diff --git a/core/modules/update/lib/Drupal/update/UpdateManagerInterface.php b/core/modules/update/src/UpdateManagerInterface.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateManagerInterface.php rename to core/modules/update/src/UpdateManagerInterface.php diff --git a/core/modules/update/lib/Drupal/update/UpdateProcessor.php b/core/modules/update/src/UpdateProcessor.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateProcessor.php rename to core/modules/update/src/UpdateProcessor.php diff --git a/core/modules/update/lib/Drupal/update/UpdateProcessorInterface.php b/core/modules/update/src/UpdateProcessorInterface.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateProcessorInterface.php rename to core/modules/update/src/UpdateProcessorInterface.php diff --git a/core/modules/update/lib/Drupal/update/UpdateSettingsForm.php b/core/modules/update/src/UpdateSettingsForm.php similarity index 100% rename from core/modules/update/lib/Drupal/update/UpdateSettingsForm.php rename to core/modules/update/src/UpdateSettingsForm.php diff --git a/core/modules/update/tests/modules/update_test/lib/Drupal/update_test/Controller/UpdateTestController.php b/core/modules/update/tests/modules/update_test/src/Controller/UpdateTestController.php similarity index 100% rename from core/modules/update/tests/modules/update_test/lib/Drupal/update_test/Controller/UpdateTestController.php rename to core/modules/update/tests/modules/update_test/src/Controller/UpdateTestController.php diff --git a/core/modules/update/tests/modules/update_test/lib/Drupal/update_test/MockFileTransfer.php b/core/modules/update/tests/modules/update_test/src/MockFileTransfer.php similarity index 100% rename from core/modules/update/tests/modules/update_test/lib/Drupal/update_test/MockFileTransfer.php rename to core/modules/update/tests/modules/update_test/src/MockFileTransfer.php diff --git a/core/modules/update/tests/Drupal/update/Tests/UpdateFetcherTest.php b/core/modules/update/tests/src/UpdateFetcherTest.php similarity index 100% rename from core/modules/update/tests/Drupal/update/Tests/UpdateFetcherTest.php rename to core/modules/update/tests/src/UpdateFetcherTest.php diff --git a/core/modules/user/lib/Drupal/user/Access/LoginStatusCheck.php b/core/modules/user/src/Access/LoginStatusCheck.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Access/LoginStatusCheck.php rename to core/modules/user/src/Access/LoginStatusCheck.php diff --git a/core/modules/user/lib/Drupal/user/Access/PermissionAccessCheck.php b/core/modules/user/src/Access/PermissionAccessCheck.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Access/PermissionAccessCheck.php rename to core/modules/user/src/Access/PermissionAccessCheck.php diff --git a/core/modules/user/lib/Drupal/user/Access/RegisterAccessCheck.php b/core/modules/user/src/Access/RegisterAccessCheck.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Access/RegisterAccessCheck.php rename to core/modules/user/src/Access/RegisterAccessCheck.php diff --git a/core/modules/user/lib/Drupal/user/Access/RoleAccessCheck.php b/core/modules/user/src/Access/RoleAccessCheck.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Access/RoleAccessCheck.php rename to core/modules/user/src/Access/RoleAccessCheck.php diff --git a/core/modules/user/lib/Drupal/user/AccountForm.php b/core/modules/user/src/AccountForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/AccountForm.php rename to core/modules/user/src/AccountForm.php diff --git a/core/modules/user/lib/Drupal/user/AccountSettingsForm.php b/core/modules/user/src/AccountSettingsForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/AccountSettingsForm.php rename to core/modules/user/src/AccountSettingsForm.php diff --git a/core/modules/user/lib/Drupal/user/Cache/UserCacheContext.php b/core/modules/user/src/Cache/UserCacheContext.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Cache/UserCacheContext.php rename to core/modules/user/src/Cache/UserCacheContext.php diff --git a/core/modules/user/lib/Drupal/user/Cache/UserRolesCacheContext.php b/core/modules/user/src/Cache/UserRolesCacheContext.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Cache/UserRolesCacheContext.php rename to core/modules/user/src/Cache/UserRolesCacheContext.php diff --git a/core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php b/core/modules/user/src/Controller/UserAutocompleteController.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Controller/UserAutocompleteController.php rename to core/modules/user/src/Controller/UserAutocompleteController.php diff --git a/core/modules/user/lib/Drupal/user/Controller/UserController.php b/core/modules/user/src/Controller/UserController.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Controller/UserController.php rename to core/modules/user/src/Controller/UserController.php diff --git a/core/modules/user/lib/Drupal/user/Entity/Role.php b/core/modules/user/src/Entity/Role.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Entity/Role.php rename to core/modules/user/src/Entity/Role.php diff --git a/core/modules/user/lib/Drupal/user/Entity/User.php b/core/modules/user/src/Entity/User.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Entity/User.php rename to core/modules/user/src/Entity/User.php diff --git a/core/modules/user/lib/Drupal/user/EntityOwnerInterface.php b/core/modules/user/src/EntityOwnerInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/EntityOwnerInterface.php rename to core/modules/user/src/EntityOwnerInterface.php diff --git a/core/modules/user/lib/Drupal/user/EventSubscriber/MaintenanceModeSubscriber.php b/core/modules/user/src/EventSubscriber/MaintenanceModeSubscriber.php similarity index 100% rename from core/modules/user/lib/Drupal/user/EventSubscriber/MaintenanceModeSubscriber.php rename to core/modules/user/src/EventSubscriber/MaintenanceModeSubscriber.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserCancelForm.php b/core/modules/user/src/Form/UserCancelForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserCancelForm.php rename to core/modules/user/src/Form/UserCancelForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserForm.php b/core/modules/user/src/Form/UserForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserForm.php rename to core/modules/user/src/Form/UserForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserLoginForm.php b/core/modules/user/src/Form/UserLoginForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserLoginForm.php rename to core/modules/user/src/Form/UserLoginForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserMultipleCancelConfirm.php b/core/modules/user/src/Form/UserMultipleCancelConfirm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserMultipleCancelConfirm.php rename to core/modules/user/src/Form/UserMultipleCancelConfirm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserPasswordForm.php b/core/modules/user/src/Form/UserPasswordForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserPasswordForm.php rename to core/modules/user/src/Form/UserPasswordForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php b/core/modules/user/src/Form/UserPermissionsForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php rename to core/modules/user/src/Form/UserPermissionsForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserPermissionsRoleSpecificForm.php b/core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserPermissionsRoleSpecificForm.php rename to core/modules/user/src/Form/UserPermissionsRoleSpecificForm.php diff --git a/core/modules/user/lib/Drupal/user/Form/UserRoleDelete.php b/core/modules/user/src/Form/UserRoleDelete.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Form/UserRoleDelete.php rename to core/modules/user/src/Form/UserRoleDelete.php diff --git a/core/modules/user/lib/Drupal/user/PermissionsHash.php b/core/modules/user/src/PermissionsHash.php similarity index 100% rename from core/modules/user/lib/Drupal/user/PermissionsHash.php rename to core/modules/user/src/PermissionsHash.php diff --git a/core/modules/user/lib/Drupal/user/PermissionsHashInterface.php b/core/modules/user/src/PermissionsHashInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/PermissionsHashInterface.php rename to core/modules/user/src/PermissionsHashInterface.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/AddRoleUser.php b/core/modules/user/src/Plugin/Action/AddRoleUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/AddRoleUser.php rename to core/modules/user/src/Plugin/Action/AddRoleUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/BlockUser.php b/core/modules/user/src/Plugin/Action/BlockUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/BlockUser.php rename to core/modules/user/src/Plugin/Action/BlockUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/CancelUser.php b/core/modules/user/src/Plugin/Action/CancelUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/CancelUser.php rename to core/modules/user/src/Plugin/Action/CancelUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/ChangeUserRoleBase.php b/core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/ChangeUserRoleBase.php rename to core/modules/user/src/Plugin/Action/ChangeUserRoleBase.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/RemoveRoleUser.php b/core/modules/user/src/Plugin/Action/RemoveRoleUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/RemoveRoleUser.php rename to core/modules/user/src/Plugin/Action/RemoveRoleUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Action/UnblockUser.php b/core/modules/user/src/Plugin/Action/UnblockUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Action/UnblockUser.php rename to core/modules/user/src/Plugin/Action/UnblockUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php b/core/modules/user/src/Plugin/Block/UserLoginBlock.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Block/UserLoginBlock.php rename to core/modules/user/src/Plugin/Block/UserLoginBlock.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/LanguageNegotiation/LanguageNegotiationUser.php b/core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/LanguageNegotiation/LanguageNegotiationUser.php rename to core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php b/core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php rename to core/modules/user/src/Plugin/LanguageNegotiation/LanguageNegotiationUserAdmin.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Search/UserSearch.php b/core/modules/user/src/Plugin/Search/UserSearch.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Search/UserSearch.php rename to core/modules/user/src/Plugin/Search/UserSearch.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserMailUnique.php b/core/modules/user/src/Plugin/Validation/Constraint/UserMailUnique.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserMailUnique.php rename to core/modules/user/src/Plugin/Validation/Constraint/UserMailUnique.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameConstraint.php b/core/modules/user/src/Plugin/Validation/Constraint/UserNameConstraint.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameConstraint.php rename to core/modules/user/src/Plugin/Validation/Constraint/UserNameConstraint.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameConstraintValidator.php b/core/modules/user/src/Plugin/Validation/Constraint/UserNameConstraintValidator.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameConstraintValidator.php rename to core/modules/user/src/Plugin/Validation/Constraint/UserNameConstraintValidator.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameUnique.php b/core/modules/user/src/Plugin/Validation/Constraint/UserNameUnique.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserNameUnique.php rename to core/modules/user/src/Plugin/Validation/Constraint/UserNameUnique.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserUniqueValidator.php b/core/modules/user/src/Plugin/Validation/Constraint/UserUniqueValidator.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/Validation/Constraint/UserUniqueValidator.php rename to core/modules/user/src/Plugin/Validation/Constraint/UserUniqueValidator.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/entity_reference/selection/UserSelection.php b/core/modules/user/src/Plugin/entity_reference/selection/UserSelection.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/entity_reference/selection/UserSelection.php rename to core/modules/user/src/Plugin/entity_reference/selection/UserSelection.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/access/Permission.php b/core/modules/user/src/Plugin/views/access/Permission.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/access/Permission.php rename to core/modules/user/src/Plugin/views/access/Permission.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/access/Role.php b/core/modules/user/src/Plugin/views/access/Role.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/access/Role.php rename to core/modules/user/src/Plugin/views/access/Role.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php b/core/modules/user/src/Plugin/views/argument/RolesRid.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument/RolesRid.php rename to core/modules/user/src/Plugin/views/argument/RolesRid.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php b/core/modules/user/src/Plugin/views/argument/Uid.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument/Uid.php rename to core/modules/user/src/Plugin/views/argument/Uid.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument_default/CurrentUser.php b/core/modules/user/src/Plugin/views/argument_default/CurrentUser.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument_default/CurrentUser.php rename to core/modules/user/src/Plugin/views/argument_default/CurrentUser.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument_default/User.php b/core/modules/user/src/Plugin/views/argument_default/User.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument_default/User.php rename to core/modules/user/src/Plugin/views/argument_default/User.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument_validator/User.php b/core/modules/user/src/Plugin/views/argument_validator/User.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument_validator/User.php rename to core/modules/user/src/Plugin/views/argument_validator/User.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/argument_validator/UserName.php b/core/modules/user/src/Plugin/views/argument_validator/UserName.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/argument_validator/UserName.php rename to core/modules/user/src/Plugin/views/argument_validator/UserName.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Language.php b/core/modules/user/src/Plugin/views/field/Language.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Language.php rename to core/modules/user/src/Plugin/views/field/Language.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Link.php b/core/modules/user/src/Plugin/views/field/Link.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Link.php rename to core/modules/user/src/Plugin/views/field/Link.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/LinkCancel.php b/core/modules/user/src/Plugin/views/field/LinkCancel.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/LinkCancel.php rename to core/modules/user/src/Plugin/views/field/LinkCancel.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/LinkEdit.php b/core/modules/user/src/Plugin/views/field/LinkEdit.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/LinkEdit.php rename to core/modules/user/src/Plugin/views/field/LinkEdit.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Mail.php b/core/modules/user/src/Plugin/views/field/Mail.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Mail.php rename to core/modules/user/src/Plugin/views/field/Mail.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Name.php b/core/modules/user/src/Plugin/views/field/Name.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Name.php rename to core/modules/user/src/Plugin/views/field/Name.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Permissions.php b/core/modules/user/src/Plugin/views/field/Permissions.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Permissions.php rename to core/modules/user/src/Plugin/views/field/Permissions.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/Roles.php b/core/modules/user/src/Plugin/views/field/Roles.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/Roles.php rename to core/modules/user/src/Plugin/views/field/Roles.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/User.php b/core/modules/user/src/Plugin/views/field/User.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/User.php rename to core/modules/user/src/Plugin/views/field/User.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/UserBulkForm.php b/core/modules/user/src/Plugin/views/field/UserBulkForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/UserBulkForm.php rename to core/modules/user/src/Plugin/views/field/UserBulkForm.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/field/UserData.php b/core/modules/user/src/Plugin/views/field/UserData.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/field/UserData.php rename to core/modules/user/src/Plugin/views/field/UserData.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/filter/Current.php b/core/modules/user/src/Plugin/views/filter/Current.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/filter/Current.php rename to core/modules/user/src/Plugin/views/filter/Current.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/filter/Name.php b/core/modules/user/src/Plugin/views/filter/Name.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/filter/Name.php rename to core/modules/user/src/Plugin/views/filter/Name.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/filter/Permissions.php b/core/modules/user/src/Plugin/views/filter/Permissions.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/filter/Permissions.php rename to core/modules/user/src/Plugin/views/filter/Permissions.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/filter/Roles.php b/core/modules/user/src/Plugin/views/filter/Roles.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/filter/Roles.php rename to core/modules/user/src/Plugin/views/filter/Roles.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/row/UserRow.php b/core/modules/user/src/Plugin/views/row/UserRow.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/row/UserRow.php rename to core/modules/user/src/Plugin/views/row/UserRow.php diff --git a/core/modules/user/lib/Drupal/user/Plugin/views/wizard/Users.php b/core/modules/user/src/Plugin/views/wizard/Users.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Plugin/views/wizard/Users.php rename to core/modules/user/src/Plugin/views/wizard/Users.php diff --git a/core/modules/user/lib/Drupal/user/ProfileForm.php b/core/modules/user/src/ProfileForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/ProfileForm.php rename to core/modules/user/src/ProfileForm.php diff --git a/core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php b/core/modules/user/src/ProfileTranslationHandler.php similarity index 100% rename from core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php rename to core/modules/user/src/ProfileTranslationHandler.php diff --git a/core/modules/user/lib/Drupal/user/RegisterForm.php b/core/modules/user/src/RegisterForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RegisterForm.php rename to core/modules/user/src/RegisterForm.php diff --git a/core/modules/user/lib/Drupal/user/RoleAccessController.php b/core/modules/user/src/RoleAccessController.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleAccessController.php rename to core/modules/user/src/RoleAccessController.php diff --git a/core/modules/user/lib/Drupal/user/RoleForm.php b/core/modules/user/src/RoleForm.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleForm.php rename to core/modules/user/src/RoleForm.php diff --git a/core/modules/user/lib/Drupal/user/RoleInterface.php b/core/modules/user/src/RoleInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleInterface.php rename to core/modules/user/src/RoleInterface.php diff --git a/core/modules/user/lib/Drupal/user/RoleListBuilder.php b/core/modules/user/src/RoleListBuilder.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleListBuilder.php rename to core/modules/user/src/RoleListBuilder.php diff --git a/core/modules/user/lib/Drupal/user/RoleStorage.php b/core/modules/user/src/RoleStorage.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleStorage.php rename to core/modules/user/src/RoleStorage.php diff --git a/core/modules/user/lib/Drupal/user/RoleStorageInterface.php b/core/modules/user/src/RoleStorageInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/RoleStorageInterface.php rename to core/modules/user/src/RoleStorageInterface.php diff --git a/core/modules/user/lib/Drupal/user/TempStore.php b/core/modules/user/src/TempStore.php similarity index 100% rename from core/modules/user/lib/Drupal/user/TempStore.php rename to core/modules/user/src/TempStore.php diff --git a/core/modules/user/lib/Drupal/user/TempStoreException.php b/core/modules/user/src/TempStoreException.php similarity index 100% rename from core/modules/user/lib/Drupal/user/TempStoreException.php rename to core/modules/user/src/TempStoreException.php diff --git a/core/modules/user/lib/Drupal/user/TempStoreFactory.php b/core/modules/user/src/TempStoreFactory.php similarity index 100% rename from core/modules/user/lib/Drupal/user/TempStoreFactory.php rename to core/modules/user/src/TempStoreFactory.php diff --git a/core/modules/user/lib/Drupal/user/Tests/TempStoreDatabaseTest.php b/core/modules/user/src/Tests/TempStoreDatabaseTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/TempStoreDatabaseTest.php rename to core/modules/user/src/Tests/TempStoreDatabaseTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAccountFormFieldsTest.php b/core/modules/user/src/Tests/UserAccountFormFieldsTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAccountFormFieldsTest.php rename to core/modules/user/src/Tests/UserAccountFormFieldsTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php b/core/modules/user/src/Tests/UserAccountLinksTests.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAccountLinksTests.php rename to core/modules/user/src/Tests/UserAccountLinksTests.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserActionConfigSchemaTest.php b/core/modules/user/src/Tests/UserActionConfigSchemaTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserActionConfigSchemaTest.php rename to core/modules/user/src/Tests/UserActionConfigSchemaTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAdminLanguageTest.php b/core/modules/user/src/Tests/UserAdminLanguageTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAdminLanguageTest.php rename to core/modules/user/src/Tests/UserAdminLanguageTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAdminListingTest.php b/core/modules/user/src/Tests/UserAdminListingTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAdminListingTest.php rename to core/modules/user/src/Tests/UserAdminListingTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAdminSettingsFormTest.php b/core/modules/user/src/Tests/UserAdminSettingsFormTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAdminSettingsFormTest.php rename to core/modules/user/src/Tests/UserAdminSettingsFormTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAdminTest.php b/core/modules/user/src/Tests/UserAdminTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAdminTest.php rename to core/modules/user/src/Tests/UserAdminTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserAutocompleteTest.php b/core/modules/user/src/Tests/UserAutocompleteTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserAutocompleteTest.php rename to core/modules/user/src/Tests/UserAutocompleteTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php b/core/modules/user/src/Tests/UserBlocksTests.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserBlocksTests.php rename to core/modules/user/src/Tests/UserBlocksTests.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserCacheTagsTest.php b/core/modules/user/src/Tests/UserCacheTagsTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserCacheTagsTest.php rename to core/modules/user/src/Tests/UserCacheTagsTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php b/core/modules/user/src/Tests/UserCancelTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserCancelTest.php rename to core/modules/user/src/Tests/UserCancelTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserCreateFailMailTest.php b/core/modules/user/src/Tests/UserCreateFailMailTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserCreateFailMailTest.php rename to core/modules/user/src/Tests/UserCreateFailMailTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserCreateTest.php b/core/modules/user/src/Tests/UserCreateTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserCreateTest.php rename to core/modules/user/src/Tests/UserCreateTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserDeleteTest.php b/core/modules/user/src/Tests/UserDeleteTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserDeleteTest.php rename to core/modules/user/src/Tests/UserDeleteTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserEditTest.php b/core/modules/user/src/Tests/UserEditTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserEditTest.php rename to core/modules/user/src/Tests/UserEditTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserEditedOwnAccountTest.php b/core/modules/user/src/Tests/UserEditedOwnAccountTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserEditedOwnAccountTest.php rename to core/modules/user/src/Tests/UserEditedOwnAccountTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserEntityCallbacksTest.php b/core/modules/user/src/Tests/UserEntityCallbacksTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserEntityCallbacksTest.php rename to core/modules/user/src/Tests/UserEntityCallbacksTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserEntityReferenceTest.php b/core/modules/user/src/Tests/UserEntityReferenceTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserEntityReferenceTest.php rename to core/modules/user/src/Tests/UserEntityReferenceTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserEntityTest.php b/core/modules/user/src/Tests/UserEntityTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserEntityTest.php rename to core/modules/user/src/Tests/UserEntityTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserInstallTest.php b/core/modules/user/src/Tests/UserInstallTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserInstallTest.php rename to core/modules/user/src/Tests/UserInstallTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserLanguageCreationTest.php b/core/modules/user/src/Tests/UserLanguageCreationTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserLanguageCreationTest.php rename to core/modules/user/src/Tests/UserLanguageCreationTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserLanguageTest.php b/core/modules/user/src/Tests/UserLanguageTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserLanguageTest.php rename to core/modules/user/src/Tests/UserLanguageTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserLoginTest.php b/core/modules/user/src/Tests/UserLoginTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserLoginTest.php rename to core/modules/user/src/Tests/UserLoginTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php b/core/modules/user/src/Tests/UserPasswordResetTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserPasswordResetTest.php rename to core/modules/user/src/Tests/UserPasswordResetTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserPermissionsTest.php b/core/modules/user/src/Tests/UserPermissionsTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserPermissionsTest.php rename to core/modules/user/src/Tests/UserPermissionsTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserPictureTest.php b/core/modules/user/src/Tests/UserPictureTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserPictureTest.php rename to core/modules/user/src/Tests/UserPictureTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserRegistrationTest.php b/core/modules/user/src/Tests/UserRegistrationTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserRegistrationTest.php rename to core/modules/user/src/Tests/UserRegistrationTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserRoleAdminTest.php b/core/modules/user/src/Tests/UserRoleAdminTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserRoleAdminTest.php rename to core/modules/user/src/Tests/UserRoleAdminTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserRolesAssignmentTest.php b/core/modules/user/src/Tests/UserRolesAssignmentTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserRolesAssignmentTest.php rename to core/modules/user/src/Tests/UserRolesAssignmentTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserSaveTest.php b/core/modules/user/src/Tests/UserSaveTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserSaveTest.php rename to core/modules/user/src/Tests/UserSaveTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserSearchTest.php b/core/modules/user/src/Tests/UserSearchTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserSearchTest.php rename to core/modules/user/src/Tests/UserSearchTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserSignatureTest.php b/core/modules/user/src/Tests/UserSignatureTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserSignatureTest.php rename to core/modules/user/src/Tests/UserSignatureTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserTimeZoneTest.php b/core/modules/user/src/Tests/UserTimeZoneTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserTimeZoneTest.php rename to core/modules/user/src/Tests/UserTimeZoneTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserTokenReplaceTest.php b/core/modules/user/src/Tests/UserTokenReplaceTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserTokenReplaceTest.php rename to core/modules/user/src/Tests/UserTokenReplaceTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserTranslationUITest.php b/core/modules/user/src/Tests/UserTranslationUITest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserTranslationUITest.php rename to core/modules/user/src/Tests/UserTranslationUITest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserValidateCurrentPassCustomFormTest.php b/core/modules/user/src/Tests/UserValidateCurrentPassCustomFormTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserValidateCurrentPassCustomFormTest.php rename to core/modules/user/src/Tests/UserValidateCurrentPassCustomFormTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/UserValidationTest.php b/core/modules/user/src/Tests/UserValidationTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/UserValidationTest.php rename to core/modules/user/src/Tests/UserValidationTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/AccessPermissionTest.php b/core/modules/user/src/Tests/Views/AccessPermissionTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/AccessPermissionTest.php rename to core/modules/user/src/Tests/Views/AccessPermissionTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/AccessRoleTest.php b/core/modules/user/src/Tests/Views/AccessRoleTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/AccessRoleTest.php rename to core/modules/user/src/Tests/Views/AccessRoleTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/AccessRoleUITest.php b/core/modules/user/src/Tests/Views/AccessRoleUITest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/AccessRoleUITest.php rename to core/modules/user/src/Tests/Views/AccessRoleUITest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/AccessTestBase.php b/core/modules/user/src/Tests/Views/AccessTestBase.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/AccessTestBase.php rename to core/modules/user/src/Tests/Views/AccessTestBase.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/ArgumentDefaultTest.php b/core/modules/user/src/Tests/Views/ArgumentDefaultTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/ArgumentDefaultTest.php rename to core/modules/user/src/Tests/Views/ArgumentDefaultTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/ArgumentValidateTest.php b/core/modules/user/src/Tests/Views/ArgumentValidateTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/ArgumentValidateTest.php rename to core/modules/user/src/Tests/Views/ArgumentValidateTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php b/core/modules/user/src/Tests/Views/BulkFormTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/BulkFormTest.php rename to core/modules/user/src/Tests/Views/BulkFormTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerArgumentUserUidTest.php b/core/modules/user/src/Tests/Views/HandlerArgumentUserUidTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerArgumentUserUidTest.php rename to core/modules/user/src/Tests/Views/HandlerArgumentUserUidTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldPermissionTest.php b/core/modules/user/src/Tests/Views/HandlerFieldPermissionTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldPermissionTest.php rename to core/modules/user/src/Tests/Views/HandlerFieldPermissionTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldRoleTest.php b/core/modules/user/src/Tests/Views/HandlerFieldRoleTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldRoleTest.php rename to core/modules/user/src/Tests/Views/HandlerFieldRoleTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldUserNameTest.php b/core/modules/user/src/Tests/Views/HandlerFieldUserNameTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerFieldUserNameTest.php rename to core/modules/user/src/Tests/Views/HandlerFieldUserNameTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerFilterPermissionTest.php b/core/modules/user/src/Tests/Views/HandlerFilterPermissionTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerFilterPermissionTest.php rename to core/modules/user/src/Tests/Views/HandlerFilterPermissionTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/HandlerFilterUserNameTest.php b/core/modules/user/src/Tests/Views/HandlerFilterUserNameTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/HandlerFilterUserNameTest.php rename to core/modules/user/src/Tests/Views/HandlerFilterUserNameTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/RelationshipRepresentativeNode.php b/core/modules/user/src/Tests/Views/RelationshipRepresentativeNode.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/RelationshipRepresentativeNode.php rename to core/modules/user/src/Tests/Views/RelationshipRepresentativeNode.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/UserDataTest.php b/core/modules/user/src/Tests/Views/UserDataTest.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/UserDataTest.php rename to core/modules/user/src/Tests/Views/UserDataTest.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/UserTestBase.php b/core/modules/user/src/Tests/Views/UserTestBase.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/UserTestBase.php rename to core/modules/user/src/Tests/Views/UserTestBase.php diff --git a/core/modules/user/lib/Drupal/user/Tests/Views/UserUnitTestBase.php b/core/modules/user/src/Tests/Views/UserUnitTestBase.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Tests/Views/UserUnitTestBase.php rename to core/modules/user/src/Tests/Views/UserUnitTestBase.php diff --git a/core/modules/user/lib/Drupal/user/Theme/AdminNegotiator.php b/core/modules/user/src/Theme/AdminNegotiator.php similarity index 100% rename from core/modules/user/lib/Drupal/user/Theme/AdminNegotiator.php rename to core/modules/user/src/Theme/AdminNegotiator.php diff --git a/core/modules/user/lib/Drupal/user/UserAccessController.php b/core/modules/user/src/UserAccessController.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserAccessController.php rename to core/modules/user/src/UserAccessController.php diff --git a/core/modules/user/lib/Drupal/user/UserAuth.php b/core/modules/user/src/UserAuth.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserAuth.php rename to core/modules/user/src/UserAuth.php diff --git a/core/modules/user/lib/Drupal/user/UserAuthInterface.php b/core/modules/user/src/UserAuthInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserAuthInterface.php rename to core/modules/user/src/UserAuthInterface.php diff --git a/core/modules/user/lib/Drupal/user/UserAutocomplete.php b/core/modules/user/src/UserAutocomplete.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserAutocomplete.php rename to core/modules/user/src/UserAutocomplete.php diff --git a/core/modules/user/lib/Drupal/user/UserData.php b/core/modules/user/src/UserData.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserData.php rename to core/modules/user/src/UserData.php diff --git a/core/modules/user/lib/Drupal/user/UserDataInterface.php b/core/modules/user/src/UserDataInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserDataInterface.php rename to core/modules/user/src/UserDataInterface.php diff --git a/core/modules/user/lib/Drupal/user/UserInterface.php b/core/modules/user/src/UserInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserInterface.php rename to core/modules/user/src/UserInterface.php diff --git a/core/modules/user/lib/Drupal/user/UserListBuilder.php b/core/modules/user/src/UserListBuilder.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserListBuilder.php rename to core/modules/user/src/UserListBuilder.php diff --git a/core/modules/user/lib/Drupal/user/UserStorage.php b/core/modules/user/src/UserStorage.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserStorage.php rename to core/modules/user/src/UserStorage.php diff --git a/core/modules/user/lib/Drupal/user/UserStorageInterface.php b/core/modules/user/src/UserStorageInterface.php similarity index 100% rename from core/modules/user/lib/Drupal/user/UserStorageInterface.php rename to core/modules/user/src/UserStorageInterface.php diff --git a/core/modules/user/tests/modules/user_form_test/lib/Drupal/user_form_test/Form/TestCurrentPassword.php b/core/modules/user/tests/modules/user_form_test/src/Form/TestCurrentPassword.php similarity index 100% rename from core/modules/user/tests/modules/user_form_test/lib/Drupal/user_form_test/Form/TestCurrentPassword.php rename to core/modules/user/tests/modules/user_form_test/src/Form/TestCurrentPassword.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Menu/UserLocalTasksTest.php b/core/modules/user/tests/src/Menu/UserLocalTasksTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Menu/UserLocalTasksTest.php rename to core/modules/user/tests/src/Menu/UserLocalTasksTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/PermissionsHashTest.php b/core/modules/user/tests/src/PermissionsHashTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/PermissionsHashTest.php rename to core/modules/user/tests/src/PermissionsHashTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Plugin/Action/AddRoleUserTest.php b/core/modules/user/tests/src/Plugin/Action/AddRoleUserTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Plugin/Action/AddRoleUserTest.php rename to core/modules/user/tests/src/Plugin/Action/AddRoleUserTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Plugin/Action/RemoveRoleUserTest.php b/core/modules/user/tests/src/Plugin/Action/RemoveRoleUserTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Plugin/Action/RemoveRoleUserTest.php rename to core/modules/user/tests/src/Plugin/Action/RemoveRoleUserTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Plugin/Action/RoleUserTestBase.php b/core/modules/user/tests/src/Plugin/Action/RoleUserTestBase.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Plugin/Action/RoleUserTestBase.php rename to core/modules/user/tests/src/Plugin/Action/RoleUserTestBase.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Plugin/Core/Entity/UserTest.php b/core/modules/user/tests/src/Plugin/Core/Entity/UserTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Plugin/Core/Entity/UserTest.php rename to core/modules/user/tests/src/Plugin/Core/Entity/UserTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Plugin/views/field/UserBulkFormTest.php b/core/modules/user/tests/src/Plugin/views/field/UserBulkFormTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Plugin/views/field/UserBulkFormTest.php rename to core/modules/user/tests/src/Plugin/views/field/UserBulkFormTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/TempStoreTest.php b/core/modules/user/tests/src/TempStoreTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/TempStoreTest.php rename to core/modules/user/tests/src/TempStoreTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php b/core/modules/user/tests/src/UserAuthTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/UserAuthTest.php rename to core/modules/user/tests/src/UserAuthTest.php diff --git a/core/modules/user/tests/Drupal/user/Tests/Views/Argument/RolesRidTest.php b/core/modules/user/tests/src/Views/Argument/RolesRidTest.php similarity index 100% rename from core/modules/user/tests/Drupal/user/Tests/Views/Argument/RolesRidTest.php rename to core/modules/user/tests/src/Views/Argument/RolesRidTest.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/HighlightCommand.php b/core/modules/views/src/Ajax/HighlightCommand.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/HighlightCommand.php rename to core/modules/views/src/Ajax/HighlightCommand.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/ReplaceTitleCommand.php b/core/modules/views/src/Ajax/ReplaceTitleCommand.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/ReplaceTitleCommand.php rename to core/modules/views/src/Ajax/ReplaceTitleCommand.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/ScrollTopCommand.php b/core/modules/views/src/Ajax/ScrollTopCommand.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/ScrollTopCommand.php rename to core/modules/views/src/Ajax/ScrollTopCommand.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/ShowButtonsCommand.php b/core/modules/views/src/Ajax/ShowButtonsCommand.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/ShowButtonsCommand.php rename to core/modules/views/src/Ajax/ShowButtonsCommand.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/TriggerPreviewCommand.php b/core/modules/views/src/Ajax/TriggerPreviewCommand.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/TriggerPreviewCommand.php rename to core/modules/views/src/Ajax/TriggerPreviewCommand.php diff --git a/core/modules/views/lib/Drupal/views/Ajax/ViewAjaxResponse.php b/core/modules/views/src/Ajax/ViewAjaxResponse.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Ajax/ViewAjaxResponse.php rename to core/modules/views/src/Ajax/ViewAjaxResponse.php diff --git a/core/modules/views/lib/Drupal/views/Analyzer.php b/core/modules/views/src/Analyzer.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Analyzer.php rename to core/modules/views/src/Analyzer.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsAccess.php b/core/modules/views/src/Annotation/ViewsAccess.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsAccess.php rename to core/modules/views/src/Annotation/ViewsAccess.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsArea.php b/core/modules/views/src/Annotation/ViewsArea.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsArea.php rename to core/modules/views/src/Annotation/ViewsArea.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsArgument.php b/core/modules/views/src/Annotation/ViewsArgument.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsArgument.php rename to core/modules/views/src/Annotation/ViewsArgument.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsArgumentDefault.php b/core/modules/views/src/Annotation/ViewsArgumentDefault.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsArgumentDefault.php rename to core/modules/views/src/Annotation/ViewsArgumentDefault.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsArgumentValidator.php b/core/modules/views/src/Annotation/ViewsArgumentValidator.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsArgumentValidator.php rename to core/modules/views/src/Annotation/ViewsArgumentValidator.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsCache.php b/core/modules/views/src/Annotation/ViewsCache.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsCache.php rename to core/modules/views/src/Annotation/ViewsCache.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsDisplay.php b/core/modules/views/src/Annotation/ViewsDisplay.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsDisplay.php rename to core/modules/views/src/Annotation/ViewsDisplay.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsDisplayExtender.php b/core/modules/views/src/Annotation/ViewsDisplayExtender.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsDisplayExtender.php rename to core/modules/views/src/Annotation/ViewsDisplayExtender.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsExposedForm.php b/core/modules/views/src/Annotation/ViewsExposedForm.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsExposedForm.php rename to core/modules/views/src/Annotation/ViewsExposedForm.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsField.php b/core/modules/views/src/Annotation/ViewsField.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsField.php rename to core/modules/views/src/Annotation/ViewsField.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsFilter.php b/core/modules/views/src/Annotation/ViewsFilter.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsFilter.php rename to core/modules/views/src/Annotation/ViewsFilter.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsHandlerAnnotationBase.php b/core/modules/views/src/Annotation/ViewsHandlerAnnotationBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsHandlerAnnotationBase.php rename to core/modules/views/src/Annotation/ViewsHandlerAnnotationBase.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsJoin.php b/core/modules/views/src/Annotation/ViewsJoin.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsJoin.php rename to core/modules/views/src/Annotation/ViewsJoin.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsPager.php b/core/modules/views/src/Annotation/ViewsPager.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsPager.php rename to core/modules/views/src/Annotation/ViewsPager.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsPluginAnnotationBase.php b/core/modules/views/src/Annotation/ViewsPluginAnnotationBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsPluginAnnotationBase.php rename to core/modules/views/src/Annotation/ViewsPluginAnnotationBase.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php b/core/modules/views/src/Annotation/ViewsQuery.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsQuery.php rename to core/modules/views/src/Annotation/ViewsQuery.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsRelationship.php b/core/modules/views/src/Annotation/ViewsRelationship.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsRelationship.php rename to core/modules/views/src/Annotation/ViewsRelationship.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsRow.php b/core/modules/views/src/Annotation/ViewsRow.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsRow.php rename to core/modules/views/src/Annotation/ViewsRow.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsSort.php b/core/modules/views/src/Annotation/ViewsSort.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsSort.php rename to core/modules/views/src/Annotation/ViewsSort.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsStyle.php b/core/modules/views/src/Annotation/ViewsStyle.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsStyle.php rename to core/modules/views/src/Annotation/ViewsStyle.php diff --git a/core/modules/views/lib/Drupal/views/Annotation/ViewsWizard.php b/core/modules/views/src/Annotation/ViewsWizard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Annotation/ViewsWizard.php rename to core/modules/views/src/Annotation/ViewsWizard.php diff --git a/core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php b/core/modules/views/src/Controller/ViewAjaxController.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Controller/ViewAjaxController.php rename to core/modules/views/src/Controller/ViewAjaxController.php diff --git a/core/modules/views/lib/Drupal/views/DisplayBag.php b/core/modules/views/src/DisplayBag.php similarity index 100% rename from core/modules/views/lib/Drupal/views/DisplayBag.php rename to core/modules/views/src/DisplayBag.php diff --git a/core/modules/views/lib/Drupal/views/Entity/Render/CurrentLanguageRenderer.php b/core/modules/views/src/Entity/Render/CurrentLanguageRenderer.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Entity/Render/CurrentLanguageRenderer.php rename to core/modules/views/src/Entity/Render/CurrentLanguageRenderer.php diff --git a/core/modules/views/lib/Drupal/views/Entity/Render/DefaultLanguageRenderer.php b/core/modules/views/src/Entity/Render/DefaultLanguageRenderer.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Entity/Render/DefaultLanguageRenderer.php rename to core/modules/views/src/Entity/Render/DefaultLanguageRenderer.php diff --git a/core/modules/views/lib/Drupal/views/Entity/Render/RendererBase.php b/core/modules/views/src/Entity/Render/RendererBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Entity/Render/RendererBase.php rename to core/modules/views/src/Entity/Render/RendererBase.php diff --git a/core/modules/views/lib/Drupal/views/Entity/Render/TranslationLanguageRenderer.php b/core/modules/views/src/Entity/Render/TranslationLanguageRenderer.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Entity/Render/TranslationLanguageRenderer.php rename to core/modules/views/src/Entity/Render/TranslationLanguageRenderer.php diff --git a/core/modules/views/lib/Drupal/views/Entity/View.php b/core/modules/views/src/Entity/View.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Entity/View.php rename to core/modules/views/src/Entity/View.php diff --git a/core/modules/views/lib/Drupal/views/EventSubscriber/RouteSubscriber.php b/core/modules/views/src/EventSubscriber/RouteSubscriber.php similarity index 100% rename from core/modules/views/lib/Drupal/views/EventSubscriber/RouteSubscriber.php rename to core/modules/views/src/EventSubscriber/RouteSubscriber.php diff --git a/core/modules/views/lib/Drupal/views/ExposedFormCache.php b/core/modules/views/src/ExposedFormCache.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ExposedFormCache.php rename to core/modules/views/src/ExposedFormCache.php diff --git a/core/modules/views/lib/Drupal/views/Form/ViewsExposedForm.php b/core/modules/views/src/Form/ViewsExposedForm.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Form/ViewsExposedForm.php rename to core/modules/views/src/Form/ViewsExposedForm.php diff --git a/core/modules/views/lib/Drupal/views/Form/ViewsForm.php b/core/modules/views/src/Form/ViewsForm.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Form/ViewsForm.php rename to core/modules/views/src/Form/ViewsForm.php diff --git a/core/modules/views/lib/Drupal/views/Form/ViewsFormMainForm.php b/core/modules/views/src/Form/ViewsFormMainForm.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Form/ViewsFormMainForm.php rename to core/modules/views/src/Form/ViewsFormMainForm.php diff --git a/core/modules/views/lib/Drupal/views/ManyToOneHelper.php b/core/modules/views/src/ManyToOneHelper.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ManyToOneHelper.php rename to core/modules/views/src/ManyToOneHelper.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php b/core/modules/views/src/Plugin/Block/ViewsBlock.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlock.php rename to core/modules/views/src/Plugin/Block/ViewsBlock.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php b/core/modules/views/src/Plugin/Block/ViewsBlockBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php rename to core/modules/views/src/Plugin/Block/ViewsBlockBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php b/core/modules/views/src/Plugin/Block/ViewsExposedFilterBlock.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Block/ViewsExposedFilterBlock.php rename to core/modules/views/src/Plugin/Block/ViewsExposedFilterBlock.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/DefaultWizardDeriver.php b/core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/DefaultWizardDeriver.php rename to core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsBlock.php b/core/modules/views/src/Plugin/Derivative/ViewsBlock.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsBlock.php rename to core/modules/views/src/Plugin/Derivative/ViewsBlock.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsEntityArgumentValidator.php b/core/modules/views/src/Plugin/Derivative/ViewsEntityArgumentValidator.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsEntityArgumentValidator.php rename to core/modules/views/src/Plugin/Derivative/ViewsEntityArgumentValidator.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsEntityRow.php b/core/modules/views/src/Plugin/Derivative/ViewsEntityRow.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsEntityRow.php rename to core/modules/views/src/Plugin/Derivative/ViewsEntityRow.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsExposedFilterBlock.php b/core/modules/views/src/Plugin/Derivative/ViewsExposedFilterBlock.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsExposedFilterBlock.php rename to core/modules/views/src/Plugin/Derivative/ViewsExposedFilterBlock.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsLocalTask.php b/core/modules/views/src/Plugin/Derivative/ViewsLocalTask.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/Derivative/ViewsLocalTask.php rename to core/modules/views/src/Plugin/Derivative/ViewsLocalTask.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/ViewsHandlerManager.php b/core/modules/views/src/Plugin/ViewsHandlerManager.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/ViewsHandlerManager.php rename to core/modules/views/src/Plugin/ViewsHandlerManager.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/ViewsPluginManager.php b/core/modules/views/src/Plugin/ViewsPluginManager.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/ViewsPluginManager.php rename to core/modules/views/src/Plugin/ViewsPluginManager.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/entity_reference/selection/ViewsSelection.php b/core/modules/views/src/Plugin/entity_reference/selection/ViewsSelection.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/entity_reference/selection/ViewsSelection.php rename to core/modules/views/src/Plugin/entity_reference/selection/ViewsSelection.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/BrokenHandlerTrait.php b/core/modules/views/src/Plugin/views/BrokenHandlerTrait.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/BrokenHandlerTrait.php rename to core/modules/views/src/Plugin/views/BrokenHandlerTrait.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/HandlerBase.php rename to core/modules/views/src/Plugin/views/HandlerBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php b/core/modules/views/src/Plugin/views/PluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php rename to core/modules/views/src/Plugin/views/PluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/PluginInterface.php b/core/modules/views/src/Plugin/views/PluginInterface.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/PluginInterface.php rename to core/modules/views/src/Plugin/views/PluginInterface.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/access/AccessPluginBase.php b/core/modules/views/src/Plugin/views/access/AccessPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/access/AccessPluginBase.php rename to core/modules/views/src/Plugin/views/access/AccessPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/access/None.php b/core/modules/views/src/Plugin/views/access/None.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/access/None.php rename to core/modules/views/src/Plugin/views/access/None.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/AreaPluginBase.php b/core/modules/views/src/Plugin/views/area/AreaPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/AreaPluginBase.php rename to core/modules/views/src/Plugin/views/area/AreaPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Broken.php b/core/modules/views/src/Plugin/views/area/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Broken.php rename to core/modules/views/src/Plugin/views/area/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Entity.php b/core/modules/views/src/Plugin/views/area/Entity.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Entity.php rename to core/modules/views/src/Plugin/views/area/Entity.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php b/core/modules/views/src/Plugin/views/area/HTTPStatusCode.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/HTTPStatusCode.php rename to core/modules/views/src/Plugin/views/area/HTTPStatusCode.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Messages.php b/core/modules/views/src/Plugin/views/area/Messages.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Messages.php rename to core/modules/views/src/Plugin/views/area/Messages.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Result.php b/core/modules/views/src/Plugin/views/area/Result.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Result.php rename to core/modules/views/src/Plugin/views/area/Result.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php b/core/modules/views/src/Plugin/views/area/Text.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php rename to core/modules/views/src/Plugin/views/area/Text.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php b/core/modules/views/src/Plugin/views/area/TextCustom.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php rename to core/modules/views/src/Plugin/views/area/TextCustom.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/Title.php b/core/modules/views/src/Plugin/views/area/Title.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/Title.php rename to core/modules/views/src/Plugin/views/area/Title.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/TokenizeAreaPluginBase.php b/core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/TokenizeAreaPluginBase.php rename to core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/area/View.php b/core/modules/views/src/Plugin/views/area/View.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/area/View.php rename to core/modules/views/src/Plugin/views/area/View.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/ArgumentPluginBase.php rename to core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Broken.php b/core/modules/views/src/Plugin/views/argument/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Broken.php rename to core/modules/views/src/Plugin/views/argument/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php b/core/modules/views/src/Plugin/views/argument/Date.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Date.php rename to core/modules/views/src/Plugin/views/argument/Date.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/DayDate.php b/core/modules/views/src/Plugin/views/argument/DayDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/DayDate.php rename to core/modules/views/src/Plugin/views/argument/DayDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Formula.php b/core/modules/views/src/Plugin/views/argument/Formula.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Formula.php rename to core/modules/views/src/Plugin/views/argument/Formula.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/FullDate.php b/core/modules/views/src/Plugin/views/argument/FullDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/FullDate.php rename to core/modules/views/src/Plugin/views/argument/FullDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/GroupByNumeric.php b/core/modules/views/src/Plugin/views/argument/GroupByNumeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/GroupByNumeric.php rename to core/modules/views/src/Plugin/views/argument/GroupByNumeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php b/core/modules/views/src/Plugin/views/argument/ManyToOne.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/ManyToOne.php rename to core/modules/views/src/Plugin/views/argument/ManyToOne.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/MonthDate.php b/core/modules/views/src/Plugin/views/argument/MonthDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/MonthDate.php rename to core/modules/views/src/Plugin/views/argument/MonthDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Null.php b/core/modules/views/src/Plugin/views/argument/Null.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Null.php rename to core/modules/views/src/Plugin/views/argument/Null.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php b/core/modules/views/src/Plugin/views/argument/Numeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Numeric.php rename to core/modules/views/src/Plugin/views/argument/Numeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/Standard.php b/core/modules/views/src/Plugin/views/argument/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/Standard.php rename to core/modules/views/src/Plugin/views/argument/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php b/core/modules/views/src/Plugin/views/argument/String.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php rename to core/modules/views/src/Plugin/views/argument/String.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/WeekDate.php b/core/modules/views/src/Plugin/views/argument/WeekDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/WeekDate.php rename to core/modules/views/src/Plugin/views/argument/WeekDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/YearDate.php b/core/modules/views/src/Plugin/views/argument/YearDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/YearDate.php rename to core/modules/views/src/Plugin/views/argument/YearDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument/YearMonthDate.php b/core/modules/views/src/Plugin/views/argument/YearMonthDate.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument/YearMonthDate.php rename to core/modules/views/src/Plugin/views/argument/YearMonthDate.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_default/ArgumentDefaultPluginBase.php b/core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_default/ArgumentDefaultPluginBase.php rename to core/modules/views/src/Plugin/views/argument_default/ArgumentDefaultPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_default/Fixed.php b/core/modules/views/src/Plugin/views/argument_default/Fixed.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_default/Fixed.php rename to core/modules/views/src/Plugin/views/argument_default/Fixed.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_default/Raw.php b/core/modules/views/src/Plugin/views/argument_default/Raw.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_default/Raw.php rename to core/modules/views/src/Plugin/views/argument_default/Raw.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php b/core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php rename to core/modules/views/src/Plugin/views/argument_validator/ArgumentValidatorPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/Entity.php b/core/modules/views/src/Plugin/views/argument_validator/Entity.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/Entity.php rename to core/modules/views/src/Plugin/views/argument_validator/Entity.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/None.php b/core/modules/views/src/Plugin/views/argument_validator/None.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/None.php rename to core/modules/views/src/Plugin/views/argument_validator/None.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/Numeric.php b/core/modules/views/src/Plugin/views/argument_validator/Numeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/argument_validator/Numeric.php rename to core/modules/views/src/Plugin/views/argument_validator/Numeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/cache/CachePluginBase.php b/core/modules/views/src/Plugin/views/cache/CachePluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/cache/CachePluginBase.php rename to core/modules/views/src/Plugin/views/cache/CachePluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/cache/None.php b/core/modules/views/src/Plugin/views/cache/None.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/cache/None.php rename to core/modules/views/src/Plugin/views/cache/None.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/cache/Tag.php b/core/modules/views/src/Plugin/views/cache/Tag.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/cache/Tag.php rename to core/modules/views/src/Plugin/views/cache/Tag.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php b/core/modules/views/src/Plugin/views/cache/Time.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/cache/Time.php rename to core/modules/views/src/Plugin/views/cache/Time.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Attachment.php b/core/modules/views/src/Plugin/views/display/Attachment.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/Attachment.php rename to core/modules/views/src/Plugin/views/display/Attachment.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/DefaultDisplay.php b/core/modules/views/src/Plugin/views/display/DefaultDisplay.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/DefaultDisplay.php rename to core/modules/views/src/Plugin/views/display/DefaultDisplay.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php rename to core/modules/views/src/Plugin/views/display/DisplayPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayRouterInterface.php b/core/modules/views/src/Plugin/views/display/DisplayRouterInterface.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayRouterInterface.php rename to core/modules/views/src/Plugin/views/display/DisplayRouterInterface.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Embed.php b/core/modules/views/src/Plugin/views/display/Embed.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/Embed.php rename to core/modules/views/src/Plugin/views/display/Embed.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Feed.php b/core/modules/views/src/Plugin/views/display/Feed.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/Feed.php rename to core/modules/views/src/Plugin/views/display/Feed.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php b/core/modules/views/src/Plugin/views/display/Page.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/Page.php rename to core/modules/views/src/Plugin/views/display/Page.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/PathPluginBase.php b/core/modules/views/src/Plugin/views/display/PathPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display/PathPluginBase.php rename to core/modules/views/src/Plugin/views/display/PathPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display_extender/DefaultDisplayExtender.php b/core/modules/views/src/Plugin/views/display_extender/DefaultDisplayExtender.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display_extender/DefaultDisplayExtender.php rename to core/modules/views/src/Plugin/views/display_extender/DefaultDisplayExtender.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display_extender/DisplayExtenderPluginBase.php b/core/modules/views/src/Plugin/views/display_extender/DisplayExtenderPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/display_extender/DisplayExtenderPluginBase.php rename to core/modules/views/src/Plugin/views/display_extender/DisplayExtenderPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/Basic.php b/core/modules/views/src/Plugin/views/exposed_form/Basic.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/Basic.php rename to core/modules/views/src/Plugin/views/exposed_form/Basic.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php b/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php rename to core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php b/core/modules/views/src/Plugin/views/exposed_form/InputRequired.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/InputRequired.php rename to core/modules/views/src/Plugin/views/exposed_form/InputRequired.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Boolean.php b/core/modules/views/src/Plugin/views/field/Boolean.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Boolean.php rename to core/modules/views/src/Plugin/views/field/Boolean.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Broken.php b/core/modules/views/src/Plugin/views/field/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Broken.php rename to core/modules/views/src/Plugin/views/field/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Counter.php b/core/modules/views/src/Plugin/views/field/Counter.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Counter.php rename to core/modules/views/src/Plugin/views/field/Counter.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Custom.php b/core/modules/views/src/Plugin/views/field/Custom.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Custom.php rename to core/modules/views/src/Plugin/views/field/Custom.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Date.php b/core/modules/views/src/Plugin/views/field/Date.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Date.php rename to core/modules/views/src/Plugin/views/field/Date.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Dropbutton.php b/core/modules/views/src/Plugin/views/field/Dropbutton.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Dropbutton.php rename to core/modules/views/src/Plugin/views/field/Dropbutton.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/EntityLabel.php b/core/modules/views/src/Plugin/views/field/EntityLabel.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/EntityLabel.php rename to core/modules/views/src/Plugin/views/field/EntityLabel.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php rename to core/modules/views/src/Plugin/views/field/FieldPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/FileSize.php b/core/modules/views/src/Plugin/views/field/FileSize.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/FileSize.php rename to core/modules/views/src/Plugin/views/field/FileSize.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php b/core/modules/views/src/Plugin/views/field/Links.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Links.php rename to core/modules/views/src/Plugin/views/field/Links.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/MachineName.php b/core/modules/views/src/Plugin/views/field/MachineName.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/MachineName.php rename to core/modules/views/src/Plugin/views/field/MachineName.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Markup.php b/core/modules/views/src/Plugin/views/field/Markup.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Markup.php rename to core/modules/views/src/Plugin/views/field/Markup.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Numeric.php b/core/modules/views/src/Plugin/views/field/Numeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Numeric.php rename to core/modules/views/src/Plugin/views/field/Numeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/PrerenderList.php b/core/modules/views/src/Plugin/views/field/PrerenderList.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/PrerenderList.php rename to core/modules/views/src/Plugin/views/field/PrerenderList.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Serialized.php b/core/modules/views/src/Plugin/views/field/Serialized.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Serialized.php rename to core/modules/views/src/Plugin/views/field/Serialized.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Standard.php b/core/modules/views/src/Plugin/views/field/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Standard.php rename to core/modules/views/src/Plugin/views/field/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/TimeInterval.php b/core/modules/views/src/Plugin/views/field/TimeInterval.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/TimeInterval.php rename to core/modules/views/src/Plugin/views/field/TimeInterval.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Url.php b/core/modules/views/src/Plugin/views/field/Url.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Url.php rename to core/modules/views/src/Plugin/views/field/Url.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/field/Xss.php b/core/modules/views/src/Plugin/views/field/Xss.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/field/Xss.php rename to core/modules/views/src/Plugin/views/field/Xss.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/BooleanOperator.php b/core/modules/views/src/Plugin/views/filter/BooleanOperator.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/BooleanOperator.php rename to core/modules/views/src/Plugin/views/filter/BooleanOperator.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/BooleanOperatorString.php b/core/modules/views/src/Plugin/views/filter/BooleanOperatorString.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/BooleanOperatorString.php rename to core/modules/views/src/Plugin/views/filter/BooleanOperatorString.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Broken.php b/core/modules/views/src/Plugin/views/filter/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Broken.php rename to core/modules/views/src/Plugin/views/filter/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Bundle.php b/core/modules/views/src/Plugin/views/filter/Bundle.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Bundle.php rename to core/modules/views/src/Plugin/views/filter/Bundle.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php b/core/modules/views/src/Plugin/views/filter/Combine.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Combine.php rename to core/modules/views/src/Plugin/views/filter/Combine.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Date.php b/core/modules/views/src/Plugin/views/filter/Date.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Date.php rename to core/modules/views/src/Plugin/views/filter/Date.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Equality.php b/core/modules/views/src/Plugin/views/filter/Equality.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Equality.php rename to core/modules/views/src/Plugin/views/filter/Equality.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/FilterPluginBase.php rename to core/modules/views/src/Plugin/views/filter/FilterPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/GroupByNumeric.php b/core/modules/views/src/Plugin/views/filter/GroupByNumeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/GroupByNumeric.php rename to core/modules/views/src/Plugin/views/filter/GroupByNumeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/InOperator.php b/core/modules/views/src/Plugin/views/filter/InOperator.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/InOperator.php rename to core/modules/views/src/Plugin/views/filter/InOperator.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php b/core/modules/views/src/Plugin/views/filter/ManyToOne.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/ManyToOne.php rename to core/modules/views/src/Plugin/views/filter/ManyToOne.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Numeric.php b/core/modules/views/src/Plugin/views/filter/Numeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Numeric.php rename to core/modules/views/src/Plugin/views/filter/Numeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/Standard.php b/core/modules/views/src/Plugin/views/filter/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/Standard.php rename to core/modules/views/src/Plugin/views/filter/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/filter/String.php b/core/modules/views/src/Plugin/views/filter/String.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/filter/String.php rename to core/modules/views/src/Plugin/views/filter/String.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/join/JoinPluginBase.php b/core/modules/views/src/Plugin/views/join/JoinPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/join/JoinPluginBase.php rename to core/modules/views/src/Plugin/views/join/JoinPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/join/Standard.php b/core/modules/views/src/Plugin/views/join/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/join/Standard.php rename to core/modules/views/src/Plugin/views/join/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/join/Subquery.php b/core/modules/views/src/Plugin/views/join/Subquery.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/join/Subquery.php rename to core/modules/views/src/Plugin/views/join/Subquery.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php b/core/modules/views/src/Plugin/views/pager/Full.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/Full.php rename to core/modules/views/src/Plugin/views/pager/Full.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Mini.php b/core/modules/views/src/Plugin/views/pager/Mini.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/Mini.php rename to core/modules/views/src/Plugin/views/pager/Mini.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php b/core/modules/views/src/Plugin/views/pager/None.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/None.php rename to core/modules/views/src/Plugin/views/pager/None.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/PagerPluginBase.php b/core/modules/views/src/Plugin/views/pager/PagerPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/PagerPluginBase.php rename to core/modules/views/src/Plugin/views/pager/PagerPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/Some.php b/core/modules/views/src/Plugin/views/pager/Some.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/Some.php rename to core/modules/views/src/Plugin/views/pager/Some.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/pager/SqlBase.php b/core/modules/views/src/Plugin/views/pager/SqlBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/pager/SqlBase.php rename to core/modules/views/src/Plugin/views/pager/SqlBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/query/QueryPluginBase.php b/core/modules/views/src/Plugin/views/query/QueryPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/query/QueryPluginBase.php rename to core/modules/views/src/Plugin/views/query/QueryPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/query/Sql.php rename to core/modules/views/src/Plugin/views/query/Sql.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/Broken.php b/core/modules/views/src/Plugin/views/relationship/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/relationship/Broken.php rename to core/modules/views/src/Plugin/views/relationship/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php b/core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/relationship/GroupwiseMax.php rename to core/modules/views/src/Plugin/views/relationship/GroupwiseMax.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/RelationshipPluginBase.php b/core/modules/views/src/Plugin/views/relationship/RelationshipPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/relationship/RelationshipPluginBase.php rename to core/modules/views/src/Plugin/views/relationship/RelationshipPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/relationship/Standard.php b/core/modules/views/src/Plugin/views/relationship/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/relationship/Standard.php rename to core/modules/views/src/Plugin/views/relationship/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php b/core/modules/views/src/Plugin/views/row/EntityRow.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/row/EntityRow.php rename to core/modules/views/src/Plugin/views/row/EntityRow.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/Fields.php b/core/modules/views/src/Plugin/views/row/Fields.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/row/Fields.php rename to core/modules/views/src/Plugin/views/row/Fields.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/RowPluginBase.php b/core/modules/views/src/Plugin/views/row/RowPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/row/RowPluginBase.php rename to core/modules/views/src/Plugin/views/row/RowPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/RssFields.php b/core/modules/views/src/Plugin/views/row/RssFields.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/row/RssFields.php rename to core/modules/views/src/Plugin/views/row/RssFields.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/Broken.php b/core/modules/views/src/Plugin/views/sort/Broken.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/Broken.php rename to core/modules/views/src/Plugin/views/sort/Broken.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/Date.php b/core/modules/views/src/Plugin/views/sort/Date.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/Date.php rename to core/modules/views/src/Plugin/views/sort/Date.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/GroupByNumeric.php b/core/modules/views/src/Plugin/views/sort/GroupByNumeric.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/GroupByNumeric.php rename to core/modules/views/src/Plugin/views/sort/GroupByNumeric.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/MenuHierarchy.php b/core/modules/views/src/Plugin/views/sort/MenuHierarchy.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/MenuHierarchy.php rename to core/modules/views/src/Plugin/views/sort/MenuHierarchy.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/Random.php b/core/modules/views/src/Plugin/views/sort/Random.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/Random.php rename to core/modules/views/src/Plugin/views/sort/Random.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php b/core/modules/views/src/Plugin/views/sort/SortPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/SortPluginBase.php rename to core/modules/views/src/Plugin/views/sort/SortPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/sort/Standard.php b/core/modules/views/src/Plugin/views/sort/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/sort/Standard.php rename to core/modules/views/src/Plugin/views/sort/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php b/core/modules/views/src/Plugin/views/style/DefaultStyle.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultStyle.php rename to core/modules/views/src/Plugin/views/style/DefaultStyle.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultSummary.php b/core/modules/views/src/Plugin/views/style/DefaultSummary.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultSummary.php rename to core/modules/views/src/Plugin/views/style/DefaultSummary.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Grid.php b/core/modules/views/src/Plugin/views/style/Grid.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/Grid.php rename to core/modules/views/src/Plugin/views/style/Grid.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/HtmlList.php b/core/modules/views/src/Plugin/views/style/HtmlList.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/HtmlList.php rename to core/modules/views/src/Plugin/views/style/HtmlList.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Mapping.php b/core/modules/views/src/Plugin/views/style/Mapping.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/Mapping.php rename to core/modules/views/src/Plugin/views/style/Mapping.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Rss.php b/core/modules/views/src/Plugin/views/style/Rss.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/Rss.php rename to core/modules/views/src/Plugin/views/style/Rss.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php b/core/modules/views/src/Plugin/views/style/StylePluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/StylePluginBase.php rename to core/modules/views/src/Plugin/views/style/StylePluginBase.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php b/core/modules/views/src/Plugin/views/style/Table.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/Table.php rename to core/modules/views/src/Plugin/views/style/Table.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/UnformattedSummary.php b/core/modules/views/src/Plugin/views/style/UnformattedSummary.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/style/UnformattedSummary.php rename to core/modules/views/src/Plugin/views/style/UnformattedSummary.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php b/core/modules/views/src/Plugin/views/wizard/Standard.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php rename to core/modules/views/src/Plugin/views/wizard/Standard.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardException.php b/core/modules/views/src/Plugin/views/wizard/WizardException.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardException.php rename to core/modules/views/src/Plugin/views/wizard/WizardException.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardInterface.php b/core/modules/views/src/Plugin/views/wizard/WizardInterface.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardInterface.php rename to core/modules/views/src/Plugin/views/wizard/WizardInterface.php diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php b/core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Plugin/views/wizard/WizardPluginBase.php rename to core/modules/views/src/Plugin/views/wizard/WizardPluginBase.php diff --git a/core/modules/views/lib/Drupal/views/ResultRow.php b/core/modules/views/src/ResultRow.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ResultRow.php rename to core/modules/views/src/ResultRow.php diff --git a/core/modules/views/lib/Drupal/views/Routing/ViewPageController.php b/core/modules/views/src/Routing/ViewPageController.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Routing/ViewPageController.php rename to core/modules/views/src/Routing/ViewPageController.php diff --git a/core/modules/views/lib/Drupal/views/Tests/BasicTest.php b/core/modules/views/src/Tests/BasicTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/BasicTest.php rename to core/modules/views/src/Tests/BasicTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php b/core/modules/views/src/Tests/DefaultViewsTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/DefaultViewsTest.php rename to core/modules/views/src/Tests/DefaultViewsTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Entity/FieldEntityTest.php b/core/modules/views/src/Tests/Entity/FieldEntityTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Entity/FieldEntityTest.php rename to core/modules/views/src/Tests/Entity/FieldEntityTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Entity/FilterEntityBundleTest.php b/core/modules/views/src/Tests/Entity/FilterEntityBundleTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Entity/FilterEntityBundleTest.php rename to core/modules/views/src/Tests/Entity/FilterEntityBundleTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Entity/RowEntityRenderersTest.php b/core/modules/views/src/Tests/Entity/RowEntityRenderersTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Entity/RowEntityRenderersTest.php rename to core/modules/views/src/Tests/Entity/RowEntityRenderersTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Entity/ViewEntityDependenciesTest.php b/core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Entity/ViewEntityDependenciesTest.php rename to core/modules/views/src/Tests/Entity/ViewEntityDependenciesTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/GlossaryTest.php b/core/modules/views/src/Tests/GlossaryTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/GlossaryTest.php rename to core/modules/views/src/Tests/GlossaryTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaEntityTest.php b/core/modules/views/src/Tests/Handler/AreaEntityTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaEntityTest.php rename to core/modules/views/src/Tests/Handler/AreaEntityTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php b/core/modules/views/src/Tests/Handler/AreaHTTPStatusCodeTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaHTTPStatusCodeTest.php rename to core/modules/views/src/Tests/Handler/AreaHTTPStatusCodeTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaTest.php b/core/modules/views/src/Tests/Handler/AreaTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaTest.php rename to core/modules/views/src/Tests/Handler/AreaTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaTextTest.php b/core/modules/views/src/Tests/Handler/AreaTextTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaTextTest.php rename to core/modules/views/src/Tests/Handler/AreaTextTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaTitleTest.php b/core/modules/views/src/Tests/Handler/AreaTitleTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaTitleTest.php rename to core/modules/views/src/Tests/Handler/AreaTitleTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/AreaViewTest.php b/core/modules/views/src/Tests/Handler/AreaViewTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/AreaViewTest.php rename to core/modules/views/src/Tests/Handler/AreaViewTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php b/core/modules/views/src/Tests/Handler/ArgumentDateTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentDateTest.php rename to core/modules/views/src/Tests/Handler/ArgumentDateTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentNullTest.php b/core/modules/views/src/Tests/Handler/ArgumentNullTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentNullTest.php rename to core/modules/views/src/Tests/Handler/ArgumentNullTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentStringTest.php b/core/modules/views/src/Tests/Handler/ArgumentStringTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/ArgumentStringTest.php rename to core/modules/views/src/Tests/Handler/ArgumentStringTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldBooleanTest.php b/core/modules/views/src/Tests/Handler/FieldBooleanTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldBooleanTest.php rename to core/modules/views/src/Tests/Handler/FieldBooleanTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldCounterTest.php b/core/modules/views/src/Tests/Handler/FieldCounterTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldCounterTest.php rename to core/modules/views/src/Tests/Handler/FieldCounterTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldCustomTest.php b/core/modules/views/src/Tests/Handler/FieldCustomTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldCustomTest.php rename to core/modules/views/src/Tests/Handler/FieldCustomTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldDateTest.php b/core/modules/views/src/Tests/Handler/FieldDateTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldDateTest.php rename to core/modules/views/src/Tests/Handler/FieldDateTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldDropButtonTest.php b/core/modules/views/src/Tests/Handler/FieldDropButtonTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldDropButtonTest.php rename to core/modules/views/src/Tests/Handler/FieldDropButtonTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldFileSizeTest.php b/core/modules/views/src/Tests/Handler/FieldFileSizeTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldFileSizeTest.php rename to core/modules/views/src/Tests/Handler/FieldFileSizeTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldUnitTest.php b/core/modules/views/src/Tests/Handler/FieldUnitTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldUnitTest.php rename to core/modules/views/src/Tests/Handler/FieldUnitTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldUrlTest.php b/core/modules/views/src/Tests/Handler/FieldUrlTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldUrlTest.php rename to core/modules/views/src/Tests/Handler/FieldUrlTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldWebTest.php b/core/modules/views/src/Tests/Handler/FieldWebTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldWebTest.php rename to core/modules/views/src/Tests/Handler/FieldWebTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FieldXssTest.php b/core/modules/views/src/Tests/Handler/FieldXssTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FieldXssTest.php rename to core/modules/views/src/Tests/Handler/FieldXssTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterBooleanOperatorStringTest.php b/core/modules/views/src/Tests/Handler/FilterBooleanOperatorStringTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterBooleanOperatorStringTest.php rename to core/modules/views/src/Tests/Handler/FilterBooleanOperatorStringTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterBooleanOperatorTest.php b/core/modules/views/src/Tests/Handler/FilterBooleanOperatorTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterBooleanOperatorTest.php rename to core/modules/views/src/Tests/Handler/FilterBooleanOperatorTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterCombineTest.php b/core/modules/views/src/Tests/Handler/FilterCombineTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterCombineTest.php rename to core/modules/views/src/Tests/Handler/FilterCombineTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterDateTest.php b/core/modules/views/src/Tests/Handler/FilterDateTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterDateTest.php rename to core/modules/views/src/Tests/Handler/FilterDateTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterEqualityTest.php b/core/modules/views/src/Tests/Handler/FilterEqualityTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterEqualityTest.php rename to core/modules/views/src/Tests/Handler/FilterEqualityTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterInOperatorTest.php b/core/modules/views/src/Tests/Handler/FilterInOperatorTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterInOperatorTest.php rename to core/modules/views/src/Tests/Handler/FilterInOperatorTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterNumericTest.php b/core/modules/views/src/Tests/Handler/FilterNumericTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterNumericTest.php rename to core/modules/views/src/Tests/Handler/FilterNumericTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/FilterStringTest.php b/core/modules/views/src/Tests/Handler/FilterStringTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/FilterStringTest.php rename to core/modules/views/src/Tests/Handler/FilterStringTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/HandlerAliasTest.php b/core/modules/views/src/Tests/Handler/HandlerAliasTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/HandlerAliasTest.php rename to core/modules/views/src/Tests/Handler/HandlerAliasTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/HandlerAllTest.php b/core/modules/views/src/Tests/Handler/HandlerAllTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/HandlerAllTest.php rename to core/modules/views/src/Tests/Handler/HandlerAllTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/HandlerTest.php b/core/modules/views/src/Tests/Handler/HandlerTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/HandlerTest.php rename to core/modules/views/src/Tests/Handler/HandlerTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/HandlerTestBase.php b/core/modules/views/src/Tests/Handler/HandlerTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/HandlerTestBase.php rename to core/modules/views/src/Tests/Handler/HandlerTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/RelationshipTest.php b/core/modules/views/src/Tests/Handler/RelationshipTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/RelationshipTest.php rename to core/modules/views/src/Tests/Handler/RelationshipTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/SortDateTest.php b/core/modules/views/src/Tests/Handler/SortDateTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/SortDateTest.php rename to core/modules/views/src/Tests/Handler/SortDateTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/SortRandomTest.php b/core/modules/views/src/Tests/Handler/SortRandomTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/SortRandomTest.php rename to core/modules/views/src/Tests/Handler/SortRandomTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Handler/SortTest.php b/core/modules/views/src/Tests/Handler/SortTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Handler/SortTest.php rename to core/modules/views/src/Tests/Handler/SortTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ModuleTest.php b/core/modules/views/src/Tests/ModuleTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ModuleTest.php rename to core/modules/views/src/Tests/ModuleTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/AccessTest.php b/core/modules/views/src/Tests/Plugin/AccessTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/AccessTest.php rename to core/modules/views/src/Tests/Plugin/AccessTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentDefaultTest.php b/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentDefaultTest.php rename to core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentValidatorTest.php b/core/modules/views/src/Tests/Plugin/ArgumentValidatorTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/ArgumentValidatorTest.php rename to core/modules/views/src/Tests/Plugin/ArgumentValidatorTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/BlockDependenciesTest.php b/core/modules/views/src/Tests/Plugin/BlockDependenciesTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/BlockDependenciesTest.php rename to core/modules/views/src/Tests/Plugin/BlockDependenciesTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/CacheTagTest.php b/core/modules/views/src/Tests/Plugin/CacheTagTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/CacheTagTest.php rename to core/modules/views/src/Tests/Plugin/CacheTagTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/CacheTest.php b/core/modules/views/src/Tests/Plugin/CacheTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/CacheTest.php rename to core/modules/views/src/Tests/Plugin/CacheTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayAttachmentTest.php b/core/modules/views/src/Tests/Plugin/DisplayAttachmentTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayAttachmentTest.php rename to core/modules/views/src/Tests/Plugin/DisplayAttachmentTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayExtenderTest.php b/core/modules/views/src/Tests/Plugin/DisplayExtenderTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayExtenderTest.php rename to core/modules/views/src/Tests/Plugin/DisplayExtenderTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayFeedTest.php b/core/modules/views/src/Tests/Plugin/DisplayFeedTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayFeedTest.php rename to core/modules/views/src/Tests/Plugin/DisplayFeedTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayPageTest.php b/core/modules/views/src/Tests/Plugin/DisplayPageTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayPageTest.php rename to core/modules/views/src/Tests/Plugin/DisplayPageTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayPageWebTest.php b/core/modules/views/src/Tests/Plugin/DisplayPageWebTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayPageWebTest.php rename to core/modules/views/src/Tests/Plugin/DisplayPageWebTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayTest.php b/core/modules/views/src/Tests/Plugin/DisplayTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayTest.php rename to core/modules/views/src/Tests/Plugin/DisplayTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayUnitTest.php b/core/modules/views/src/Tests/Plugin/DisplayUnitTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/DisplayUnitTest.php rename to core/modules/views/src/Tests/Plugin/DisplayUnitTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/ExposedFormTest.php b/core/modules/views/src/Tests/Plugin/ExposedFormTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/ExposedFormTest.php rename to core/modules/views/src/Tests/Plugin/ExposedFormTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/FilterTest.php b/core/modules/views/src/Tests/Plugin/FilterTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/FilterTest.php rename to core/modules/views/src/Tests/Plugin/FilterTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/JoinTest.php b/core/modules/views/src/Tests/Plugin/JoinTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/JoinTest.php rename to core/modules/views/src/Tests/Plugin/JoinTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/MiniPagerTest.php b/core/modules/views/src/Tests/Plugin/MiniPagerTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/MiniPagerTest.php rename to core/modules/views/src/Tests/Plugin/MiniPagerTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/PagerTest.php b/core/modules/views/src/Tests/Plugin/PagerTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/PagerTest.php rename to core/modules/views/src/Tests/Plugin/PagerTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/PluginTestBase.php b/core/modules/views/src/Tests/Plugin/PluginTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/PluginTestBase.php rename to core/modules/views/src/Tests/Plugin/PluginTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/PluginUnitTestBase.php b/core/modules/views/src/Tests/Plugin/PluginUnitTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/PluginUnitTestBase.php rename to core/modules/views/src/Tests/Plugin/PluginUnitTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/QueryTest.php b/core/modules/views/src/Tests/Plugin/QueryTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/QueryTest.php rename to core/modules/views/src/Tests/Plugin/QueryTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/RelationshipJoinTestBase.php b/core/modules/views/src/Tests/Plugin/RelationshipJoinTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/RelationshipJoinTestBase.php rename to core/modules/views/src/Tests/Plugin/RelationshipJoinTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/RowEntityTest.php b/core/modules/views/src/Tests/Plugin/RowEntityTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/RowEntityTest.php rename to core/modules/views/src/Tests/Plugin/RowEntityTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/SqlQueryTest.php b/core/modules/views/src/Tests/Plugin/SqlQueryTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/SqlQueryTest.php rename to core/modules/views/src/Tests/Plugin/SqlQueryTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleGridTest.php b/core/modules/views/src/Tests/Plugin/StyleGridTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleGridTest.php rename to core/modules/views/src/Tests/Plugin/StyleGridTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleMappingTest.php b/core/modules/views/src/Tests/Plugin/StyleMappingTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleMappingTest.php rename to core/modules/views/src/Tests/Plugin/StyleMappingTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableTest.php b/core/modules/views/src/Tests/Plugin/StyleTableTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableTest.php rename to core/modules/views/src/Tests/Plugin/StyleTableTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php b/core/modules/views/src/Tests/Plugin/StyleTableUnitTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTableUnitTest.php rename to core/modules/views/src/Tests/Plugin/StyleTableUnitTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTest.php b/core/modules/views/src/Tests/Plugin/StyleTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTest.php rename to core/modules/views/src/Tests/Plugin/StyleTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTestBase.php b/core/modules/views/src/Tests/Plugin/StyleTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleTestBase.php rename to core/modules/views/src/Tests/Plugin/StyleTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/StyleUnformattedTest.php b/core/modules/views/src/Tests/Plugin/StyleUnformattedTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/StyleUnformattedTest.php rename to core/modules/views/src/Tests/Plugin/StyleUnformattedTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Plugin/ViewsBlockTest.php b/core/modules/views/src/Tests/Plugin/ViewsBlockTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Plugin/ViewsBlockTest.php rename to core/modules/views/src/Tests/Plugin/ViewsBlockTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/PluginInstanceTest.php b/core/modules/views/src/Tests/PluginInstanceTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/PluginInstanceTest.php rename to core/modules/views/src/Tests/PluginInstanceTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/QueryGroupByTest.php b/core/modules/views/src/Tests/QueryGroupByTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/QueryGroupByTest.php rename to core/modules/views/src/Tests/QueryGroupByTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/SearchIntegrationTest.php b/core/modules/views/src/Tests/SearchIntegrationTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/SearchIntegrationTest.php rename to core/modules/views/src/Tests/SearchIntegrationTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/SearchMultilingualTest.php b/core/modules/views/src/Tests/SearchMultilingualTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/SearchMultilingualTest.php rename to core/modules/views/src/Tests/SearchMultilingualTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/TestHelperPlugin.php b/core/modules/views/src/Tests/TestHelperPlugin.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/TestHelperPlugin.php rename to core/modules/views/src/Tests/TestHelperPlugin.php diff --git a/core/modules/views/lib/Drupal/views/Tests/TokenReplaceTest.php b/core/modules/views/src/Tests/TokenReplaceTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/TokenReplaceTest.php rename to core/modules/views/src/Tests/TokenReplaceTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php b/core/modules/views/src/Tests/ViewAjaxTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewAjaxTest.php rename to core/modules/views/src/Tests/ViewAjaxTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewElementTest.php b/core/modules/views/src/Tests/ViewElementTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewElementTest.php rename to core/modules/views/src/Tests/ViewElementTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewExecutableTest.php b/core/modules/views/src/Tests/ViewExecutableTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewExecutableTest.php rename to core/modules/views/src/Tests/ViewExecutableTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewRenderTest.php b/core/modules/views/src/Tests/ViewRenderTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewRenderTest.php rename to core/modules/views/src/Tests/ViewRenderTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewStorageTest.php b/core/modules/views/src/Tests/ViewStorageTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewStorageTest.php rename to core/modules/views/src/Tests/ViewStorageTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewTestBase.php b/core/modules/views/src/Tests/ViewTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewTestBase.php rename to core/modules/views/src/Tests/ViewTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewTestData.php b/core/modules/views/src/Tests/ViewTestData.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewTestData.php rename to core/modules/views/src/Tests/ViewTestData.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewUnitTestBase.php b/core/modules/views/src/Tests/ViewUnitTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewUnitTestBase.php rename to core/modules/views/src/Tests/ViewUnitTestBase.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewsHooksTest.php b/core/modules/views/src/Tests/ViewsHooksTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewsHooksTest.php rename to core/modules/views/src/Tests/ViewsHooksTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewsTaxonomyAutocompleteTest.php b/core/modules/views/src/Tests/ViewsTaxonomyAutocompleteTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewsTaxonomyAutocompleteTest.php rename to core/modules/views/src/Tests/ViewsTaxonomyAutocompleteTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewsTemplateTest.php b/core/modules/views/src/Tests/ViewsTemplateTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewsTemplateTest.php rename to core/modules/views/src/Tests/ViewsTemplateTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/ViewsThemeIntegrationTest.php b/core/modules/views/src/Tests/ViewsThemeIntegrationTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/ViewsThemeIntegrationTest.php rename to core/modules/views/src/Tests/ViewsThemeIntegrationTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/BasicTest.php b/core/modules/views/src/Tests/Wizard/BasicTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/BasicTest.php rename to core/modules/views/src/Tests/Wizard/BasicTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/ItemsPerPageTest.php b/core/modules/views/src/Tests/Wizard/ItemsPerPageTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/ItemsPerPageTest.php rename to core/modules/views/src/Tests/Wizard/ItemsPerPageTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/MenuTest.php b/core/modules/views/src/Tests/Wizard/MenuTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/MenuTest.php rename to core/modules/views/src/Tests/Wizard/MenuTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/SortingTest.php b/core/modules/views/src/Tests/Wizard/SortingTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/SortingTest.php rename to core/modules/views/src/Tests/Wizard/SortingTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/TaggedWithTest.php b/core/modules/views/src/Tests/Wizard/TaggedWithTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/TaggedWithTest.php rename to core/modules/views/src/Tests/Wizard/TaggedWithTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/WizardPluginBaseUnitTest.php b/core/modules/views/src/Tests/Wizard/WizardPluginBaseUnitTest.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/WizardPluginBaseUnitTest.php rename to core/modules/views/src/Tests/Wizard/WizardPluginBaseUnitTest.php diff --git a/core/modules/views/lib/Drupal/views/Tests/Wizard/WizardTestBase.php b/core/modules/views/src/Tests/Wizard/WizardTestBase.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Tests/Wizard/WizardTestBase.php rename to core/modules/views/src/Tests/Wizard/WizardTestBase.php diff --git a/core/modules/views/lib/Drupal/views/ViewAccessController.php b/core/modules/views/src/ViewAccessController.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewAccessController.php rename to core/modules/views/src/ViewAccessController.php diff --git a/core/modules/views/lib/Drupal/views/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewExecutable.php rename to core/modules/views/src/ViewExecutable.php diff --git a/core/modules/views/lib/Drupal/views/ViewExecutableFactory.php b/core/modules/views/src/ViewExecutableFactory.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewExecutableFactory.php rename to core/modules/views/src/ViewExecutableFactory.php diff --git a/core/modules/views/lib/Drupal/views/ViewStorageInterface.php b/core/modules/views/src/ViewStorageInterface.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewStorageInterface.php rename to core/modules/views/src/ViewStorageInterface.php diff --git a/core/modules/views/lib/Drupal/views/Views.php b/core/modules/views/src/Views.php similarity index 100% rename from core/modules/views/lib/Drupal/views/Views.php rename to core/modules/views/src/Views.php diff --git a/core/modules/views/lib/Drupal/views/ViewsAccessCheck.php b/core/modules/views/src/ViewsAccessCheck.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewsAccessCheck.php rename to core/modules/views/src/ViewsAccessCheck.php diff --git a/core/modules/views/lib/Drupal/views/ViewsData.php b/core/modules/views/src/ViewsData.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewsData.php rename to core/modules/views/src/ViewsData.php diff --git a/core/modules/views/lib/Drupal/views/ViewsDataHelper.php b/core/modules/views/src/ViewsDataHelper.php similarity index 100% rename from core/modules/views/lib/Drupal/views/ViewsDataHelper.php rename to core/modules/views/src/ViewsDataHelper.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Form/ViewsTestDataElementForm.php b/core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataElementForm.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Form/ViewsTestDataElementForm.php rename to core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataElementForm.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/access/StaticTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/access/StaticTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/access/StaticTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/access/StaticTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/area/TestExample.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/area/TestExample.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/area/TestExample.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/area/TestExample.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/argument_default/ArgumentDefaultTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_default/ArgumentDefaultTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/argument_default/ArgumentDefaultTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/argument_default/ArgumentDefaultTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayNoAreaTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayNoAreaTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/display/DisplayTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display_extender/DisplayExtenderTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display_extender/DisplayExtenderTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display_extender/DisplayExtenderTest2.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest2.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display_extender/DisplayExtenderTest2.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/display_extender/DisplayExtenderTest2.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/field/FieldTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/field/FieldTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/field/FieldTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/filter/FilterTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/filter/FilterTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/FilterTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/join/JoinTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/join/JoinTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/row/RowTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/row/RowTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/row/RowTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/MappingTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/MappingTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/MappingTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/MappingTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTemplateTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTemplateTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php similarity index 100% rename from core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/style/StyleTest.php rename to core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php b/core/modules/views/tests/src/Controller/ViewAjaxControllerTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Controller/ViewAjaxControllerTest.php rename to core/modules/views/tests/src/Controller/ViewAjaxControllerTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Entity/ViewTest.php b/core/modules/views/tests/src/Entity/ViewTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Entity/ViewTest.php rename to core/modules/views/tests/src/Entity/ViewTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/EventSubscriber/RouteSubscriberTest.php b/core/modules/views/tests/src/EventSubscriber/RouteSubscriberTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/EventSubscriber/RouteSubscriberTest.php rename to core/modules/views/tests/src/EventSubscriber/RouteSubscriberTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/Block/ViewsBlockTest.php b/core/modules/views/tests/src/Plugin/Block/ViewsBlockTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/Block/ViewsBlockTest.php rename to core/modules/views/tests/src/Plugin/Block/ViewsBlockTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php b/core/modules/views/tests/src/Plugin/Derivative/ViewsLocalTaskTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/Derivative/ViewsLocalTaskTest.php rename to core/modules/views/tests/src/Plugin/Derivative/ViewsLocalTaskTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/area/MessagesTest.php b/core/modules/views/tests/src/Plugin/area/MessagesTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/area/MessagesTest.php rename to core/modules/views/tests/src/Plugin/area/MessagesTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/area/ResultTest.php b/core/modules/views/tests/src/Plugin/area/ResultTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/area/ResultTest.php rename to core/modules/views/tests/src/Plugin/area/ResultTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/argument_default/RawTest.php b/core/modules/views/tests/src/Plugin/argument_default/RawTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/argument_default/RawTest.php rename to core/modules/views/tests/src/Plugin/argument_default/RawTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/argument_validator/EntityTest.php b/core/modules/views/tests/src/Plugin/argument_validator/EntityTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/argument_validator/EntityTest.php rename to core/modules/views/tests/src/Plugin/argument_validator/EntityTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/display/PathPluginBaseTest.php b/core/modules/views/tests/src/Plugin/display/PathPluginBaseTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/display/PathPluginBaseTest.php rename to core/modules/views/tests/src/Plugin/display/PathPluginBaseTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/field/CounterTest.php b/core/modules/views/tests/src/Plugin/field/CounterTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/field/CounterTest.php rename to core/modules/views/tests/src/Plugin/field/CounterTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Plugin/pager/PagerPluginBaseTest.php b/core/modules/views/tests/src/Plugin/pager/PagerPluginBaseTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Plugin/pager/PagerPluginBaseTest.php rename to core/modules/views/tests/src/Plugin/pager/PagerPluginBaseTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/PluginBaseTest.php b/core/modules/views/tests/src/PluginBaseTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/PluginBaseTest.php rename to core/modules/views/tests/src/PluginBaseTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/PluginTypeListTest.php b/core/modules/views/tests/src/PluginTypeListTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/PluginTypeListTest.php rename to core/modules/views/tests/src/PluginTypeListTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/Routing/ViewPageControllerTest.php b/core/modules/views/tests/src/Routing/ViewPageControllerTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/Routing/ViewPageControllerTest.php rename to core/modules/views/tests/src/Routing/ViewPageControllerTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/ViewExecutableUnitTest.php b/core/modules/views/tests/src/ViewExecutableUnitTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/ViewExecutableUnitTest.php rename to core/modules/views/tests/src/ViewExecutableUnitTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/ViewsDataHelperTest.php b/core/modules/views/tests/src/ViewsDataHelperTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/ViewsDataHelperTest.php rename to core/modules/views/tests/src/ViewsDataHelperTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/ViewsDataTest.php b/core/modules/views/tests/src/ViewsDataTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/ViewsDataTest.php rename to core/modules/views/tests/src/ViewsDataTest.php diff --git a/core/modules/views/tests/Drupal/views/Tests/ViewsTest.php b/core/modules/views/tests/src/ViewsTest.php similarity index 100% rename from core/modules/views/tests/Drupal/views/Tests/ViewsTest.php rename to core/modules/views/tests/src/ViewsTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php b/core/modules/views_ui/src/Controller/ViewsUIController.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Controller/ViewsUIController.php rename to core/modules/views_ui/src/Controller/ViewsUIController.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/AdvancedSettingsForm.php b/core/modules/views_ui/src/Form/AdvancedSettingsForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/AdvancedSettingsForm.php rename to core/modules/views_ui/src/Form/AdvancedSettingsForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/AddHandler.php b/core/modules/views_ui/src/Form/Ajax/AddHandler.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/AddHandler.php rename to core/modules/views_ui/src/Form/Ajax/AddHandler.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Analyze.php b/core/modules/views_ui/src/Form/Ajax/Analyze.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Analyze.php rename to core/modules/views_ui/src/Form/Ajax/Analyze.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandler.php b/core/modules/views_ui/src/Form/Ajax/ConfigHandler.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandler.php rename to core/modules/views_ui/src/Form/Ajax/ConfigHandler.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandlerExtra.php b/core/modules/views_ui/src/Form/Ajax/ConfigHandlerExtra.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandlerExtra.php rename to core/modules/views_ui/src/Form/Ajax/ConfigHandlerExtra.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandlerGroup.php b/core/modules/views_ui/src/Form/Ajax/ConfigHandlerGroup.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ConfigHandlerGroup.php rename to core/modules/views_ui/src/Form/Ajax/ConfigHandlerGroup.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Display.php b/core/modules/views_ui/src/Form/Ajax/Display.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Display.php rename to core/modules/views_ui/src/Form/Ajax/Display.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/EditDetails.php b/core/modules/views_ui/src/Form/Ajax/EditDetails.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/EditDetails.php rename to core/modules/views_ui/src/Form/Ajax/EditDetails.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Rearrange.php b/core/modules/views_ui/src/Form/Ajax/Rearrange.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/Rearrange.php rename to core/modules/views_ui/src/Form/Ajax/Rearrange.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/RearrangeFilter.php b/core/modules/views_ui/src/Form/Ajax/RearrangeFilter.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/RearrangeFilter.php rename to core/modules/views_ui/src/Form/Ajax/RearrangeFilter.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ReorderDisplays.php b/core/modules/views_ui/src/Form/Ajax/ReorderDisplays.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ReorderDisplays.php rename to core/modules/views_ui/src/Form/Ajax/ReorderDisplays.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ViewsFormBase.php b/core/modules/views_ui/src/Form/Ajax/ViewsFormBase.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ViewsFormBase.php rename to core/modules/views_ui/src/Form/Ajax/ViewsFormBase.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ViewsFormInterface.php b/core/modules/views_ui/src/Form/Ajax/ViewsFormInterface.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/Ajax/ViewsFormInterface.php rename to core/modules/views_ui/src/Form/Ajax/ViewsFormInterface.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/BasicSettingsForm.php b/core/modules/views_ui/src/Form/BasicSettingsForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/BasicSettingsForm.php rename to core/modules/views_ui/src/Form/BasicSettingsForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Form/BreakLockForm.php b/core/modules/views_ui/src/Form/BreakLockForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Form/BreakLockForm.php rename to core/modules/views_ui/src/Form/BreakLockForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ParamConverter/ViewUIConverter.php b/core/modules/views_ui/src/ParamConverter/ViewUIConverter.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ParamConverter/ViewUIConverter.php rename to core/modules/views_ui/src/ParamConverter/ViewUIConverter.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/AnalyzeTest.php b/core/modules/views_ui/src/Tests/AnalyzeTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/AnalyzeTest.php rename to core/modules/views_ui/src/Tests/AnalyzeTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/CachedDataUITest.php b/core/modules/views_ui/src/Tests/CachedDataUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/CachedDataUITest.php rename to core/modules/views_ui/src/Tests/CachedDataUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/CustomBooleanTest.php b/core/modules/views_ui/src/Tests/CustomBooleanTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/CustomBooleanTest.php rename to core/modules/views_ui/src/Tests/CustomBooleanTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php b/core/modules/views_ui/src/Tests/DefaultViewsTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DefaultViewsTest.php rename to core/modules/views_ui/src/Tests/DefaultViewsTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayAttachmentTest.php b/core/modules/views_ui/src/Tests/DisplayAttachmentTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayAttachmentTest.php rename to core/modules/views_ui/src/Tests/DisplayAttachmentTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayExtenderUITest.php b/core/modules/views_ui/src/Tests/DisplayExtenderUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayExtenderUITest.php rename to core/modules/views_ui/src/Tests/DisplayExtenderUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayPath.php b/core/modules/views_ui/src/Tests/DisplayPath.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayPath.php rename to core/modules/views_ui/src/Tests/DisplayPath.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayTest.php b/core/modules/views_ui/src/Tests/DisplayTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayTest.php rename to core/modules/views_ui/src/Tests/DisplayTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayTestCRUD.php b/core/modules/views_ui/src/Tests/DisplayTestCRUD.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/DisplayTestCRUD.php rename to core/modules/views_ui/src/Tests/DisplayTestCRUD.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/ExposedFormUITest.php b/core/modules/views_ui/src/Tests/ExposedFormUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/ExposedFormUITest.php rename to core/modules/views_ui/src/Tests/ExposedFormUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/FieldUITest.php b/core/modules/views_ui/src/Tests/FieldUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/FieldUITest.php rename to core/modules/views_ui/src/Tests/FieldUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/FilterBooleanWebTest.php b/core/modules/views_ui/src/Tests/FilterBooleanWebTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/FilterBooleanWebTest.php rename to core/modules/views_ui/src/Tests/FilterBooleanWebTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/GroupByTest.php b/core/modules/views_ui/src/Tests/GroupByTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/GroupByTest.php rename to core/modules/views_ui/src/Tests/GroupByTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/HandlerTest.php b/core/modules/views_ui/src/Tests/HandlerTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/HandlerTest.php rename to core/modules/views_ui/src/Tests/HandlerTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/OverrideDisplaysTest.php b/core/modules/views_ui/src/Tests/OverrideDisplaysTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/OverrideDisplaysTest.php rename to core/modules/views_ui/src/Tests/OverrideDisplaysTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/PreviewTest.php b/core/modules/views_ui/src/Tests/PreviewTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/PreviewTest.php rename to core/modules/views_ui/src/Tests/PreviewTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/QueryTest.php b/core/modules/views_ui/src/Tests/QueryTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/QueryTest.php rename to core/modules/views_ui/src/Tests/QueryTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/RearrangeFieldsTest.php b/core/modules/views_ui/src/Tests/RearrangeFieldsTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/RearrangeFieldsTest.php rename to core/modules/views_ui/src/Tests/RearrangeFieldsTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/RedirectTest.php b/core/modules/views_ui/src/Tests/RedirectTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/RedirectTest.php rename to core/modules/views_ui/src/Tests/RedirectTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/RowUITest.php b/core/modules/views_ui/src/Tests/RowUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/RowUITest.php rename to core/modules/views_ui/src/Tests/RowUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/SettingsTest.php b/core/modules/views_ui/src/Tests/SettingsTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/SettingsTest.php rename to core/modules/views_ui/src/Tests/SettingsTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/StorageTest.php b/core/modules/views_ui/src/Tests/StorageTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/StorageTest.php rename to core/modules/views_ui/src/Tests/StorageTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/StyleUITest.php b/core/modules/views_ui/src/Tests/StyleUITest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/StyleUITest.php rename to core/modules/views_ui/src/Tests/StyleUITest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/TagTest.php b/core/modules/views_ui/src/Tests/TagTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/TagTest.php rename to core/modules/views_ui/src/Tests/TagTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php b/core/modules/views_ui/src/Tests/UITestBase.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/UITestBase.php rename to core/modules/views_ui/src/Tests/UITestBase.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/ViewEditTest.php b/core/modules/views_ui/src/Tests/ViewEditTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/ViewEditTest.php rename to core/modules/views_ui/src/Tests/ViewEditTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/ViewsUITourTest.php b/core/modules/views_ui/src/Tests/ViewsUITourTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/ViewsUITourTest.php rename to core/modules/views_ui/src/Tests/ViewsUITourTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/Tests/WizardTest.php b/core/modules/views_ui/src/Tests/WizardTest.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/Tests/WizardTest.php rename to core/modules/views_ui/src/Tests/WizardTest.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewAddForm.php b/core/modules/views_ui/src/ViewAddForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewAddForm.php rename to core/modules/views_ui/src/ViewAddForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewCloneForm.php b/core/modules/views_ui/src/ViewCloneForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewCloneForm.php rename to core/modules/views_ui/src/ViewCloneForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewDeleteForm.php b/core/modules/views_ui/src/ViewDeleteForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewDeleteForm.php rename to core/modules/views_ui/src/ViewDeleteForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewEditForm.php b/core/modules/views_ui/src/ViewEditForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewEditForm.php rename to core/modules/views_ui/src/ViewEditForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewFormBase.php b/core/modules/views_ui/src/ViewFormBase.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewFormBase.php rename to core/modules/views_ui/src/ViewFormBase.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewListBuilder.php b/core/modules/views_ui/src/ViewListBuilder.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewListBuilder.php rename to core/modules/views_ui/src/ViewListBuilder.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewPreviewForm.php b/core/modules/views_ui/src/ViewPreviewForm.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewPreviewForm.php rename to core/modules/views_ui/src/ViewPreviewForm.php diff --git a/core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php b/core/modules/views_ui/src/ViewUI.php similarity index 100% rename from core/modules/views_ui/lib/Drupal/views_ui/ViewUI.php rename to core/modules/views_ui/src/ViewUI.php diff --git a/core/modules/views_ui/tests/Drupal/views_ui/Tests/Form/Ajax/RearrangeFilterTest.php b/core/modules/views_ui/tests/src/Form/Ajax/RearrangeFilterTest.php similarity index 100% rename from core/modules/views_ui/tests/Drupal/views_ui/Tests/Form/Ajax/RearrangeFilterTest.php rename to core/modules/views_ui/tests/src/Form/Ajax/RearrangeFilterTest.php diff --git a/core/modules/views_ui/tests/Drupal/views_ui/Tests/ViewListBuilderTest.php b/core/modules/views_ui/tests/src/ViewListBuilderTest.php similarity index 100% rename from core/modules/views_ui/tests/Drupal/views_ui/Tests/ViewListBuilderTest.php rename to core/modules/views_ui/tests/src/ViewListBuilderTest.php diff --git a/core/modules/views_ui/tests/Drupal/views_ui/Tests/ViewUIObjectTest.php b/core/modules/views_ui/tests/src/ViewUIObjectTest.php similarity index 100% rename from core/modules/views_ui/tests/Drupal/views_ui/Tests/ViewUIObjectTest.php rename to core/modules/views_ui/tests/src/ViewUIObjectTest.php diff --git a/core/modules/xmlrpc/lib/Drupal/xmlrpc/Controller/XmlrpcController.php b/core/modules/xmlrpc/src/Controller/XmlrpcController.php similarity index 100% rename from core/modules/xmlrpc/lib/Drupal/xmlrpc/Controller/XmlrpcController.php rename to core/modules/xmlrpc/src/Controller/XmlrpcController.php diff --git a/core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcBasicTest.php b/core/modules/xmlrpc/src/Tests/XmlRpcBasicTest.php similarity index 100% rename from core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcBasicTest.php rename to core/modules/xmlrpc/src/Tests/XmlRpcBasicTest.php diff --git a/core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcMessagesTest.php b/core/modules/xmlrpc/src/Tests/XmlRpcMessagesTest.php similarity index 100% rename from core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcMessagesTest.php rename to core/modules/xmlrpc/src/Tests/XmlRpcMessagesTest.php diff --git a/core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcValidatorTest.php b/core/modules/xmlrpc/src/Tests/XmlRpcValidatorTest.php similarity index 100% rename from core/modules/xmlrpc/lib/Drupal/xmlrpc/Tests/XmlRpcValidatorTest.php rename to core/modules/xmlrpc/src/Tests/XmlRpcValidatorTest.php diff --git a/core/profiles/minimal/lib/Drupal/minimal/Tests/MinimalTest.php b/core/profiles/minimal/src/Tests/MinimalTest.php similarity index 100% rename from core/profiles/minimal/lib/Drupal/minimal/Tests/MinimalTest.php rename to core/profiles/minimal/src/Tests/MinimalTest.php diff --git a/core/profiles/standard/lib/Drupal/standard/Tests/StandardTest.php b/core/profiles/standard/src/Tests/StandardTest.php similarity index 100% rename from core/profiles/standard/lib/Drupal/standard/Tests/StandardTest.php rename to core/profiles/standard/src/Tests/StandardTest.php diff --git a/core/profiles/testing/modules/drupal_system_listing_compatible_test/lib/Drupal/drupal_system_listing_compatible_test/Tests/SystemListingCompatibleTest.php b/core/profiles/testing/modules/drupal_system_listing_compatible_test/src/Tests/SystemListingCompatibleTest.php similarity index 100% rename from core/profiles/testing/modules/drupal_system_listing_compatible_test/lib/Drupal/drupal_system_listing_compatible_test/Tests/SystemListingCompatibleTest.php rename to core/profiles/testing/modules/drupal_system_listing_compatible_test/src/Tests/SystemListingCompatibleTest.php -- 1.8.5.1