From 0601ed33c4382211db293ac998c2fdaf776c6044 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Thu, 8 Jan 2015 11:23:05 +0100 Subject: [PATCH] [Security] moved test files into the right place --- .../Tests}/Authentication/Token/RememberMeTokenTest.php | 2 +- .../Core => Core/Tests}/User/InMemoryUserProviderTest.php | 2 +- .../{Tests/Core => Core/Tests}/User/UserCheckerTest.php | 2 +- .../Http => Http/Tests}/Firewall/ExceptionListenerTest.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename src/Symfony/Component/Security/{Tests/Core => Core/Tests}/Authentication/Token/RememberMeTokenTest.php (96%) rename src/Symfony/Component/Security/{Tests/Core => Core/Tests}/User/InMemoryUserProviderTest.php (97%) rename src/Symfony/Component/Security/{Tests/Core => Core/Tests}/User/UserCheckerTest.php (98%) rename src/Symfony/Component/Security/{Tests/Http => Http/Tests}/Firewall/ExceptionListenerTest.php (99%) diff --git a/src/Symfony/Component/Security/Tests/Core/Authentication/Token/RememberMeTokenTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/RememberMeTokenTest.php similarity index 96% rename from src/Symfony/Component/Security/Tests/Core/Authentication/Token/RememberMeTokenTest.php rename to src/Symfony/Component/Security/Core/Tests/Authentication/Token/RememberMeTokenTest.php index cef3d285c1..691f54cb75 100644 --- a/src/Symfony/Component/Security/Tests/Core/Authentication/Token/RememberMeTokenTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Token/RememberMeTokenTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Core\Authentication\Token; +namespace Symfony\Component\Security\Core\Tests\Authentication\Token; use Symfony\Component\Security\Core\Authentication\Token\RememberMeToken; use Symfony\Component\Security\Core\Role\Role; diff --git a/src/Symfony/Component/Security/Tests/Core/User/InMemoryUserProviderTest.php b/src/Symfony/Component/Security/Core/Tests/User/InMemoryUserProviderTest.php similarity index 97% rename from src/Symfony/Component/Security/Tests/Core/User/InMemoryUserProviderTest.php rename to src/Symfony/Component/Security/Core/Tests/User/InMemoryUserProviderTest.php index 826e3908bb..dfc4237467 100644 --- a/src/Symfony/Component/Security/Tests/Core/User/InMemoryUserProviderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/User/InMemoryUserProviderTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Core\User; +namespace Symfony\Component\Security\Core\Tests\User; use Symfony\Component\Security\Core\User\InMemoryUserProvider; use Symfony\Component\Security\Core\User\User; diff --git a/src/Symfony/Component/Security/Tests/Core/User/UserCheckerTest.php b/src/Symfony/Component/Security/Core/Tests/User/UserCheckerTest.php similarity index 98% rename from src/Symfony/Component/Security/Tests/Core/User/UserCheckerTest.php rename to src/Symfony/Component/Security/Core/Tests/User/UserCheckerTest.php index dca631146d..ac217814ea 100644 --- a/src/Symfony/Component/Security/Tests/Core/User/UserCheckerTest.php +++ b/src/Symfony/Component/Security/Core/Tests/User/UserCheckerTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Core\User; +namespace Symfony\Component\Security\Core\Tests\User; use Symfony\Component\Security\Core\User\UserChecker; diff --git a/src/Symfony/Component/Security/Tests/Http/Firewall/ExceptionListenerTest.php b/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php similarity index 99% rename from src/Symfony/Component/Security/Tests/Http/Firewall/ExceptionListenerTest.php rename to src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php index bc19da4db0..f1409e4d68 100644 --- a/src/Symfony/Component/Security/Tests/Http/Firewall/ExceptionListenerTest.php +++ b/src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Symfony\Component\Security\Tests\Http\Firewall; +namespace Symfony\Component\Security\Http\Tests\Firewall; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response;