From 3238c9ecb0e5ef492ffeb41668de7aa4af76fa7b Mon Sep 17 00:00:00 2001 From: "Eric Richer eric.richer@vistoconsulting.com" Date: Sat, 23 Nov 2024 15:11:25 -0500 Subject: [PATCH] Refactor directory "tests" to "test" Signed-off-by: Eric Richer eric.richer@vistoconsulting.com --- composer.json | 2 +- phpunit.xml.dist | 4 ++-- {tests => test}/.gitignore | 0 {tests => test}/Bootstrap.php | 0 {tests => test}/ConfigProviderTest.php | 0 {tests => test}/Factory/CorsOptionsFactoryTest.php | 0 {tests => test}/Factory/CorsRequestListenerFactoryTest.php | 0 {tests => test}/Factory/CorsServiceFactoryTest.php | 0 {tests => test}/ModuleTest.php | 0 {tests => test}/Mvc/CorsRequestListenerTest.php | 0 {tests => test}/Options/CorsOptionsTest.php | 0 {tests => test}/Service/CorsServiceTest.php | 0 {tests => test}/TestConfiguration.php.dist | 0 {tests => test}/Util/ServiceManagerFactory.php | 0 {tests => test}/testing.config.php | 0 15 files changed, 3 insertions(+), 3 deletions(-) rename {tests => test}/.gitignore (100%) rename {tests => test}/Bootstrap.php (100%) rename {tests => test}/ConfigProviderTest.php (100%) rename {tests => test}/Factory/CorsOptionsFactoryTest.php (100%) rename {tests => test}/Factory/CorsRequestListenerFactoryTest.php (100%) rename {tests => test}/Factory/CorsServiceFactoryTest.php (100%) rename {tests => test}/ModuleTest.php (100%) rename {tests => test}/Mvc/CorsRequestListenerTest.php (100%) rename {tests => test}/Options/CorsOptionsTest.php (100%) rename {tests => test}/Service/CorsServiceTest.php (100%) rename {tests => test}/TestConfiguration.php.dist (100%) rename {tests => test}/Util/ServiceManagerFactory.php (100%) rename {tests => test}/testing.config.php (100%) diff --git a/composer.json b/composer.json index 4645e7b..e8afbe9 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,7 @@ }, "autoload-dev": { "psr-4": { - "LmcCorsTest\\": "tests/" + "LmcCorsTest\\": "test/" } }, "scripts": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 7e70aaa..981cdfa 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,11 +1,11 @@ - ./tests + ./test diff --git a/tests/.gitignore b/test/.gitignore similarity index 100% rename from tests/.gitignore rename to test/.gitignore diff --git a/tests/Bootstrap.php b/test/Bootstrap.php similarity index 100% rename from tests/Bootstrap.php rename to test/Bootstrap.php diff --git a/tests/ConfigProviderTest.php b/test/ConfigProviderTest.php similarity index 100% rename from tests/ConfigProviderTest.php rename to test/ConfigProviderTest.php diff --git a/tests/Factory/CorsOptionsFactoryTest.php b/test/Factory/CorsOptionsFactoryTest.php similarity index 100% rename from tests/Factory/CorsOptionsFactoryTest.php rename to test/Factory/CorsOptionsFactoryTest.php diff --git a/tests/Factory/CorsRequestListenerFactoryTest.php b/test/Factory/CorsRequestListenerFactoryTest.php similarity index 100% rename from tests/Factory/CorsRequestListenerFactoryTest.php rename to test/Factory/CorsRequestListenerFactoryTest.php diff --git a/tests/Factory/CorsServiceFactoryTest.php b/test/Factory/CorsServiceFactoryTest.php similarity index 100% rename from tests/Factory/CorsServiceFactoryTest.php rename to test/Factory/CorsServiceFactoryTest.php diff --git a/tests/ModuleTest.php b/test/ModuleTest.php similarity index 100% rename from tests/ModuleTest.php rename to test/ModuleTest.php diff --git a/tests/Mvc/CorsRequestListenerTest.php b/test/Mvc/CorsRequestListenerTest.php similarity index 100% rename from tests/Mvc/CorsRequestListenerTest.php rename to test/Mvc/CorsRequestListenerTest.php diff --git a/tests/Options/CorsOptionsTest.php b/test/Options/CorsOptionsTest.php similarity index 100% rename from tests/Options/CorsOptionsTest.php rename to test/Options/CorsOptionsTest.php diff --git a/tests/Service/CorsServiceTest.php b/test/Service/CorsServiceTest.php similarity index 100% rename from tests/Service/CorsServiceTest.php rename to test/Service/CorsServiceTest.php diff --git a/tests/TestConfiguration.php.dist b/test/TestConfiguration.php.dist similarity index 100% rename from tests/TestConfiguration.php.dist rename to test/TestConfiguration.php.dist diff --git a/tests/Util/ServiceManagerFactory.php b/test/Util/ServiceManagerFactory.php similarity index 100% rename from tests/Util/ServiceManagerFactory.php rename to test/Util/ServiceManagerFactory.php diff --git a/tests/testing.config.php b/test/testing.config.php similarity index 100% rename from tests/testing.config.php rename to test/testing.config.php