diff --git a/bin/phpunit-swoole b/bin/phpunit-swoole index 0e2d1003..b480220e 100644 --- a/bin/phpunit-swoole +++ b/bin/phpunit-swoole @@ -59,7 +59,7 @@ require PHPUNIT_COMPOSER_INSTALL; $starttime = microtime(true); go(function () { try { - require_once __DIR__.'/../test/bootstrap.php'; + require_once __DIR__ . '/../tests/bootstrap.php'; PHPUnit\TextUI\Command::main(false); } catch (Exception $e) { echo $e->getMessage() . PHP_EOL; diff --git a/test/ZM/Utils/DataProviderTest.php b/tests/ZM/Utils/DataProviderTest.php similarity index 100% rename from test/ZM/Utils/DataProviderTest.php rename to tests/ZM/Utils/DataProviderTest.php diff --git a/test/ZM/Utils/Manager/ModuleManagerTest.php b/tests/ZM/Utils/Manager/ModuleManagerTest.php similarity index 100% rename from test/ZM/Utils/Manager/ModuleManagerTest.php rename to tests/ZM/Utils/Manager/ModuleManagerTest.php diff --git a/test/ZM/Utils/MessageUtilTest.php b/tests/ZM/Utils/MessageUtilTest.php similarity index 100% rename from test/ZM/Utils/MessageUtilTest.php rename to tests/ZM/Utils/MessageUtilTest.php diff --git a/test/ZM/Utils/TerminalTest.php b/tests/ZM/Utils/TerminalTest.php similarity index 100% rename from test/ZM/Utils/TerminalTest.php rename to tests/ZM/Utils/TerminalTest.php diff --git a/test/ZM/Utils/ZMUtilTest.php b/tests/ZM/Utils/ZMUtilTest.php similarity index 100% rename from test/ZM/Utils/ZMUtilTest.php rename to tests/ZM/Utils/ZMUtilTest.php diff --git a/test/ZMTest/Mock/mock.php b/tests/ZMTest/Mock/mock.php similarity index 100% rename from test/ZMTest/Mock/mock.php rename to tests/ZMTest/Mock/mock.php diff --git a/test/ZMTest/PassedTest/AnnotationParserRegisterTest.php b/tests/ZMTest/PassedTest/AnnotationParserRegisterTest.php similarity index 100% rename from test/ZMTest/PassedTest/AnnotationParserRegisterTest.php rename to tests/ZMTest/PassedTest/AnnotationParserRegisterTest.php diff --git a/test/ZMTest/Testing/EventDispatcherTest.php b/tests/ZMTest/Testing/EventDispatcherTest.php similarity index 100% rename from test/ZMTest/Testing/EventDispatcherTest.php rename to tests/ZMTest/Testing/EventDispatcherTest.php diff --git a/test/ZMTest/Testing/ModuleTest.php b/tests/ZMTest/Testing/ModuleTest.php similarity index 100% rename from test/ZMTest/Testing/ModuleTest.php rename to tests/ZMTest/Testing/ModuleTest.php diff --git a/test/bootstrap.php b/tests/bootstrap.php similarity index 100% rename from test/bootstrap.php rename to tests/bootstrap.php diff --git a/test/route_test.php b/tests/route_test.php similarity index 100% rename from test/route_test.php rename to tests/route_test.php