diff --git a/composer.json b/composer.json index dab745dc2..d7f8e7751 100644 --- a/composer.json +++ b/composer.json @@ -200,7 +200,7 @@ }, "autoload-dev": { "psr-4": { - "Tests\\": "tests/" + "Tests\\Wallabag\\CoreBundle\\": "tests/" }, "files": [ "tests/functions.php" diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 57b935b4e..48987c3a2 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -73,4 +73,4 @@ parameters: - message: "#^Call to an undefined method DOMNode\\:\\:getAttribute\\(\\)\\.$#" count: 1 - path: tests/Wallabag/CoreBundle/Controller/FeedControllerTest.php + path: tests/Controller/FeedControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php b/tests/Command/CleanDuplicatesCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php rename to tests/Command/CleanDuplicatesCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php b/tests/Command/ExportCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/ExportCommandTest.php rename to tests/Command/ExportCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/GenerateUrlHashesCommandTest.php b/tests/Command/GenerateUrlHashesCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/GenerateUrlHashesCommandTest.php rename to tests/Command/GenerateUrlHashesCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/Import/ImportCommandTest.php b/tests/Command/Import/ImportCommandTest.php similarity index 93% rename from tests/Wallabag/CoreBundle/Command/Import/ImportCommandTest.php rename to tests/Command/Import/ImportCommandTest.php index 44b930e16..5f112acf4 100644 --- a/tests/Wallabag/CoreBundle/Command/Import/ImportCommandTest.php +++ b/tests/Command/Import/ImportCommandTest.php @@ -64,7 +64,7 @@ class ImportCommandTest extends WallabagCoreTestCase $tester = new CommandTester($command); $tester->execute([ 'username' => 'admin', - 'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-read.json', + 'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/fixtures/Import/wallabag-v2-read.json', '--importer' => 'v2', ]); @@ -83,7 +83,7 @@ class ImportCommandTest extends WallabagCoreTestCase $tester = new CommandTester($command); $tester->execute([ 'username' => $this->getLoggedInUserId(), - 'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-read.json', + 'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/fixtures/Import/wallabag-v2-read.json', '--useUserId' => true, '--importer' => 'v2', ]); diff --git a/tests/Wallabag/CoreBundle/Command/Import/RedisWorkerCommandTest.php b/tests/Command/Import/RedisWorkerCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/Import/RedisWorkerCommandTest.php rename to tests/Command/Import/RedisWorkerCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/InstallCommandTest.php b/tests/Command/InstallCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/InstallCommandTest.php rename to tests/Command/InstallCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php b/tests/Command/ListUserCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/ListUserCommandTest.php rename to tests/Command/ListUserCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/ReloadEntryCommandTest.php b/tests/Command/ReloadEntryCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/ReloadEntryCommandTest.php rename to tests/Command/ReloadEntryCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php b/tests/Command/ShowUserCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/ShowUserCommandTest.php rename to tests/Command/ShowUserCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/TagAllCommandTest.php b/tests/Command/TagAllCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/TagAllCommandTest.php rename to tests/Command/TagAllCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Command/UpdatePicturesPathCommandTest.php b/tests/Command/UpdatePicturesPathCommandTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Command/UpdatePicturesPathCommandTest.php rename to tests/Command/UpdatePicturesPathCommandTest.php diff --git a/tests/Wallabag/CoreBundle/Consumer/AMQPEntryConsumerTest.php b/tests/Consumer/AMQPEntryConsumerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Consumer/AMQPEntryConsumerTest.php rename to tests/Consumer/AMQPEntryConsumerTest.php diff --git a/tests/Wallabag/CoreBundle/Consumer/RedisEntryConsumerTest.php b/tests/Consumer/RedisEntryConsumerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Consumer/RedisEntryConsumerTest.php rename to tests/Consumer/RedisEntryConsumerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/AnnotationControllerTest.php b/tests/Controller/AnnotationControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/AnnotationControllerTest.php rename to tests/Controller/AnnotationControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/ConfigRestControllerTest.php b/tests/Controller/Api/ConfigRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/ConfigRestControllerTest.php rename to tests/Controller/Api/ConfigRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/DeveloperControllerTest.php b/tests/Controller/Api/DeveloperControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/DeveloperControllerTest.php rename to tests/Controller/Api/DeveloperControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/EntryRestControllerTest.php b/tests/Controller/Api/EntryRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/EntryRestControllerTest.php rename to tests/Controller/Api/EntryRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/SearchRestControllerTest.php b/tests/Controller/Api/SearchRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/SearchRestControllerTest.php rename to tests/Controller/Api/SearchRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/TagRestControllerTest.php b/tests/Controller/Api/TagRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/TagRestControllerTest.php rename to tests/Controller/Api/TagRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/TaggingRuleRestControllerTest.php b/tests/Controller/Api/TaggingRuleRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/TaggingRuleRestControllerTest.php rename to tests/Controller/Api/TaggingRuleRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/UserRestControllerTest.php b/tests/Controller/Api/UserRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/UserRestControllerTest.php rename to tests/Controller/Api/UserRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/WallabagApiTestCase.php b/tests/Controller/Api/WallabagApiTestCase.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/WallabagApiTestCase.php rename to tests/Controller/Api/WallabagApiTestCase.php diff --git a/tests/Wallabag/CoreBundle/Controller/Api/WallabagRestControllerTest.php b/tests/Controller/Api/WallabagRestControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Api/WallabagRestControllerTest.php rename to tests/Controller/Api/WallabagRestControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Controller/ConfigControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php rename to tests/Controller/ConfigControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Controller/EntryControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php rename to tests/Controller/EntryControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php b/tests/Controller/ExportControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/ExportControllerTest.php rename to tests/Controller/ExportControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/FeedControllerTest.php b/tests/Controller/FeedControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/FeedControllerTest.php rename to tests/Controller/FeedControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/IgnoreOriginInstanceRuleControllerTest.php b/tests/Controller/IgnoreOriginInstanceRuleControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/IgnoreOriginInstanceRuleControllerTest.php rename to tests/Controller/IgnoreOriginInstanceRuleControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/ChromeControllerTest.php b/tests/Controller/Import/ChromeControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/ChromeControllerTest.php rename to tests/Controller/Import/ChromeControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/DeliciousControllerTest.php b/tests/Controller/Import/DeliciousControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/DeliciousControllerTest.php rename to tests/Controller/Import/DeliciousControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/ElcuratorControllerTest.php b/tests/Controller/Import/ElcuratorControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/ElcuratorControllerTest.php rename to tests/Controller/Import/ElcuratorControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/FirefoxControllerTest.php b/tests/Controller/Import/FirefoxControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/FirefoxControllerTest.php rename to tests/Controller/Import/FirefoxControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/ImportControllerTest.php b/tests/Controller/Import/ImportControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/ImportControllerTest.php rename to tests/Controller/Import/ImportControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/InstapaperControllerTest.php b/tests/Controller/Import/InstapaperControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/InstapaperControllerTest.php rename to tests/Controller/Import/InstapaperControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/PinboardControllerTest.php b/tests/Controller/Import/PinboardControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/PinboardControllerTest.php rename to tests/Controller/Import/PinboardControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/PocketControllerTest.php b/tests/Controller/Import/PocketControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/PocketControllerTest.php rename to tests/Controller/Import/PocketControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/PocketHtmlControllerTest.php b/tests/Controller/Import/PocketHtmlControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/PocketHtmlControllerTest.php rename to tests/Controller/Import/PocketHtmlControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/ReadabilityControllerTest.php b/tests/Controller/Import/ReadabilityControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/ReadabilityControllerTest.php rename to tests/Controller/Import/ReadabilityControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/ShaarliControllerTest.php b/tests/Controller/Import/ShaarliControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/ShaarliControllerTest.php rename to tests/Controller/Import/ShaarliControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/WallabagV1ControllerTest.php b/tests/Controller/Import/WallabagV1ControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/WallabagV1ControllerTest.php rename to tests/Controller/Import/WallabagV1ControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/Import/WallabagV2ControllerTest.php b/tests/Controller/Import/WallabagV2ControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/Import/WallabagV2ControllerTest.php rename to tests/Controller/Import/WallabagV2ControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php b/tests/Controller/SecurityControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/SecurityControllerTest.php rename to tests/Controller/SecurityControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/SettingsControllerTest.php b/tests/Controller/SettingsControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/SettingsControllerTest.php rename to tests/Controller/SettingsControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/SiteCredentialControllerTest.php b/tests/Controller/SiteCredentialControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/SiteCredentialControllerTest.php rename to tests/Controller/SiteCredentialControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/StaticControllerTest.php b/tests/Controller/StaticControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/StaticControllerTest.php rename to tests/Controller/StaticControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/TagControllerTest.php b/tests/Controller/TagControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/TagControllerTest.php rename to tests/Controller/TagControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Controller/UserControllerTest.php b/tests/Controller/UserControllerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Controller/UserControllerTest.php rename to tests/Controller/UserControllerTest.php diff --git a/tests/Wallabag/CoreBundle/Entity/EntryTest.php b/tests/Entity/EntryTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Entity/EntryTest.php rename to tests/Entity/EntryTest.php diff --git a/tests/Wallabag/CoreBundle/Event/Listener/AuthenticationFailureListenerTest.php b/tests/Event/Listener/AuthenticationFailureListenerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Event/Listener/AuthenticationFailureListenerTest.php rename to tests/Event/Listener/AuthenticationFailureListenerTest.php diff --git a/tests/Wallabag/CoreBundle/Event/Listener/CreateConfigListenerTest.php b/tests/Event/Listener/CreateConfigListenerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Event/Listener/CreateConfigListenerTest.php rename to tests/Event/Listener/CreateConfigListenerTest.php diff --git a/tests/Wallabag/CoreBundle/Event/Listener/LocaleListenerTest.php b/tests/Event/Listener/LocaleListenerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Event/Listener/LocaleListenerTest.php rename to tests/Event/Listener/LocaleListenerTest.php diff --git a/tests/Wallabag/CoreBundle/Event/Listener/UserLocaleListenerTest.php b/tests/Event/Listener/UserLocaleListenerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Event/Listener/UserLocaleListenerTest.php rename to tests/Event/Listener/UserLocaleListenerTest.php diff --git a/tests/Wallabag/CoreBundle/Event/Subscriber/TablePrefixSubscriberTest.php b/tests/Event/Subscriber/TablePrefixSubscriberTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Event/Subscriber/TablePrefixSubscriberTest.php rename to tests/Event/Subscriber/TablePrefixSubscriberTest.php diff --git a/tests/Wallabag/CoreBundle/Form/DataTransformer/StringToListTransformerTest.php b/tests/Form/DataTransformer/StringToListTransformerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Form/DataTransformer/StringToListTransformerTest.php rename to tests/Form/DataTransformer/StringToListTransformerTest.php diff --git a/tests/Wallabag/CoreBundle/Guzzle/AuthenticatorSubscriberTest.php b/tests/Guzzle/AuthenticatorSubscriberTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Guzzle/AuthenticatorSubscriberTest.php rename to tests/Guzzle/AuthenticatorSubscriberTest.php diff --git a/tests/Wallabag/CoreBundle/Guzzle/FixupMondeDiplomatiqueUriSubscriberTest.php b/tests/Guzzle/FixupMondeDiplomatiqueUriSubscriberTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Guzzle/FixupMondeDiplomatiqueUriSubscriberTest.php rename to tests/Guzzle/FixupMondeDiplomatiqueUriSubscriberTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php b/tests/Helper/ContentProxyTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php rename to tests/Helper/ContentProxyTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/CryptoProxyTest.php b/tests/Helper/CryptoProxyTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/CryptoProxyTest.php rename to tests/Helper/CryptoProxyTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/DownloadImagesTest.php b/tests/Helper/DownloadImagesTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/DownloadImagesTest.php rename to tests/Helper/DownloadImagesTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/RedirectTest.php b/tests/Helper/RedirectTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/RedirectTest.php rename to tests/Helper/RedirectTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/RuleBasedIgnoreOriginProcessorTest.php b/tests/Helper/RuleBasedIgnoreOriginProcessorTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/RuleBasedIgnoreOriginProcessorTest.php rename to tests/Helper/RuleBasedIgnoreOriginProcessorTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php b/tests/Helper/RuleBasedTaggerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/RuleBasedTaggerTest.php rename to tests/Helper/RuleBasedTaggerTest.php diff --git a/tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php b/tests/Helper/TagsAssignerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Helper/TagsAssignerTest.php rename to tests/Helper/TagsAssignerTest.php diff --git a/tests/Wallabag/CoreBundle/Import/ChromeImportTest.php b/tests/Import/ChromeImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/ChromeImportTest.php rename to tests/Import/ChromeImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/FirefoxImportTest.php b/tests/Import/FirefoxImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/FirefoxImportTest.php rename to tests/Import/FirefoxImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/ImportChainTest.php b/tests/Import/ImportChainTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/ImportChainTest.php rename to tests/Import/ImportChainTest.php diff --git a/tests/Wallabag/CoreBundle/Import/ImportCompilerPassTest.php b/tests/Import/ImportCompilerPassTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/ImportCompilerPassTest.php rename to tests/Import/ImportCompilerPassTest.php diff --git a/tests/Wallabag/CoreBundle/Import/InstapaperImportTest.php b/tests/Import/InstapaperImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/InstapaperImportTest.php rename to tests/Import/InstapaperImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/PocketHtmlImportTest.php b/tests/Import/PocketHtmlImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/PocketHtmlImportTest.php rename to tests/Import/PocketHtmlImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/PocketImportTest.php b/tests/Import/PocketImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/PocketImportTest.php rename to tests/Import/PocketImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/ReadabilityImportTest.php b/tests/Import/ReadabilityImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/ReadabilityImportTest.php rename to tests/Import/ReadabilityImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/ShaarliImportTest.php b/tests/Import/ShaarliImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/ShaarliImportTest.php rename to tests/Import/ShaarliImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/WallabagV1ImportTest.php b/tests/Import/WallabagV1ImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/WallabagV1ImportTest.php rename to tests/Import/WallabagV1ImportTest.php diff --git a/tests/Wallabag/CoreBundle/Import/WallabagV2ImportTest.php b/tests/Import/WallabagV2ImportTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Import/WallabagV2ImportTest.php rename to tests/Import/WallabagV2ImportTest.php diff --git a/tests/Wallabag/CoreBundle/Mailer/AuthCodeMailerTest.php b/tests/Mailer/AuthCodeMailerTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Mailer/AuthCodeMailerTest.php rename to tests/Mailer/AuthCodeMailerTest.php diff --git a/tests/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverterTest.php b/tests/ParamConverter/UsernameFeedTokenConverterTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/ParamConverter/UsernameFeedTokenConverterTest.php rename to tests/ParamConverter/UsernameFeedTokenConverterTest.php diff --git a/tests/Wallabag/CoreBundle/SiteConfig/ArraySiteConfigBuilderTest.php b/tests/SiteConfig/ArraySiteConfigBuilderTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/SiteConfig/ArraySiteConfigBuilderTest.php rename to tests/SiteConfig/ArraySiteConfigBuilderTest.php diff --git a/tests/Wallabag/CoreBundle/SiteConfig/Authenticator/LoginFormAuthenticatorTest.php b/tests/SiteConfig/Authenticator/LoginFormAuthenticatorTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/SiteConfig/Authenticator/LoginFormAuthenticatorTest.php rename to tests/SiteConfig/Authenticator/LoginFormAuthenticatorTest.php diff --git a/tests/Wallabag/CoreBundle/SiteConfig/GrabySiteConfigBuilderTest.php b/tests/SiteConfig/GrabySiteConfigBuilderTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/SiteConfig/GrabySiteConfigBuilderTest.php rename to tests/SiteConfig/GrabySiteConfigBuilderTest.php diff --git a/tests/Wallabag/CoreBundle/SiteConfig/SiteConfigTest.php b/tests/SiteConfig/SiteConfigTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/SiteConfig/SiteConfigTest.php rename to tests/SiteConfig/SiteConfigTest.php diff --git a/tests/Wallabag/CoreBundle/Tools/UtilsTest.php b/tests/Tools/UtilsTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/UtilsTest.php rename to tests/Tools/UtilsTest.php diff --git a/tests/Wallabag/CoreBundle/Tools/samples/README b/tests/Tools/samples/README similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/README rename to tests/Tools/samples/README diff --git a/tests/Wallabag/CoreBundle/Tools/samples/chinese.txt b/tests/Tools/samples/chinese.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/chinese.txt rename to tests/Tools/samples/chinese.txt diff --git a/tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt b/tests/Tools/samples/cyrillic.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/cyrillic.txt rename to tests/Tools/samples/cyrillic.txt diff --git a/tests/Wallabag/CoreBundle/Tools/samples/greek.txt b/tests/Tools/samples/greek.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/greek.txt rename to tests/Tools/samples/greek.txt diff --git a/tests/Wallabag/CoreBundle/Tools/samples/japanese.txt b/tests/Tools/samples/japanese.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/japanese.txt rename to tests/Tools/samples/japanese.txt diff --git a/tests/Wallabag/CoreBundle/Tools/samples/korean.txt b/tests/Tools/samples/korean.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/korean.txt rename to tests/Tools/samples/korean.txt diff --git a/tests/Wallabag/CoreBundle/Tools/samples/latin.txt b/tests/Tools/samples/latin.txt similarity index 100% rename from tests/Wallabag/CoreBundle/Tools/samples/latin.txt rename to tests/Tools/samples/latin.txt diff --git a/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php b/tests/Twig/WallabagExtensionTest.php similarity index 100% rename from tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php rename to tests/Twig/WallabagExtensionTest.php diff --git a/tests/Wallabag/CoreBundle/WallabagCoreTestCase.php b/tests/WallabagCoreTestCase.php similarity index 100% rename from tests/Wallabag/CoreBundle/WallabagCoreTestCase.php rename to tests/WallabagCoreTestCase.php diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/chrome-bookmarks b/tests/fixtures/Import/chrome-bookmarks similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/chrome-bookmarks rename to tests/fixtures/Import/chrome-bookmarks diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/delicious_export.2021.02.06_21.10.json b/tests/fixtures/Import/delicious_export.2021.02.06_21.10.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/delicious_export.2021.02.06_21.10.json rename to tests/fixtures/Import/delicious_export.2021.02.06_21.10.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/elcurator.json b/tests/fixtures/Import/elcurator.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/elcurator.json rename to tests/fixtures/Import/elcurator.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/firefox-bookmarks.json b/tests/fixtures/Import/firefox-bookmarks.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/firefox-bookmarks.json rename to tests/fixtures/Import/firefox-bookmarks.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/instapaper-export.csv b/tests/fixtures/Import/instapaper-export.csv similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/instapaper-export.csv rename to tests/fixtures/Import/instapaper-export.csv diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/pinboard_export b/tests/fixtures/Import/pinboard_export similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/pinboard_export rename to tests/fixtures/Import/pinboard_export diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/readability-read.json b/tests/fixtures/Import/readability-read.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/readability-read.json rename to tests/fixtures/Import/readability-read.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/readability.json b/tests/fixtures/Import/readability.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/readability.json rename to tests/fixtures/Import/readability.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/ril_export.html b/tests/fixtures/Import/ril_export.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/ril_export.html rename to tests/fixtures/Import/ril_export.html diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/shaarli-bookmarks.html b/tests/fixtures/Import/shaarli-bookmarks.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/shaarli-bookmarks.html rename to tests/fixtures/Import/shaarli-bookmarks.html diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/test.html b/tests/fixtures/Import/test.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/test.html rename to tests/fixtures/Import/test.html diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/test.txt b/tests/fixtures/Import/test.txt similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/test.txt rename to tests/fixtures/Import/test.txt diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/unnamed.png b/tests/fixtures/Import/unnamed.png similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/unnamed.png rename to tests/fixtures/Import/unnamed.png diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v1-read.json b/tests/fixtures/Import/wallabag-v1-read.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v1-read.json rename to tests/fixtures/Import/wallabag-v1-read.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v1.json b/tests/fixtures/Import/wallabag-v1.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v1.json rename to tests/fixtures/Import/wallabag-v1.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-empty.json b/tests/fixtures/Import/wallabag-v2-empty.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-empty.json rename to tests/fixtures/Import/wallabag-v2-empty.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-read.json b/tests/fixtures/Import/wallabag-v2-read.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2-read.json rename to tests/fixtures/Import/wallabag-v2-read.json diff --git a/tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2.json b/tests/fixtures/Import/wallabag-v2.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/Import/wallabag-v2.json rename to tests/fixtures/Import/wallabag-v2.json diff --git a/tests/Wallabag/CoreBundle/fixtures/aoc.media.html b/tests/fixtures/aoc.media.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/aoc.media.html rename to tests/fixtures/aoc.media.html diff --git a/tests/Wallabag/CoreBundle/fixtures/image-no-content-type.jpg b/tests/fixtures/image-no-content-type.jpg similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/image-no-content-type.jpg rename to tests/fixtures/image-no-content-type.jpg diff --git a/tests/Wallabag/CoreBundle/fixtures/modal-content.svg b/tests/fixtures/modal-content.svg similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/modal-content.svg rename to tests/fixtures/modal-content.svg diff --git a/tests/Wallabag/CoreBundle/fixtures/nextinpact-article.html b/tests/fixtures/nextinpact-article.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/nextinpact-article.html rename to tests/fixtures/nextinpact-article.html diff --git a/tests/Wallabag/CoreBundle/fixtures/nextinpact-login.html b/tests/fixtures/nextinpact-login.html similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/nextinpact-login.html rename to tests/fixtures/nextinpact-login.html diff --git a/tests/Wallabag/CoreBundle/fixtures/tagging_rules_admin.json b/tests/fixtures/tagging_rules_admin.json similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/tagging_rules_admin.json rename to tests/fixtures/tagging_rules_admin.json diff --git a/tests/Wallabag/CoreBundle/fixtures/unnamed.png b/tests/fixtures/unnamed.png similarity index 100% rename from tests/Wallabag/CoreBundle/fixtures/unnamed.png rename to tests/fixtures/unnamed.png