diff --git a/tests/_config/bootstrap.php b/tests/_config/bootstrap.php index 016e1668d9e..14458e2ee1a 100644 --- a/tests/_config/bootstrap.php +++ b/tests/_config/bootstrap.php @@ -8,7 +8,7 @@ use Phalcon\Mvc\Dispatcher; use Phalcon\Mvc\Router; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\MemorySession as PhalconMemorySession; +use Phalcon\Tests\Fixtures\MemorySession as PhalconMemorySession; use Phalcon\Url; $container = new FactoryDefault(); diff --git a/tests/_config/functions.php b/tests/_config/functions.php index c90b5cece9c..84fe6fc0c9b 100644 --- a/tests/_config/functions.php +++ b/tests/_config/functions.php @@ -23,23 +23,23 @@ function loadAutoloader(string $root) { Autoload::addNamespace( - 'Phalcon\Test\Controllers', + 'Phalcon\Tests\Controllers', $root . 'fixtures/controllers' ); Autoload::addNamespace( - 'Phalcon\Test\Models', + 'Phalcon\Tests\Models', $root . 'fixtures/models' ); Autoload::addNamespace( - 'Phalcon\Test\Resultsets', + 'Phalcon\Tests\Resultsets', $root . 'fixtures/resultsets' ); Autoload::addNamespace( - 'Phalcon\Test\Modules\Frontend\Controllers', + 'Phalcon\Tests\Modules\Frontend\Controllers', $root . 'fixtures/modules/frontend/controllers/' ); Autoload::addNamespace( - 'Phalcon\Test\Modules\Backend\Controllers', + 'Phalcon\Tests\Modules\Backend\Controllers', $root . 'fixtures/modules/backend/controllers/' ); } diff --git a/tests/_config/generate-db-schemas.php b/tests/_config/generate-db-schemas.php index 4d894635d71..e82afc2e6df 100644 --- a/tests/_config/generate-db-schemas.php +++ b/tests/_config/generate-db-schemas.php @@ -11,7 +11,7 @@ * file that was distributed with this source code. */ -use Phalcon\Test\Fixtures\Migrations\AbstractMigration; +use Phalcon\Tests\Fixtures\Migrations\AbstractMigration; error_reporting(E_ALL); ini_set('display_errors', 'On'); @@ -28,7 +28,7 @@ ]; $migrations = getMigrations($root); -$migrationClass = 'Phalcon\Test\Fixtures\Migrations\%s'; +$migrationClass = 'Phalcon\Tests\Fixtures\Migrations\%s'; foreach ($drivers as $driver) { $schema = $root . '/tests/_data/assets/schemas/' . $driver . '.sql'; diff --git a/tests/_config/generate-test-stubs.php b/tests/_config/generate-test-stubs.php index 0645e5b8e5d..b7102f62d03 100644 --- a/tests/_config/generate-test-stubs.php +++ b/tests/_config/generate-test-stubs.php @@ -24,7 +24,7 @@ declare(strict_types=1); -namespace Phalcon\Test\%type%\%n%; +namespace Phalcon\Tests\%type%\%n%; use %type%Tester; diff --git a/tests/_data/fixtures/Acl/TestComponentAware.php b/tests/_data/fixtures/Acl/TestComponentAware.php index 7dec01eb4a6..9781fe392be 100644 --- a/tests/_data/fixtures/Acl/TestComponentAware.php +++ b/tests/_data/fixtures/Acl/TestComponentAware.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Acl; +namespace Phalcon\Tests\Fixtures\Acl; use Phalcon\Acl\ComponentAware; diff --git a/tests/_data/fixtures/Acl/TestRoleAware.php b/tests/_data/fixtures/Acl/TestRoleAware.php index ae800d24c85..be1d205f78c 100644 --- a/tests/_data/fixtures/Acl/TestRoleAware.php +++ b/tests/_data/fixtures/Acl/TestRoleAware.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Acl; +namespace Phalcon\Tests\Fixtures\Acl; use Phalcon\Acl\RoleAware; diff --git a/tests/_data/fixtures/Acl/TestRoleComponentAware.php b/tests/_data/fixtures/Acl/TestRoleComponentAware.php index 7a1d1cad556..b8a13845006 100644 --- a/tests/_data/fixtures/Acl/TestRoleComponentAware.php +++ b/tests/_data/fixtures/Acl/TestRoleComponentAware.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Acl; +namespace Phalcon\Tests\Fixtures\Acl; use Phalcon\Acl\ComponentAware; use Phalcon\Acl\RoleAware; diff --git a/tests/_data/fixtures/Assets/CustomTag.php b/tests/_data/fixtures/Assets/CustomTag.php index 661f41a3914..a2c2d8e8c93 100644 --- a/tests/_data/fixtures/Assets/CustomTag.php +++ b/tests/_data/fixtures/Assets/CustomTag.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Assets; +namespace Phalcon\Tests\Fixtures\Assets; class CustomTag extends \Phalcon\Tag { diff --git a/tests/_data/fixtures/Assets/TrimFilter.php b/tests/_data/fixtures/Assets/TrimFilter.php index a8c573a89bc..4d4b6d036ab 100644 --- a/tests/_data/fixtures/Assets/TrimFilter.php +++ b/tests/_data/fixtures/Assets/TrimFilter.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Assets; +namespace Phalcon\Tests\Fixtures\Assets; use Phalcon\Assets\FilterInterface; diff --git a/tests/_data/fixtures/Assets/UppercaseFilter.php b/tests/_data/fixtures/Assets/UppercaseFilter.php index 47f3171263a..1b4ffdd630b 100644 --- a/tests/_data/fixtures/Assets/UppercaseFilter.php +++ b/tests/_data/fixtures/Assets/UppercaseFilter.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Assets; +namespace Phalcon\Tests\Fixtures\Assets; use Phalcon\Assets\FilterInterface; diff --git a/tests/_data/fixtures/Cache/Adapter/Libmemcached.php b/tests/_data/fixtures/Cache/Adapter/Libmemcached.php index b739ce133b0..cddf5d77198 100644 --- a/tests/_data/fixtures/Cache/Adapter/Libmemcached.php +++ b/tests/_data/fixtures/Cache/Adapter/Libmemcached.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Cache\Adapter; +namespace Phalcon\Tests\Fixtures\Cache\Adapter; use Phalcon\Cache\Adapter\Libmemcached as CacheLibmemcached; use Phalcon\Storage\Exception; /** - * Phalcon\Test\Fixtures\Cache\Adapter + * Phalcon\Tests\Fixtures\Cache\Adapter * * Libmemcached adapter fixture */ diff --git a/tests/_data/fixtures/Cache/CacheFixtureData.php b/tests/_data/fixtures/Cache/CacheFixtureData.php index d8cd2826871..10a21b6f75d 100644 --- a/tests/_data/fixtures/Cache/CacheFixtureData.php +++ b/tests/_data/fixtures/Cache/CacheFixtureData.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Cache; +namespace Phalcon\Tests\Fixtures\Cache; use stdClass; /** - * Phalcon\Test\Fixtures\Cache + * Phalcon\Tests\Fixtures\Cache * */ class CacheFixtureData diff --git a/tests/_data/fixtures/DataMapper/Pdo/ConnectionFixture.php b/tests/_data/fixtures/DataMapper/Pdo/ConnectionFixture.php index df637ae3087..4ff35d82026 100644 --- a/tests/_data/fixtures/DataMapper/Pdo/ConnectionFixture.php +++ b/tests/_data/fixtures/DataMapper/Pdo/ConnectionFixture.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\DataMapper\Pdo; +namespace Phalcon\Tests\Fixtures\DataMapper\Pdo; use Phalcon\DataMapper\Pdo\Connection; use Phalcon\DataMapper\Pdo\Profiler\ProfilerInterface; diff --git a/tests/_data/fixtures/DataMapper/Pdo/PdoFixture.php b/tests/_data/fixtures/DataMapper/Pdo/PdoFixture.php index 86998a85a69..f8cae9ac25d 100644 --- a/tests/_data/fixtures/DataMapper/Pdo/PdoFixture.php +++ b/tests/_data/fixtures/DataMapper/Pdo/PdoFixture.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\DataMapper\Pdo; +namespace Phalcon\Tests\Fixtures\DataMapper\Pdo; class PdoFixture { diff --git a/tests/_data/fixtures/Db/Profiler.php b/tests/_data/fixtures/Db/Profiler.php index faec91e2b46..61b7a11be5a 100644 --- a/tests/_data/fixtures/Db/Profiler.php +++ b/tests/_data/fixtures/Db/Profiler.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Db; +namespace Phalcon\Tests\Fixtures\Db; use Phalcon\Db\Profiler as PhalconProfiler; diff --git a/tests/_data/fixtures/Db/ProfilerListener.php b/tests/_data/fixtures/Db/ProfilerListener.php index b737c6cfb96..ba9bde35f32 100644 --- a/tests/_data/fixtures/Db/ProfilerListener.php +++ b/tests/_data/fixtures/Db/ProfilerListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Db; +namespace Phalcon\Tests\Fixtures\Db; class ProfilerListener { diff --git a/tests/_data/fixtures/Db/QueryListener.php b/tests/_data/fixtures/Db/QueryListener.php index 28ef113b5b8..0b33148e3a2 100644 --- a/tests/_data/fixtures/Db/QueryListener.php +++ b/tests/_data/fixtures/Db/QueryListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Db; +namespace Phalcon\Tests\Fixtures\Db; use Phalcon\Db\Adapter\AdapterInterface; use Phalcon\Di\Injectable; @@ -21,7 +21,7 @@ /** * Class QueryListener * - * @package Phalcon\Test\Fixtures\Db + * @package Phalcon\Tests\Fixtures\Db * * @property Logger $logger */ diff --git a/tests/_data/fixtures/Di/services.php b/tests/_data/fixtures/Di/services.php index 7b6f6cc84ae..9b9c38b4775 100644 --- a/tests/_data/fixtures/Di/services.php +++ b/tests/_data/fixtures/Di/services.php @@ -1,7 +1,7 @@ [ diff --git a/tests/_data/fixtures/Di/services.yml b/tests/_data/fixtures/Di/services.yml index a58ddcc466b..822279410cb 100644 --- a/tests/_data/fixtures/Di/services.yml +++ b/tests/_data/fixtures/Di/services.yml @@ -1,5 +1,5 @@ unit-test: - className: \Phalcon\Test\Module\UnitTest + className: \Phalcon\Tests\Module\UnitTest config: className: \Phalcon\Config diff --git a/tests/_data/fixtures/Dump/ClassProperties.php b/tests/_data/fixtures/Dump/ClassProperties.php index 4a65bfe5073..95e40c22370 100644 --- a/tests/_data/fixtures/Dump/ClassProperties.php +++ b/tests/_data/fixtures/Dump/ClassProperties.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Dump; +namespace Phalcon\Tests\Fixtures\Dump; /** * Class ClassProperties diff --git a/tests/_data/fixtures/Dump/class_properties.txt b/tests/_data/fixtures/Dump/class_properties.txt index 31962dda9b9..ce5903aa3ef 100644 --- a/tests/_data/fixtures/Dump/class_properties.txt +++ b/tests/_data/fixtures/Dump/class_properties.txt @@ -1,7 +1,7 @@ -Object Phalcon\Test\Fixtures\Dump\ClassProperties ( +Object Phalcon\Tests\Fixtures\Dump\ClassProperties ( ->foo (public) = Integer (1) ->bar (protected) = Integer (2) ->baz (private) = Integer (3) - Phalcon\Test\Fixtures\Dump\ClassProperties methods: (0) ( + Phalcon\Tests\Fixtures\Dump\ClassProperties methods: (0) ( ) ) diff --git a/tests/_data/fixtures/Events/ComponentX.php b/tests/_data/fixtures/Events/ComponentX.php index 17330a4128e..80f68f024b3 100644 --- a/tests/_data/fixtures/Events/ComponentX.php +++ b/tests/_data/fixtures/Events/ComponentX.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Events; +namespace Phalcon\Tests\Fixtures\Events; use Phalcon\Events\Manager; diff --git a/tests/_data/fixtures/Events/ComponentY.php b/tests/_data/fixtures/Events/ComponentY.php index 6a98512015a..b9e50188373 100644 --- a/tests/_data/fixtures/Events/ComponentY.php +++ b/tests/_data/fixtures/Events/ComponentY.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Events; +namespace Phalcon\Tests\Fixtures\Events; use Phalcon\Events\Manager; diff --git a/tests/_data/fixtures/Filter/Sanitize/IPv4.php b/tests/_data/fixtures/Filter/Sanitize/IPv4.php index fc05d9cbded..dc25be39294 100644 --- a/tests/_data/fixtures/Filter/Sanitize/IPv4.php +++ b/tests/_data/fixtures/Filter/Sanitize/IPv4.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Filter\Sanitize; +namespace Phalcon\Tests\Fixtures\Filter\Sanitize; /** * Class IPv4 diff --git a/tests/_data/fixtures/Forms/ContactFormPublicProperties.php b/tests/_data/fixtures/Forms/ContactFormPublicProperties.php index e3e64aa6e80..92dfe0965ca 100644 --- a/tests/_data/fixtures/Forms/ContactFormPublicProperties.php +++ b/tests/_data/fixtures/Forms/ContactFormPublicProperties.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Forms; +namespace Phalcon\Tests\Fixtures\Forms; class ContactFormPublicProperties { diff --git a/tests/_data/fixtures/Forms/ContactFormSettersGetters.php b/tests/_data/fixtures/Forms/ContactFormSettersGetters.php index f44d95f64a4..8f1b2b7a1ae 100644 --- a/tests/_data/fixtures/Forms/ContactFormSettersGetters.php +++ b/tests/_data/fixtures/Forms/ContactFormSettersGetters.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Forms; +namespace Phalcon\Tests\Fixtures\Forms; class ContactFormSettersGetters { diff --git a/tests/_data/fixtures/Forms/SetActionForm.php b/tests/_data/fixtures/Forms/SetActionForm.php index daad1ea2544..23356240a4d 100644 --- a/tests/_data/fixtures/Forms/SetActionForm.php +++ b/tests/_data/fixtures/Forms/SetActionForm.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Forms; +namespace Phalcon\Tests\Fixtures\Forms; use Phalcon\Forms\Form; diff --git a/tests/_data/fixtures/Forms/ValidationForm.php b/tests/_data/fixtures/Forms/ValidationForm.php index 71d1c212ace..a7eec8c0e74 100644 --- a/tests/_data/fixtures/Forms/ValidationForm.php +++ b/tests/_data/fixtures/Forms/ValidationForm.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Forms; +namespace Phalcon\Tests\Fixtures\Forms; use Phalcon\Forms\Element\Email; use Phalcon\Forms\Element\Text; diff --git a/tests/_data/fixtures/Helper/JsonFixture.php b/tests/_data/fixtures/Helper/JsonFixture.php index 06a2b5656c9..640a0252493 100644 --- a/tests/_data/fixtures/Helper/JsonFixture.php +++ b/tests/_data/fixtures/Helper/JsonFixture.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helper; +namespace Phalcon\Tests\Fixtures\Helper; use JsonSerializable; diff --git a/tests/_data/fixtures/Helpers/TagHelper.php b/tests/_data/fixtures/Helpers/TagHelper.php index c039be83b95..95589556661 100644 --- a/tests/_data/fixtures/Helpers/TagHelper.php +++ b/tests/_data/fixtures/Helpers/TagHelper.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helpers; +namespace Phalcon\Tests\Fixtures\Helpers; use UnitTester; diff --git a/tests/_data/fixtures/Helpers/TagSetup.php b/tests/_data/fixtures/Helpers/TagSetup.php index 80949c147e4..ffe3975ab8b 100644 --- a/tests/_data/fixtures/Helpers/TagSetup.php +++ b/tests/_data/fixtures/Helpers/TagSetup.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helpers; +namespace Phalcon\Tests\Fixtures\Helpers; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use UnitTester; class TagSetup diff --git a/tests/_data/fixtures/Helpers/TranslateCsvHelper.php b/tests/_data/fixtures/Helpers/TranslateCsvHelper.php index b41a58aa889..b95e1a9c6c6 100644 --- a/tests/_data/fixtures/Helpers/TranslateCsvHelper.php +++ b/tests/_data/fixtures/Helpers/TranslateCsvHelper.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helpers; +namespace Phalcon\Tests\Fixtures\Helpers; use Codeception\Example; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/_data/fixtures/Helpers/TranslateGettextHelper.php b/tests/_data/fixtures/Helpers/TranslateGettextHelper.php index 267e6f12f5f..cfa46873043 100644 --- a/tests/_data/fixtures/Helpers/TranslateGettextHelper.php +++ b/tests/_data/fixtures/Helpers/TranslateGettextHelper.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helpers; +namespace Phalcon\Tests\Fixtures\Helpers; use Codeception\Example; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/_data/fixtures/Helpers/TranslateNativeArrayHelper.php b/tests/_data/fixtures/Helpers/TranslateNativeArrayHelper.php index da998f137f2..5cb4018d26f 100644 --- a/tests/_data/fixtures/Helpers/TranslateNativeArrayHelper.php +++ b/tests/_data/fixtures/Helpers/TranslateNativeArrayHelper.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Helpers; +namespace Phalcon\Tests\Fixtures\Helpers; use Codeception\Example; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/_data/fixtures/Http/Message/ServerRequestFactoryFixture.php b/tests/_data/fixtures/Http/Message/ServerRequestFactoryFixture.php index cbd02e285cb..e8b13c18e46 100644 --- a/tests/_data/fixtures/Http/Message/ServerRequestFactoryFixture.php +++ b/tests/_data/fixtures/Http/Message/ServerRequestFactoryFixture.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Http\Message; +namespace Phalcon\Tests\Fixtures\Http\Message; use Phalcon\Http\Message\ServerRequestFactory; diff --git a/tests/_data/fixtures/Http/Message/StreamFixture.php b/tests/_data/fixtures/Http/Message/StreamFixture.php index 8fb94acd5f8..0a76aae5776 100644 --- a/tests/_data/fixtures/Http/Message/StreamFixture.php +++ b/tests/_data/fixtures/Http/Message/StreamFixture.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Http\Message; +namespace Phalcon\Tests\Fixtures\Http\Message; use Phalcon\Http\Message\Stream; diff --git a/tests/_data/fixtures/Http/PhpStream.php b/tests/_data/fixtures/Http/PhpStream.php index c2e9ad853b0..7c338f116ca 100644 --- a/tests/_data/fixtures/Http/PhpStream.php +++ b/tests/_data/fixtures/Http/PhpStream.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Http; +namespace Phalcon\Tests\Fixtures\Http; /** * @link http://php.net/manual/en/class.streamwrapper.php diff --git a/tests/_data/fixtures/Http/Server/MiddlewareFixture.php b/tests/_data/fixtures/Http/Server/MiddlewareFixture.php index e6602926867..a0615963c50 100644 --- a/tests/_data/fixtures/Http/Server/MiddlewareFixture.php +++ b/tests/_data/fixtures/Http/Server/MiddlewareFixture.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Http\Server; +namespace Phalcon\Tests\Fixtures\Http\Server; use Phalcon\Http\Server\AbstractMiddleware; use Psr\Http\Message\ResponseInterface; diff --git a/tests/_data/fixtures/Http/Server/RequestHandlerFixture.php b/tests/_data/fixtures/Http/Server/RequestHandlerFixture.php index 61020e8f017..0b25bc62b84 100644 --- a/tests/_data/fixtures/Http/Server/RequestHandlerFixture.php +++ b/tests/_data/fixtures/Http/Server/RequestHandlerFixture.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Http\Server; +namespace Phalcon\Tests\Fixtures\Http\Server; use Phalcon\Http\Server\AbstractRequestHandler; use Psr\Http\Message\ResponseInterface; diff --git a/tests/_data/fixtures/Listener/CustomAuthorizationListener.php b/tests/_data/fixtures/Listener/CustomAuthorizationListener.php index 966f74f26b2..11ae4ea3c80 100644 --- a/tests/_data/fixtures/Listener/CustomAuthorizationListener.php +++ b/tests/_data/fixtures/Listener/CustomAuthorizationListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; use Phalcon\Events\Event; use Phalcon\Http\Request; diff --git a/tests/_data/fixtures/Listener/FirstListener.php b/tests/_data/fixtures/Listener/FirstListener.php index 461fe7c5fd0..408dd3a5ccb 100644 --- a/tests/_data/fixtures/Listener/FirstListener.php +++ b/tests/_data/fixtures/Listener/FirstListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; class FirstListener { diff --git a/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php b/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php index 4ec31cf0a00..ad51e5cb1f5 100644 --- a/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php +++ b/tests/_data/fixtures/Listener/NegotiateAuthorizationListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; use Phalcon\Events\Event; use Phalcon\Http\Request; diff --git a/tests/_data/fixtures/Listener/SecondListener.php b/tests/_data/fixtures/Listener/SecondListener.php index 959c8f0785e..bd3812b6612 100644 --- a/tests/_data/fixtures/Listener/SecondListener.php +++ b/tests/_data/fixtures/Listener/SecondListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; class SecondListener { diff --git a/tests/_data/fixtures/Listener/ThirdListener.php b/tests/_data/fixtures/Listener/ThirdListener.php index f6fc72eecdc..349735004b4 100644 --- a/tests/_data/fixtures/Listener/ThirdListener.php +++ b/tests/_data/fixtures/Listener/ThirdListener.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; use Phalcon\Events\Event; -use Phalcon\Test\Fixtures\Events\ComponentX; -use Phalcon\Test\Unit\Events\ManagerCest; +use Phalcon\Tests\Fixtures\Events\ComponentX; +use Phalcon\Tests\Unit\Events\ManagerCest; use UnitTester; class ThirdListener diff --git a/tests/_data/fixtures/Listener/ViewCompileListener.php b/tests/_data/fixtures/Listener/ViewCompileListener.php index f49f5263482..989ef28e72e 100644 --- a/tests/_data/fixtures/Listener/ViewCompileListener.php +++ b/tests/_data/fixtures/Listener/ViewCompileListener.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Listener; +namespace Phalcon\Tests\Fixtures\Listener; use IntegrationTester; use Phalcon\Events\Event; -use Phalcon\Test\Integration\Mvc\View\Engine\Volt\RenderCest; +use Phalcon\Tests\Integration\Mvc\View\Engine\Volt\RenderCest; use UnitTester; /** diff --git a/tests/_data/fixtures/Micro/HttpMethodHandler.php b/tests/_data/fixtures/Micro/HttpMethodHandler.php index ef8d45d9018..c1e21e11e78 100644 --- a/tests/_data/fixtures/Micro/HttpMethodHandler.php +++ b/tests/_data/fixtures/Micro/HttpMethodHandler.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Micro; +namespace Phalcon\Tests\Fixtures\Micro; class HttpMethodHandler { diff --git a/tests/_data/fixtures/Micro/MyMiddleware.php b/tests/_data/fixtures/Micro/MyMiddleware.php index 06b48217ea9..e2b2f3e0fc8 100644 --- a/tests/_data/fixtures/Micro/MyMiddleware.php +++ b/tests/_data/fixtures/Micro/MyMiddleware.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Micro; +namespace Phalcon\Tests\Fixtures\Micro; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\MiddlewareInterface; diff --git a/tests/_data/fixtures/Micro/MyMiddlewareStop.php b/tests/_data/fixtures/Micro/MyMiddlewareStop.php index 9cb49d81376..5371f1a5b9d 100644 --- a/tests/_data/fixtures/Micro/MyMiddlewareStop.php +++ b/tests/_data/fixtures/Micro/MyMiddlewareStop.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Micro; +namespace Phalcon\Tests\Fixtures\Micro; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\MiddlewareInterface; diff --git a/tests/_data/fixtures/Micro/RestHandler.php b/tests/_data/fixtures/Micro/RestHandler.php index 81e17c34b17..98f7d74ff5c 100644 --- a/tests/_data/fixtures/Micro/RestHandler.php +++ b/tests/_data/fixtures/Micro/RestHandler.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Micro; +namespace Phalcon\Tests\Fixtures\Micro; class RestHandler { diff --git a/tests/_data/fixtures/Migrations/AbstractMigration.php b/tests/_data/fixtures/Migrations/AbstractMigration.php index 477a0f641fd..f9e7dda791c 100644 --- a/tests/_data/fixtures/Migrations/AbstractMigration.php +++ b/tests/_data/fixtures/Migrations/AbstractMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; use PDO; diff --git a/tests/_data/fixtures/Migrations/ComplexDefaultMigration.php b/tests/_data/fixtures/Migrations/ComplexDefaultMigration.php index 28cb0fdbef3..57bb8ac1467 100644 --- a/tests/_data/fixtures/Migrations/ComplexDefaultMigration.php +++ b/tests/_data/fixtures/Migrations/ComplexDefaultMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; class ComplexDefaultMigration extends AbstractMigration { diff --git a/tests/_data/fixtures/Migrations/CustomersDefaultsMigration.php b/tests/_data/fixtures/Migrations/CustomersDefaultsMigration.php index 4939d545ba3..b9f45369aab 100644 --- a/tests/_data/fixtures/Migrations/CustomersDefaultsMigration.php +++ b/tests/_data/fixtures/Migrations/CustomersDefaultsMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; use PHPUnit\Framework\Assert; diff --git a/tests/_data/fixtures/Migrations/CustomersMigration.php b/tests/_data/fixtures/Migrations/CustomersMigration.php index 75b99a2f5dc..b50205ccc13 100644 --- a/tests/_data/fixtures/Migrations/CustomersMigration.php +++ b/tests/_data/fixtures/Migrations/CustomersMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; use PHPUnit\Framework\Assert; diff --git a/tests/_data/fixtures/Migrations/DialectMigration.php b/tests/_data/fixtures/Migrations/DialectMigration.php index 94f7d6e519d..41d8b7ebc88 100644 --- a/tests/_data/fixtures/Migrations/DialectMigration.php +++ b/tests/_data/fixtures/Migrations/DialectMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; use PDO; use Phalcon\Db\Column; diff --git a/tests/_data/fixtures/Migrations/FractalDatesMigration.php b/tests/_data/fixtures/Migrations/FractalDatesMigration.php index 4d2aeea440d..3595f40d68c 100644 --- a/tests/_data/fixtures/Migrations/FractalDatesMigration.php +++ b/tests/_data/fixtures/Migrations/FractalDatesMigration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class FractalDatesMigration diff --git a/tests/_data/fixtures/Migrations/InvoicesMigration.php b/tests/_data/fixtures/Migrations/InvoicesMigration.php index 92ec45b96bf..b42b639229d 100644 --- a/tests/_data/fixtures/Migrations/InvoicesMigration.php +++ b/tests/_data/fixtures/Migrations/InvoicesMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; use PHPUnit\Framework\Assert; diff --git a/tests/_data/fixtures/Migrations/ObjectsMigration.php b/tests/_data/fixtures/Migrations/ObjectsMigration.php index 325bc90c326..3aa395fec86 100644 --- a/tests/_data/fixtures/Migrations/ObjectsMigration.php +++ b/tests/_data/fixtures/Migrations/ObjectsMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class ObjectsMigration diff --git a/tests/_data/fixtures/Migrations/OrdersMigration.php b/tests/_data/fixtures/Migrations/OrdersMigration.php index ea50ba87cfc..b9dbe6a7a38 100644 --- a/tests/_data/fixtures/Migrations/OrdersMigration.php +++ b/tests/_data/fixtures/Migrations/OrdersMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class OrdersMigration diff --git a/tests/_data/fixtures/Migrations/OrdersProductsMigration.php b/tests/_data/fixtures/Migrations/OrdersProductsMigration.php index d24e6d711a5..a90def45bdf 100644 --- a/tests/_data/fixtures/Migrations/OrdersProductsMigration.php +++ b/tests/_data/fixtures/Migrations/OrdersProductsMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class OrdersProductsMigration diff --git a/tests/_data/fixtures/Migrations/ProductsMigration.php b/tests/_data/fixtures/Migrations/ProductsMigration.php index 0548be0b418..83facdef0af 100644 --- a/tests/_data/fixtures/Migrations/ProductsMigration.php +++ b/tests/_data/fixtures/Migrations/ProductsMigration.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class ProductsMigration diff --git a/tests/_data/fixtures/Migrations/SettersMigration.php b/tests/_data/fixtures/Migrations/SettersMigration.php index c4cafbe0e7f..a3dfc1ffd95 100644 --- a/tests/_data/fixtures/Migrations/SettersMigration.php +++ b/tests/_data/fixtures/Migrations/SettersMigration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class SettersMigration diff --git a/tests/_data/fixtures/Migrations/SourcesMigration.php b/tests/_data/fixtures/Migrations/SourcesMigration.php index 6f4613cfc86..5766420e9e4 100644 --- a/tests/_data/fixtures/Migrations/SourcesMigration.php +++ b/tests/_data/fixtures/Migrations/SourcesMigration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class SourcesMigration diff --git a/tests/_data/fixtures/Migrations/StringPrimaryMigration.php b/tests/_data/fixtures/Migrations/StringPrimaryMigration.php index 331ecf074ef..497b87ee1b9 100644 --- a/tests/_data/fixtures/Migrations/StringPrimaryMigration.php +++ b/tests/_data/fixtures/Migrations/StringPrimaryMigration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class StringPrimaryMigration diff --git a/tests/_data/fixtures/Migrations/StuffMigration.php b/tests/_data/fixtures/Migrations/StuffMigration.php index 0220e7b15cb..8dacd011e54 100644 --- a/tests/_data/fixtures/Migrations/StuffMigration.php +++ b/tests/_data/fixtures/Migrations/StuffMigration.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Migrations; +namespace Phalcon\Tests\Fixtures\Migrations; /** * Class StuffMigration diff --git a/tests/_data/fixtures/Mvc/View/AfterRenderListener.php b/tests/_data/fixtures/Mvc/View/AfterRenderListener.php index f99dec02b39..dc975083dde 100644 --- a/tests/_data/fixtures/Mvc/View/AfterRenderListener.php +++ b/tests/_data/fixtures/Mvc/View/AfterRenderListener.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Mvc\View; +namespace Phalcon\Tests\Fixtures\Mvc\View; use Phalcon\Events\Event; use Phalcon\Mvc\View; diff --git a/tests/_data/fixtures/Mvc/View/Engine/Mustache.php b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php index 3a4636a7b1b..6bff290a3eb 100644 --- a/tests/_data/fixtures/Mvc/View/Engine/Mustache.php +++ b/tests/_data/fixtures/Mvc/View/Engine/Mustache.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Mvc\View\Engine; +namespace Phalcon\Tests\Fixtures\Mvc\View\Engine; use Mustache_Engine; use Phalcon\Di\DiInterface; diff --git a/tests/_data/fixtures/Mvc/View/Engine/Twig.php b/tests/_data/fixtures/Mvc/View/Engine/Twig.php index b57820bf14a..c3bd5aea6f9 100644 --- a/tests/_data/fixtures/Mvc/View/Engine/Twig.php +++ b/tests/_data/fixtures/Mvc/View/Engine/Twig.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Mvc\View\Engine; +namespace Phalcon\Tests\Fixtures\Mvc\View\Engine; use Phalcon\Di\DiInterface; use Phalcon\Mvc\View\Engine\AbstractEngine; diff --git a/tests/_data/fixtures/Mvc/View/IteratorObject.php b/tests/_data/fixtures/Mvc/View/IteratorObject.php index 62cb3008067..56b904076e8 100644 --- a/tests/_data/fixtures/Mvc/View/IteratorObject.php +++ b/tests/_data/fixtures/Mvc/View/IteratorObject.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Mvc\View; +namespace Phalcon\Tests\Fixtures\Mvc\View; class IteratorObject implements \Iterator, \Countable { diff --git a/tests/_data/fixtures/Paginator/Store.php b/tests/_data/fixtures/Paginator/Store.php index 4153f113fff..4d81a42569c 100644 --- a/tests/_data/fixtures/Paginator/Store.php +++ b/tests/_data/fixtures/Paginator/Store.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Paginator; +namespace Phalcon\Tests\Fixtures\Paginator; use Phalcon\Paginator\Repository; diff --git a/tests/_data/fixtures/Resultset.php b/tests/_data/fixtures/Resultset.php index 85b95005834..e709c04ea53 100644 --- a/tests/_data/fixtures/Resultset.php +++ b/tests/_data/fixtures/Resultset.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures; +namespace Phalcon\Tests\Fixtures; class Resultset { diff --git a/tests/_data/fixtures/Security/ExtendedBuilder.php b/tests/_data/fixtures/Security/ExtendedBuilder.php index 4118bb9e7c7..6ad3fb89cc5 100644 --- a/tests/_data/fixtures/Security/ExtendedBuilder.php +++ b/tests/_data/fixtures/Security/ExtendedBuilder.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Security; +namespace Phalcon\Tests\Fixtures\Security; use Phalcon\Security\JWT\Builder; /** * Class ExtendedBuilder * - * @package Phalcon\Test\Fixtures\Security + * @package Phalcon\Tests\Fixtures\Security */ class ExtendedBuilder extends Builder { diff --git a/tests/_data/fixtures/Service/HelloService.php b/tests/_data/fixtures/Service/HelloService.php index 58be346e342..59e8daf04e3 100644 --- a/tests/_data/fixtures/Service/HelloService.php +++ b/tests/_data/fixtures/Service/HelloService.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Service; +namespace Phalcon\Tests\Fixtures\Service; /** * Class HelloService diff --git a/tests/_data/fixtures/Session/ExtendedManager.php b/tests/_data/fixtures/Session/ExtendedManager.php index 4d567710140..65b5cca6dd2 100644 --- a/tests/_data/fixtures/Session/ExtendedManager.php +++ b/tests/_data/fixtures/Session/ExtendedManager.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Session; +namespace Phalcon\Tests\Fixtures\Session; use Phalcon\Session\Adapter\Noop; use Phalcon\Session\Manager; diff --git a/tests/_data/fixtures/Storage/Adapter/Libmemcached.php b/tests/_data/fixtures/Storage/Adapter/Libmemcached.php index c28cf514cc3..34b231699c6 100644 --- a/tests/_data/fixtures/Storage/Adapter/Libmemcached.php +++ b/tests/_data/fixtures/Storage/Adapter/Libmemcached.php @@ -11,12 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Storage\Adapter; +namespace Phalcon\Tests\Fixtures\Storage\Adapter; +use DateInterval; +use Exception; use Phalcon\Storage\Adapter\Libmemcached as StorageLibmemcached; /** - * Phalcon\Test\Fixtures\Storage\Adapter + * Phalcon\Tests\Fixtures\Storage\Adapter * * Libmemcached adapter fixture */ @@ -28,10 +30,10 @@ public function getOptions(): array } /** - * @param \DateInterval|int|null $ttl + * @param DateInterval|int|null $ttl * - * @return DateIntervalint|null - * @throws \Exception + * @return int + * @throws Exception */ public function getTtl($ttl = null): int { diff --git a/tests/_data/fixtures/Support/Dump/ClassProperties.php b/tests/_data/fixtures/Support/Dump/ClassProperties.php new file mode 100644 index 00000000000..8d394c46032 --- /dev/null +++ b/tests/_data/fixtures/Support/Dump/ClassProperties.php @@ -0,0 +1,26 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Fixtures\Support\Dump; + +/** + * Class ClassProperties + */ +class ClassProperties +{ + public $foo = 1; + + protected $bar = 2; + + private $baz = 3; +} diff --git a/tests/_data/fixtures/Support/Dump/class_properties.txt b/tests/_data/fixtures/Support/Dump/class_properties.txt new file mode 100644 index 00000000000..e7ff2aa90d3 --- /dev/null +++ b/tests/_data/fixtures/Support/Dump/class_properties.txt @@ -0,0 +1,7 @@ +Object Phalcon\Tests\Fixtures\Support\Dump\ClassProperties ( + ->foo (public) = Integer (1) + ->bar (protected) = Integer (2) + ->baz (private) = Integer (3) + Phalcon\Tests\Fixtures\Support\Dump\ClassProperties methods: (0) ( + ) +) diff --git a/tests/_data/fixtures/Support/Dump/variable_name_output.txt b/tests/_data/fixtures/Support/Dump/variable_name_output.txt new file mode 100644 index 00000000000..a5c960fccb1 --- /dev/null +++ b/tests/_data/fixtures/Support/Dump/variable_name_output.txt @@ -0,0 +1 @@ +
super String (5) "value"
diff --git a/tests/_data/fixtures/Support/Dump/variable_output.txt b/tests/_data/fixtures/Support/Dump/variable_output.txt new file mode 100644 index 00000000000..00a8fe619de --- /dev/null +++ b/tests/_data/fixtures/Support/Dump/variable_output.txt @@ -0,0 +1 @@ +
String (5) "value"
diff --git a/tests/_data/fixtures/Support/Dump/variables_output.txt b/tests/_data/fixtures/Support/Dump/variables_output.txt new file mode 100644 index 00000000000..45b7e1b9270 --- /dev/null +++ b/tests/_data/fixtures/Support/Dump/variables_output.txt @@ -0,0 +1,6 @@ +
var 0 String (6) "string"
var 1 Array (1) (
+  [key] => String (5) "value"
+)
var 2 Object stdClass (
+  stdClass methods: (0) (
+  )
+)
diff --git a/tests/_data/fixtures/Tasks/EchoTask.php b/tests/_data/fixtures/Tasks/EchoTask.php index 089e8c992fa..82df5760540 100644 --- a/tests/_data/fixtures/Tasks/EchoTask.php +++ b/tests/_data/fixtures/Tasks/EchoTask.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Tasks; +namespace Phalcon\Tests\Fixtures\Tasks; class EchoTask extends \Phalcon\Cli\Task { diff --git a/tests/_data/fixtures/Tasks/Issue787Task.php b/tests/_data/fixtures/Tasks/Issue787Task.php index d78a28943af..bdd57317c0e 100644 --- a/tests/_data/fixtures/Tasks/Issue787Task.php +++ b/tests/_data/fixtures/Tasks/Issue787Task.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Tasks; +namespace Phalcon\Tests\Fixtures\Tasks; use Phalcon\Cli\Task; diff --git a/tests/_data/fixtures/Tasks/MainTask.php b/tests/_data/fixtures/Tasks/MainTask.php index b947e6aacac..d05a00b6cb9 100644 --- a/tests/_data/fixtures/Tasks/MainTask.php +++ b/tests/_data/fixtures/Tasks/MainTask.php @@ -12,7 +12,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Tasks; +namespace Phalcon\Tests\Fixtures\Tasks; class MainTask extends \Phalcon\Cli\Task { diff --git a/tests/_data/fixtures/Tasks/OnConstructTask.php b/tests/_data/fixtures/Tasks/OnConstructTask.php index b672de7bfc2..c4068158b62 100644 --- a/tests/_data/fixtures/Tasks/OnConstructTask.php +++ b/tests/_data/fixtures/Tasks/OnConstructTask.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Tasks; +namespace Phalcon\Tests\Fixtures\Tasks; class OnConstructTask extends \Phalcon\Cli\Task { diff --git a/tests/_data/fixtures/Tasks/ParamsTask.php b/tests/_data/fixtures/Tasks/ParamsTask.php index c8f9270d9f1..7454e2f1510 100644 --- a/tests/_data/fixtures/Tasks/ParamsTask.php +++ b/tests/_data/fixtures/Tasks/ParamsTask.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Tasks; +namespace Phalcon\Tests\Fixtures\Tasks; class ParamsTask extends \Phalcon\Cli\Task { diff --git a/tests/_data/fixtures/Traits/ApcuTrait.php b/tests/_data/fixtures/Traits/ApcuTrait.php index c64deb239c4..5249421afbb 100644 --- a/tests/_data/fixtures/Traits/ApcuTrait.php +++ b/tests/_data/fixtures/Traits/ApcuTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/ConfigTrait.php b/tests/_data/fixtures/Traits/ConfigTrait.php index b943b5c112c..3badf964c52 100644 --- a/tests/_data/fixtures/Traits/ConfigTrait.php +++ b/tests/_data/fixtures/Traits/ConfigTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Config; use Phalcon\Config\Adapter\Grouped; diff --git a/tests/_data/fixtures/Traits/CookieTrait.php b/tests/_data/fixtures/Traits/CookieTrait.php index 51cb45c09fd..bb5d9b13799 100644 --- a/tests/_data/fixtures/Traits/CookieTrait.php +++ b/tests/_data/fixtures/Traits/CookieTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use RuntimeException; diff --git a/tests/_data/fixtures/Traits/Db/MysqlTrait.php b/tests/_data/fixtures/Traits/Db/MysqlTrait.php index f57284e827d..9c77e69c92d 100644 --- a/tests/_data/fixtures/Traits/Db/MysqlTrait.php +++ b/tests/_data/fixtures/Traits/Db/MysqlTrait.php @@ -10,7 +10,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits\Db; +namespace Phalcon\Tests\Fixtures\Traits\Db; use Phalcon\Db\Index; use Phalcon\Db\Reference; @@ -18,7 +18,7 @@ /** * Trait MysqlTrait * - * @package Phalcon\Test\Fixtures\Traits\Db + * @package Phalcon\Tests\Fixtures\Traits\Db */ trait MysqlTrait { diff --git a/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php b/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php index 154f306685d..2e84f4e6c03 100644 --- a/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php +++ b/tests/_data/fixtures/Traits/Db/PostgresqlTrait.php @@ -10,7 +10,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits\Db; +namespace Phalcon\Tests\Fixtures\Traits\Db; use Phalcon\Db\Column; use Phalcon\Db\Index; @@ -20,7 +20,7 @@ /** * Trait PostgresqlTrait * - * @package Phalcon\Test\Fixtures\Traits\Db + * @package Phalcon\Tests\Fixtures\Traits\Db */ trait PostgresqlTrait { diff --git a/tests/_data/fixtures/Traits/DbTrait.php b/tests/_data/fixtures/Traits/DbTrait.php index c03a4572797..05e6142e0e0 100644 --- a/tests/_data/fixtures/Traits/DbTrait.php +++ b/tests/_data/fixtures/Traits/DbTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Db\Column; diff --git a/tests/_data/fixtures/Traits/DiTrait.php b/tests/_data/fixtures/Traits/DiTrait.php index 2466971e2a3..926eed49377 100644 --- a/tests/_data/fixtures/Traits/DiTrait.php +++ b/tests/_data/fixtures/Traits/DiTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use DatabaseTester; use PDO; diff --git a/tests/_data/fixtures/Traits/DialectTrait.php b/tests/_data/fixtures/Traits/DialectTrait.php index 2c3dc9621b3..32aed51381a 100644 --- a/tests/_data/fixtures/Traits/DialectTrait.php +++ b/tests/_data/fixtures/Traits/DialectTrait.php @@ -10,7 +10,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Db\Column; use Phalcon\Db\Index; diff --git a/tests/_data/fixtures/Traits/FactoryTrait.php b/tests/_data/fixtures/Traits/FactoryTrait.php index f7b1c8c8ecf..31aaac62928 100644 --- a/tests/_data/fixtures/Traits/FactoryTrait.php +++ b/tests/_data/fixtures/Traits/FactoryTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Config; use Phalcon\Config\Adapter\Ini; diff --git a/tests/_data/fixtures/Traits/GdTrait.php b/tests/_data/fixtures/Traits/GdTrait.php index 06dcdf74ea5..dd2719e40a1 100644 --- a/tests/_data/fixtures/Traits/GdTrait.php +++ b/tests/_data/fixtures/Traits/GdTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/ImagickTrait.php b/tests/_data/fixtures/Traits/ImagickTrait.php index 3803d1a5044..ba801a3c7ce 100644 --- a/tests/_data/fixtures/Traits/ImagickTrait.php +++ b/tests/_data/fixtures/Traits/ImagickTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/JWTTrait.php b/tests/_data/fixtures/Traits/JWTTrait.php index 0b38f8630a0..bd2821234b0 100644 --- a/tests/_data/fixtures/Traits/JWTTrait.php +++ b/tests/_data/fixtures/Traits/JWTTrait.php @@ -9,13 +9,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Security\JWT\Builder; use Phalcon\Security\JWT\Exceptions\ValidatorException; use Phalcon\Security\JWT\Signer\Hmac; use Phalcon\Security\JWT\Token\Token; -use Phalcon\Test\Fixtures\Security\ExtendedBuilder; +use Phalcon\Tests\Fixtures\Security\ExtendedBuilder; trait JWTTrait { diff --git a/tests/_data/fixtures/Traits/LibmemcachedTrait.php b/tests/_data/fixtures/Traits/LibmemcachedTrait.php index 4bf1cad3fbc..18969933b89 100644 --- a/tests/_data/fixtures/Traits/LibmemcachedTrait.php +++ b/tests/_data/fixtures/Traits/LibmemcachedTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/LoaderTrait.php b/tests/_data/fixtures/Traits/LoaderTrait.php index 6a8ddf4c51e..9396cda7219 100644 --- a/tests/_data/fixtures/Traits/LoaderTrait.php +++ b/tests/_data/fixtures/Traits/LoaderTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/LoggerTrait.php b/tests/_data/fixtures/Traits/LoggerTrait.php index 7c53dabf104..c1b3dc99f3a 100644 --- a/tests/_data/fixtures/Traits/LoggerTrait.php +++ b/tests/_data/fixtures/Traits/LoggerTrait.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use DateTime; use Phalcon\Logger; diff --git a/tests/_data/fixtures/Traits/RecordsTrait.php b/tests/_data/fixtures/Traits/RecordsTrait.php index 7f650e790bd..3e13c4a588e 100644 --- a/tests/_data/fixtures/Traits/RecordsTrait.php +++ b/tests/_data/fixtures/Traits/RecordsTrait.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; use PHPUnit\Framework\Assert; use function uniqid; diff --git a/tests/_data/fixtures/Traits/RedisTrait.php b/tests/_data/fixtures/Traits/RedisTrait.php index ef23f1fb635..1dfec736e5d 100644 --- a/tests/_data/fixtures/Traits/RedisTrait.php +++ b/tests/_data/fixtures/Traits/RedisTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; diff --git a/tests/_data/fixtures/Traits/RouterTrait.php b/tests/_data/fixtures/Traits/RouterTrait.php index 7df45244ecc..3f5c1252219 100644 --- a/tests/_data/fixtures/Traits/RouterTrait.php +++ b/tests/_data/fixtures/Traits/RouterTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use Phalcon\Di; use Phalcon\Http\Request; @@ -101,7 +101,7 @@ protected function getRouterAndSetRoutesAndHostNames(array $settings, bool $defa /** * get router and set params for - * Phalcon\Test\Unit\Mvc\RouterTest::testUsingRouteConverters() test + * Phalcon\Tests\Unit\Mvc\RouterTest::testUsingRouteConverters() test */ protected function getRouterAndSetData(): Router { diff --git a/tests/_data/fixtures/Traits/TranslateArrayTrait.php b/tests/_data/fixtures/Traits/TranslateArrayTrait.php index 2c55f23c4db..046fe3e6199 100644 --- a/tests/_data/fixtures/Traits/TranslateArrayTrait.php +++ b/tests/_data/fixtures/Traits/TranslateArrayTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; trait TranslateArrayTrait { diff --git a/tests/_data/fixtures/Traits/TranslateCsvTrait.php b/tests/_data/fixtures/Traits/TranslateCsvTrait.php index 42e989ed9eb..bb350e8ee60 100644 --- a/tests/_data/fixtures/Traits/TranslateCsvTrait.php +++ b/tests/_data/fixtures/Traits/TranslateCsvTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use function dataDir; diff --git a/tests/_data/fixtures/Traits/TranslateGettextTrait.php b/tests/_data/fixtures/Traits/TranslateGettextTrait.php index e044fb7e5f4..4b887012586 100644 --- a/tests/_data/fixtures/Traits/TranslateGettextTrait.php +++ b/tests/_data/fixtures/Traits/TranslateGettextTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use UnitTester; use function dataDir; diff --git a/tests/_data/fixtures/Traits/ValidationTrait.php b/tests/_data/fixtures/Traits/ValidationTrait.php index e3fb0dc219a..250a87e90b5 100644 --- a/tests/_data/fixtures/Traits/ValidationTrait.php +++ b/tests/_data/fixtures/Traits/ValidationTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use IntegrationTester; use Phalcon\Validation\ValidatorInterface; diff --git a/tests/_data/fixtures/Traits/VersionTrait.php b/tests/_data/fixtures/Traits/VersionTrait.php index 34b7fcc5bea..e97030f0687 100644 --- a/tests/_data/fixtures/Traits/VersionTrait.php +++ b/tests/_data/fixtures/Traits/VersionTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; trait VersionTrait { diff --git a/tests/_data/fixtures/Traits/ViewTrait.php b/tests/_data/fixtures/Traits/ViewTrait.php index 7f2da05debe..e323057efe8 100644 --- a/tests/_data/fixtures/Traits/ViewTrait.php +++ b/tests/_data/fixtures/Traits/ViewTrait.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Traits; +namespace Phalcon\Tests\Fixtures\Traits; use DirectoryIterator; use Phalcon\Mvc\View; diff --git a/tests/_data/fixtures/Translate/Adapter/NativeAdapter.php b/tests/_data/fixtures/Translate/Adapter/NativeAdapter.php index d3e89281658..d550bf73655 100644 --- a/tests/_data/fixtures/Translate/Adapter/NativeAdapter.php +++ b/tests/_data/fixtures/Translate/Adapter/NativeAdapter.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Fixtures\Translate\Adapter; +namespace Phalcon\Tests\Fixtures\Translate\Adapter; use Phalcon\Translate\Adapter\NativeArray; diff --git a/tests/_data/fixtures/_tocheck-models/Abonnes.php b/tests/_data/fixtures/_tocheck-models/Abonnes.php index 0670962cc5d..c329c2aab4e 100644 --- a/tests/_data/fixtures/_tocheck-models/Abonnes.php +++ b/tests/_data/fixtures/_tocheck-models/Abonnes.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Messages\Message; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/AlbumORama/Albums.php b/tests/_data/fixtures/_tocheck-models/AlbumORama/Albums.php index 7925dbcafbd..e327d95f5e0 100644 --- a/tests/_data/fixtures/_tocheck-models/AlbumORama/Albums.php +++ b/tests/_data/fixtures/_tocheck-models/AlbumORama/Albums.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\AlbumORama; +namespace Phalcon\Tests\Models\AlbumORama; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/AlbumORama/Artists.php b/tests/_data/fixtures/_tocheck-models/AlbumORama/Artists.php index 4dd54d2023d..4c8525e3ee8 100644 --- a/tests/_data/fixtures/_tocheck-models/AlbumORama/Artists.php +++ b/tests/_data/fixtures/_tocheck-models/AlbumORama/Artists.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\AlbumORama; +namespace Phalcon\Tests\Models\AlbumORama; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/AlbumORama/Songs.php b/tests/_data/fixtures/_tocheck-models/AlbumORama/Songs.php index 56c656f1868..41d286c36cd 100644 --- a/tests/_data/fixtures/_tocheck-models/AlbumORama/Songs.php +++ b/tests/_data/fixtures/_tocheck-models/AlbumORama/Songs.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\AlbumORama; +namespace Phalcon\Tests\Models\AlbumORama; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Annotations/Robot.php b/tests/_data/fixtures/_tocheck-models/Annotations/Robot.php index fc2e1bf7acc..dd7c775e749 100644 --- a/tests/_data/fixtures/_tocheck-models/Annotations/Robot.php +++ b/tests/_data/fixtures/_tocheck-models/Annotations/Robot.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Annotations; +namespace Phalcon\Tests\Models\Annotations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/BodyParts/Body.php b/tests/_data/fixtures/_tocheck-models/BodyParts/Body.php index a678772e2e0..8a0b4fb9a11 100644 --- a/tests/_data/fixtures/_tocheck-models/BodyParts/Body.php +++ b/tests/_data/fixtures/_tocheck-models/BodyParts/Body.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\BodyParts; +namespace Phalcon\Tests\Models\BodyParts; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/BodyParts/Head.php b/tests/_data/fixtures/_tocheck-models/BodyParts/Head.php index 37f4e8f645a..80f6dc864ab 100644 --- a/tests/_data/fixtures/_tocheck-models/BodyParts/Head.php +++ b/tests/_data/fixtures/_tocheck-models/BodyParts/Head.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\BodyParts; +namespace Phalcon\Tests\Models\BodyParts; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Boutique/Robots.php b/tests/_data/fixtures/_tocheck-models/Boutique/Robots.php index 2a494948bf9..3a6a09fd50f 100644 --- a/tests/_data/fixtures/_tocheck-models/Boutique/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Boutique/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Boutique; +namespace Phalcon\Tests\Models\Boutique; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Boutique/Robotters.php b/tests/_data/fixtures/_tocheck-models/Boutique/Robotters.php index 3bd8be5e65a..9633f14646c 100644 --- a/tests/_data/fixtures/_tocheck-models/Boutique/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Boutique/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Boutique; +namespace Phalcon\Tests\Models\Boutique; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Cacheable/Model.php b/tests/_data/fixtures/_tocheck-models/Cacheable/Model.php index a599e74f796..a5682d669ad 100644 --- a/tests/_data/fixtures/_tocheck-models/Cacheable/Model.php +++ b/tests/_data/fixtures/_tocheck-models/Cacheable/Model.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Cacheable; +namespace Phalcon\Tests\Models\Cacheable; use Phalcon\Mvc\Model as PhalconModel; use Phalcon\Mvc\ModelInterface; diff --git a/tests/_data/fixtures/_tocheck-models/Cacheable/Parts.php b/tests/_data/fixtures/_tocheck-models/Cacheable/Parts.php index 7de9701e441..2162a2aba74 100644 --- a/tests/_data/fixtures/_tocheck-models/Cacheable/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Cacheable/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Cacheable; +namespace Phalcon\Tests\Models\Cacheable; use Phalcon\Mvc\Model as PhalconModel; diff --git a/tests/_data/fixtures/_tocheck-models/Cacheable/Robots.php b/tests/_data/fixtures/_tocheck-models/Cacheable/Robots.php index 84f86fe2070..0712cfc1c45 100644 --- a/tests/_data/fixtures/_tocheck-models/Cacheable/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Cacheable/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Cacheable; +namespace Phalcon\Tests\Models\Cacheable; use Phalcon\Mvc\Model as PhalconModel; diff --git a/tests/_data/fixtures/_tocheck-models/Cacheable/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Cacheable/RobotsParts.php index 826d884a994..181da400380 100644 --- a/tests/_data/fixtures/_tocheck-models/Cacheable/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Cacheable/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Cacheable; +namespace Phalcon\Tests\Models\Cacheable; use Phalcon\Mvc\Model as PhalconModel; diff --git a/tests/_data/fixtures/_tocheck-models/Childs.php b/tests/_data/fixtures/_tocheck-models/Childs.php index 8d9f7c66cb3..7ed2022af6b 100644 --- a/tests/_data/fixtures/_tocheck-models/Childs.php +++ b/tests/_data/fixtures/_tocheck-models/Childs.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Customers1.php b/tests/_data/fixtures/_tocheck-models/Customers1.php index faf689eda5e..04d31d0adc9 100644 --- a/tests/_data/fixtures/_tocheck-models/Customers1.php +++ b/tests/_data/fixtures/_tocheck-models/Customers1.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Resultset\Simple; diff --git a/tests/_data/fixtures/_tocheck-models/Deles.php b/tests/_data/fixtures/_tocheck-models/Deles.php index f1aaa9307c7..78b1b09dd78 100644 --- a/tests/_data/fixtures/_tocheck-models/Deles.php +++ b/tests/_data/fixtures/_tocheck-models/Deles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Dynamic/Personas.php b/tests/_data/fixtures/_tocheck-models/Dynamic/Personas.php index 3f64e3a102c..a62bd50dff4 100644 --- a/tests/_data/fixtures/_tocheck-models/Dynamic/Personas.php +++ b/tests/_data/fixtures/_tocheck-models/Dynamic/Personas.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Dynamic; +namespace Phalcon\Tests\Models\Dynamic; use Phalcon\Mvc\Model as PhalconModel; diff --git a/tests/_data/fixtures/_tocheck-models/Dynamic/Personers.php b/tests/_data/fixtures/_tocheck-models/Dynamic/Personers.php index 17c575d2778..fdbafa37347 100644 --- a/tests/_data/fixtures/_tocheck-models/Dynamic/Personers.php +++ b/tests/_data/fixtures/_tocheck-models/Dynamic/Personers.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Dynamic; +namespace Phalcon\Tests\Models\Dynamic; use Phalcon\Mvc\Model as PhalconModel; use Phalcon\Mvc\Model\Behavior\SoftDelete; diff --git a/tests/_data/fixtures/_tocheck-models/Dynamic/Robots.php b/tests/_data/fixtures/_tocheck-models/Dynamic/Robots.php index ae6eb420ac9..724a3866c25 100644 --- a/tests/_data/fixtures/_tocheck-models/Dynamic/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Dynamic/Robots.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Dynamic; +namespace Phalcon\Tests\Models\Dynamic; use Phalcon\Mvc\Model as PhalconModel; -use Phalcon\Test\Models\RobotsParts; +use Phalcon\Tests\Models\RobotsParts; /** * @property int $id diff --git a/tests/_data/fixtures/_tocheck-models/GossipRobots.php b/tests/_data/fixtures/_tocheck-models/GossipRobots.php index 2c15d0d6611..b63275de262 100644 --- a/tests/_data/fixtures/_tocheck-models/GossipRobots.php +++ b/tests/_data/fixtures/_tocheck-models/GossipRobots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/I1534.php b/tests/_data/fixtures/_tocheck-models/I1534.php index 3faa9ab6b12..289a1596ca5 100644 --- a/tests/_data/fixtures/_tocheck-models/I1534.php +++ b/tests/_data/fixtures/_tocheck-models/I1534.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/InvoicesWithColumnMap.php b/tests/_data/fixtures/_tocheck-models/InvoicesWithColumnMap.php index 93228ce1aab..7402e04f342 100644 --- a/tests/_data/fixtures/_tocheck-models/InvoicesWithColumnMap.php +++ b/tests/_data/fixtures/_tocheck-models/InvoicesWithColumnMap.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Language.php b/tests/_data/fixtures/_tocheck-models/Language.php index ac20ed48bda..722b69c27d6 100644 --- a/tests/_data/fixtures/_tocheck-models/Language.php +++ b/tests/_data/fixtures/_tocheck-models/Language.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Resultset\Simple; diff --git a/tests/_data/fixtures/_tocheck-models/LanguageI18n.php b/tests/_data/fixtures/_tocheck-models/LanguageI18n.php index dc4b661643f..559886d1a10 100644 --- a/tests/_data/fixtures/_tocheck-models/LanguageI18n.php +++ b/tests/_data/fixtures/_tocheck-models/LanguageI18n.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/ModelWithStringField.php b/tests/_data/fixtures/_tocheck-models/ModelWithStringField.php index d819a102331..f61b223bed7 100644 --- a/tests/_data/fixtures/_tocheck-models/ModelWithStringField.php +++ b/tests/_data/fixtures/_tocheck-models/ModelWithStringField.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/News/Subscribers.php b/tests/_data/fixtures/_tocheck-models/News/Subscribers.php index 612432d0047..9e7fbaa81a0 100644 --- a/tests/_data/fixtures/_tocheck-models/News/Subscribers.php +++ b/tests/_data/fixtures/_tocheck-models/News/Subscribers.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\News; +namespace Phalcon\Tests\Models\News; use Phalcon\Mvc\Model as PhalconModel; use Phalcon\Mvc\Model\Behavior\SoftDelete; diff --git a/tests/_data/fixtures/_tocheck-models/PackageDetails.php b/tests/_data/fixtures/_tocheck-models/PackageDetails.php index 5ab06381005..c26f09026a6 100644 --- a/tests/_data/fixtures/_tocheck-models/PackageDetails.php +++ b/tests/_data/fixtures/_tocheck-models/PackageDetails.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Packages.php b/tests/_data/fixtures/_tocheck-models/Packages.php index 31236998669..37cfd0217ce 100644 --- a/tests/_data/fixtures/_tocheck-models/Packages.php +++ b/tests/_data/fixtures/_tocheck-models/Packages.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Resultset; diff --git a/tests/_data/fixtures/_tocheck-models/Parts.php b/tests/_data/fixtures/_tocheck-models/Parts.php index 2bb8ef84209..c0ce153d01d 100644 --- a/tests/_data/fixtures/_tocheck-models/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Parts2.php b/tests/_data/fixtures/_tocheck-models/Parts2.php index 28638035fca..c0933bd90bd 100644 --- a/tests/_data/fixtures/_tocheck-models/Parts2.php +++ b/tests/_data/fixtures/_tocheck-models/Parts2.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Events\Manager; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/People.php b/tests/_data/fixtures/_tocheck-models/People.php index 42332fb8ece..127ea619776 100644 --- a/tests/_data/fixtures/_tocheck-models/People.php +++ b/tests/_data/fixtures/_tocheck-models/People.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Personas.php b/tests/_data/fixtures/_tocheck-models/Personas.php index 9508e04c96e..d956119fe44 100644 --- a/tests/_data/fixtures/_tocheck-models/Personas.php +++ b/tests/_data/fixtures/_tocheck-models/Personas.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Personers.php b/tests/_data/fixtures/_tocheck-models/Personers.php index dc7a4bace86..ebbd8d9dbb7 100644 --- a/tests/_data/fixtures/_tocheck-models/Personers.php +++ b/tests/_data/fixtures/_tocheck-models/Personers.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Personnes.php b/tests/_data/fixtures/_tocheck-models/Personnes.php index 425fb45cd18..3206da72e14 100644 --- a/tests/_data/fixtures/_tocheck-models/Personnes.php +++ b/tests/_data/fixtures/_tocheck-models/Personnes.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Pessoas.php b/tests/_data/fixtures/_tocheck-models/Pessoas.php index 97cfd7f0607..ba8f450390c 100644 --- a/tests/_data/fixtures/_tocheck-models/Pessoas.php +++ b/tests/_data/fixtures/_tocheck-models/Pessoas.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Prueba.php b/tests/_data/fixtures/_tocheck-models/Prueba.php index c1b75443756..bc6439de4c4 100644 --- a/tests/_data/fixtures/_tocheck-models/Prueba.php +++ b/tests/_data/fixtures/_tocheck-models/Prueba.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Deles.php b/tests/_data/fixtures/_tocheck-models/Relations/Deles.php index 00a34a8bfdc..acedae29a53 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Deles.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Deles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/M2MParts.php b/tests/_data/fixtures/_tocheck-models/Relations/M2MParts.php index 3b1335ef53d..07a8f6049ad 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/M2MParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/M2MParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/M2MRobots.php b/tests/_data/fixtures/_tocheck-models/Relations/M2MRobots.php index d2ad51913e9..52f6034065d 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/M2MRobots.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/M2MRobots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/M2MRobotsParts.php b/tests/_data/fixtures/_tocheck-models/Relations/M2MRobotsParts.php index e8dc79f1b91..b01cfc68933 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/M2MRobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/M2MRobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/RelationsParts.php b/tests/_data/fixtures/_tocheck-models/Relations/RelationsParts.php index 8cfd4a34cde..715bedbd753 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/RelationsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/RelationsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobots.php b/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobots.php index adef8eb553d..13c8550944b 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobots.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobotsParts.php b/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobotsParts.php index 888872be4ee..b7cd6dd4e96 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/RelationsRobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Robots.php b/tests/_data/fixtures/_tocheck-models/Relations/Robots.php index 140dea65e1b..66f88950623 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Relations/RobotsParts.php index 0a93ad514a0..6fce0230960 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/RobotsParts.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Row; /** - * Phalcon\Test\Models\Relations\RobotsParts + * Phalcon\Tests\Models\Relations\RobotsParts * * @method static RobotsParts findFirst($parameters = null) * @method Row getRobots($parameters = null) diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Robotters.php b/tests/_data/fixtures/_tocheck-models/Relations/Robotters.php index fb480922be2..9fb5538a5fe 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/RobottersDeles.php b/tests/_data/fixtures/_tocheck-models/Relations/RobottersDeles.php index a9ee59eea7b..75b250ddd2c 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/RobottersDeles.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/RobottersDeles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations; +namespace Phalcon\Tests\Models\Relations; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/Deles.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/Deles.php index 839e6b17204..f109bea903f 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/Deles.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/Deles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/Parts.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/Parts.php index b3958691ab4..3807ea42774 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/Products.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/Products.php index 1615835aa7a..7dd30393b8a 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/Products.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/Products.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Db\Column; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/Robots.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/Robots.php index 1bf562f7d0f..bebe9401c7c 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/RobotsParts.php index 83127c3832b..d084ca10655 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/Robotters.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/Robotters.php index e84b568cb31..5096122bfb9 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Relations/Some/RobottersDeles.php b/tests/_data/fixtures/_tocheck-models/Relations/Some/RobottersDeles.php index f1e966daf2a..6f752aab24f 100644 --- a/tests/_data/fixtures/_tocheck-models/Relations/Some/RobottersDeles.php +++ b/tests/_data/fixtures/_tocheck-models/Relations/Some/RobottersDeles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Relations\Some; +namespace Phalcon\Tests\Models\Relations\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Robos.php b/tests/_data/fixtures/_tocheck-models/Robos.php index 522d49c5862..3fd13b4d4b5 100644 --- a/tests/_data/fixtures/_tocheck-models/Robos.php +++ b/tests/_data/fixtures/_tocheck-models/Robos.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Robots.php b/tests/_data/fixtures/_tocheck-models/Robots.php index 582cd0b3635..ba130b32fbc 100644 --- a/tests/_data/fixtures/_tocheck-models/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Robots2.php b/tests/_data/fixtures/_tocheck-models/Robots2.php index 7e20f6a9ca9..952ebefce08 100644 --- a/tests/_data/fixtures/_tocheck-models/Robots2.php +++ b/tests/_data/fixtures/_tocheck-models/Robots2.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/RobotsExtended.php b/tests/_data/fixtures/_tocheck-models/RobotsExtended.php index 6dbfd5e1723..bf543adc84a 100644 --- a/tests/_data/fixtures/_tocheck-models/RobotsExtended.php +++ b/tests/_data/fixtures/_tocheck-models/RobotsExtended.php @@ -10,7 +10,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\ModelInterface; diff --git a/tests/_data/fixtures/_tocheck-models/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/RobotsParts.php index 594b6b0a975..1343e8edd9e 100644 --- a/tests/_data/fixtures/_tocheck-models/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/RobotsReusable.php b/tests/_data/fixtures/_tocheck-models/RobotsReusable.php index 7e730c669c8..cc77eb07844 100644 --- a/tests/_data/fixtures/_tocheck-models/RobotsReusable.php +++ b/tests/_data/fixtures/_tocheck-models/RobotsReusable.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Robotters.php b/tests/_data/fixtures/_tocheck-models/Robotters.php index f111c0ed195..ac142851ebc 100644 --- a/tests/_data/fixtures/_tocheck-models/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/RobottersDeles.php b/tests/_data/fixtures/_tocheck-models/RobottersDeles.php index f0c2a10ec95..220fdf76a07 100644 --- a/tests/_data/fixtures/_tocheck-models/RobottersDeles.php +++ b/tests/_data/fixtures/_tocheck-models/RobottersDeles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Robotto.php b/tests/_data/fixtures/_tocheck-models/Robotto.php index e801fae8b68..45cb6d3558c 100644 --- a/tests/_data/fixtures/_tocheck-models/Robotto.php +++ b/tests/_data/fixtures/_tocheck-models/Robotto.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Db\Column; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Select.php b/tests/_data/fixtures/_tocheck-models/Select.php index ae98d31a11a..2444d3347ed 100644 --- a/tests/_data/fixtures/_tocheck-models/Select.php +++ b/tests/_data/fixtures/_tocheck-models/Select.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Parts.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Parts.php index e714b3f7d0c..35330c85e8f 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Personas.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Personas.php index bbe8099e154..d981cd71cd0 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Personas.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Personas.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Requests.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Requests.php index 8cf39ea5563..e73102dfa60 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Requests.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Requests.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Robots.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Robots.php index c586fba140a..3cee5ea0aaf 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Snapshot/RobotsParts.php index cd75e0b9685..f6886d88556 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Robotters.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Robotters.php index 366fa8daf67..ac2ce0b1289 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Snapshot/Subscribers.php b/tests/_data/fixtures/_tocheck-models/Snapshot/Subscribers.php index adf2f2309c6..1ca92d7e577 100644 --- a/tests/_data/fixtures/_tocheck-models/Snapshot/Subscribers.php +++ b/tests/_data/fixtures/_tocheck-models/Snapshot/Subscribers.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Snapshot; +namespace Phalcon\Tests\Models\Snapshot; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Behavior\SoftDelete; diff --git a/tests/_data/fixtures/_tocheck-models/Some/Deles.php b/tests/_data/fixtures/_tocheck-models/Some/Deles.php index 39b6e7a1ddc..c4102dd9c2f 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/Deles.php +++ b/tests/_data/fixtures/_tocheck-models/Some/Deles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/Parts.php b/tests/_data/fixtures/_tocheck-models/Some/Parts.php index 247e91c4acc..c2b9a518dbb 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Some/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/Products.php b/tests/_data/fixtures/_tocheck-models/Some/Products.php index ee7a2a222a5..d6795a66021 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/Products.php +++ b/tests/_data/fixtures/_tocheck-models/Some/Products.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Db\Column; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/Robots.php b/tests/_data/fixtures/_tocheck-models/Some/Robots.php index 64ad6cddc98..673ff05a659 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Some/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Some/RobotsParts.php index e1d49c49504..c90ec178b8e 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Some/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/Robotters.php b/tests/_data/fixtures/_tocheck-models/Some/Robotters.php index 4e735b0360d..eae1070a019 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/Robotters.php +++ b/tests/_data/fixtures/_tocheck-models/Some/Robotters.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Some/RobottersDeles.php b/tests/_data/fixtures/_tocheck-models/Some/RobottersDeles.php index d670b0a99ad..e7c6e38edc6 100644 --- a/tests/_data/fixtures/_tocheck-models/Some/RobottersDeles.php +++ b/tests/_data/fixtures/_tocheck-models/Some/RobottersDeles.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Some; +namespace Phalcon\Tests\Models\Some; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Statistics/AgeStats.php b/tests/_data/fixtures/_tocheck-models/Statistics/AgeStats.php index 376dd6fb275..cd245554d8c 100644 --- a/tests/_data/fixtures/_tocheck-models/Statistics/AgeStats.php +++ b/tests/_data/fixtures/_tocheck-models/Statistics/AgeStats.php @@ -9,10 +9,10 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Statistics; +namespace Phalcon\Tests\Models\Statistics; use Phalcon\Mvc\Model; -use Phalcon\Test\Resultsets\Stats; +use Phalcon\Tests\Resultsets\Stats; class AgeStats extends Model { diff --git a/tests/_data/fixtures/_tocheck-models/Statistics/CityStats.php b/tests/_data/fixtures/_tocheck-models/Statistics/CityStats.php index 4d8bc201888..4439460ccdc 100644 --- a/tests/_data/fixtures/_tocheck-models/Statistics/CityStats.php +++ b/tests/_data/fixtures/_tocheck-models/Statistics/CityStats.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Statistics; +namespace Phalcon\Tests\Models\Statistics; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Statistics/CountryStats.php b/tests/_data/fixtures/_tocheck-models/Statistics/CountryStats.php index 43a67b9a532..01f404764bf 100644 --- a/tests/_data/fixtures/_tocheck-models/Statistics/CountryStats.php +++ b/tests/_data/fixtures/_tocheck-models/Statistics/CountryStats.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Statistics; +namespace Phalcon\Tests\Models\Statistics; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Statistics/GenderStats.php b/tests/_data/fixtures/_tocheck-models/Statistics/GenderStats.php index 8bc9405b37d..a16479c002b 100644 --- a/tests/_data/fixtures/_tocheck-models/Statistics/GenderStats.php +++ b/tests/_data/fixtures/_tocheck-models/Statistics/GenderStats.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Statistics; +namespace Phalcon\Tests\Models\Statistics; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Stock.php b/tests/_data/fixtures/_tocheck-models/Stock.php index f95b644e0bc..6cb612ca60b 100644 --- a/tests/_data/fixtures/_tocheck-models/Stock.php +++ b/tests/_data/fixtures/_tocheck-models/Stock.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Store/Parts.php b/tests/_data/fixtures/_tocheck-models/Store/Parts.php index 1cc6860556b..09d13d1091e 100644 --- a/tests/_data/fixtures/_tocheck-models/Store/Parts.php +++ b/tests/_data/fixtures/_tocheck-models/Store/Parts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Store; +namespace Phalcon\Tests\Models\Store; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Store/Robots.php b/tests/_data/fixtures/_tocheck-models/Store/Robots.php index 834b6d60744..417e7873e5d 100644 --- a/tests/_data/fixtures/_tocheck-models/Store/Robots.php +++ b/tests/_data/fixtures/_tocheck-models/Store/Robots.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Store; +namespace Phalcon\Tests\Models\Store; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Store/RobotsParts.php b/tests/_data/fixtures/_tocheck-models/Store/RobotsParts.php index 1c0823d3b29..3a5643f1f39 100644 --- a/tests/_data/fixtures/_tocheck-models/Store/RobotsParts.php +++ b/tests/_data/fixtures/_tocheck-models/Store/RobotsParts.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models\Store; +namespace Phalcon\Tests\Models\Store; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Subscribers.php b/tests/_data/fixtures/_tocheck-models/Subscribers.php index 009d79665b8..9f0d0949bd5 100644 --- a/tests/_data/fixtures/_tocheck-models/Subscribers.php +++ b/tests/_data/fixtures/_tocheck-models/Subscribers.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/Subscriptores.php b/tests/_data/fixtures/_tocheck-models/Subscriptores.php index 70a53fd090c..ae4a8d69cf2 100644 --- a/tests/_data/fixtures/_tocheck-models/Subscriptores.php +++ b/tests/_data/fixtures/_tocheck-models/Subscriptores.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Models; +namespace Phalcon\Tests\Models; use Phalcon\Messages\Message; use Phalcon\Mvc\Model; diff --git a/tests/_data/fixtures/_tocheck-models/TinyInt.php b/tests/_data/fixtures/_tocheck-models/TinyInt.php index 47ca84ccddf..47f51135266 100644 --- a/tests/_data/fixtures/_tocheck-models/TinyInt.php +++ b/tests/_data/fixtures/_tocheck-models/TinyInt.php @@ -1,6 +1,6 @@ registerNamespaces([ - 'Phalcon\Test\Modules\Backend\Tasks' => + 'Phalcon\Tests\Modules\Backend\Tasks' => dataDir('fixtures/modules/backend/tasks/') ] ); diff --git a/tests/_data/fixtures/modules/backend/controllers/LoginController.php b/tests/_data/fixtures/modules/backend/controllers/LoginController.php index 36b9a9065ec..66308e86ac5 100644 --- a/tests/_data/fixtures/modules/backend/controllers/LoginController.php +++ b/tests/_data/fixtures/modules/backend/controllers/LoginController.php @@ -1,6 +1,6 @@ getDI()->getShared('dispatcher'); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->handle([]); @@ -181,7 +181,7 @@ public function handleModule(CliTester $I) ); $dispatcher = $console->dispatcher; - $dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $I->expectThrowable( new Exception('Task Run'), @@ -276,7 +276,7 @@ function (Event $event, $console, $moduleName) { ] ); - $console->dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $console->dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $I->expectThrowable( new Exception('Console Before Start BackendModule Event Fired'), @@ -317,7 +317,7 @@ public function handleEventAfterStartModule(CliTester $I) ] ); - $console->dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $console->dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $eventsManager->attach( 'console:afterStartModule', @@ -401,7 +401,7 @@ function (Event $event, $console, $moduleObject) { ], ] ); - $console->dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $console->dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $I->expectThrowable( new Exception( @@ -432,7 +432,7 @@ public function handle13724(CliTester $I) $console = new CliConsole(new DiFactoryDefault()); $dispatcher = $console->dispatcher; - $dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $console->registerModules( [ @@ -454,7 +454,7 @@ public function handle13724(CliTester $I) $console = new CliConsole(new DiFactoryDefault()); $dispatcher = $console->dispatcher; - $dispatcher->setNamespaceName('Phalcon\Test\Modules\Backend\Tasks'); + $dispatcher->setNamespaceName('Phalcon\Tests\Modules\Backend\Tasks'); $console->registerModules( [ @@ -527,7 +527,7 @@ function () use ($console) { public function testIssue787(CliTester $I) { $console = new CliConsole(new DiFactoryDefault()); - $console->dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $console->dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->handle( [ diff --git a/tests/cli/Cli/Console/RegisterModulesCest.php b/tests/cli/Cli/Console/RegisterModulesCest.php index 9dc41095f07..2820a508bad 100644 --- a/tests/cli/Cli/Console/RegisterModulesCest.php +++ b/tests/cli/Cli/Console/RegisterModulesCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Console; +namespace Phalcon\Tests\Cli\Cli\Console; use CliTester; use Phalcon\Cli\Console as CliConsole; use Phalcon\Cli\Console\Exception; use Phalcon\Di\FactoryDefault\Cli as DiFactoryDefault; -use Phalcon\Test\Modules\Frontend\Module as FrontendModule; +use Phalcon\Tests\Modules\Frontend\Module as FrontendModule; class RegisterModulesCest { diff --git a/tests/cli/Cli/Console/SetArgumentCest.php b/tests/cli/Cli/Console/SetArgumentCest.php index 580bc08da6d..ae2b2af15b9 100644 --- a/tests/cli/Cli/Console/SetArgumentCest.php +++ b/tests/cli/Cli/Console/SetArgumentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Console; +namespace Phalcon\Tests\Cli\Cli\Console; use CliTester; use Phalcon\Cli\Console as CliConsole; @@ -46,7 +46,7 @@ function () { ); $dispatcher = $di->getShared('dispatcher'); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->setArgument([ 'php', '--foo=bar', @@ -89,7 +89,7 @@ public function testArgumentArray(CliTester $I) $dispatcher = $di->getShared('dispatcher'); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->setArgument( [ @@ -217,7 +217,7 @@ public function testArgumentNoShift(CliTester $I) $console = new CliConsole($di); $dispatcher = $di->getShared('dispatcher'); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->setArgument( [], @@ -349,7 +349,7 @@ function () { ); $dispatcher = $di->getShared('dispatcher'); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $console->setArgument( diff --git a/tests/cli/Cli/Console/UnderscoreGetCest.php b/tests/cli/Cli/Console/UnderscoreGetCest.php index f70dc074976..f2aa42d52ed 100644 --- a/tests/cli/Cli/Console/UnderscoreGetCest.php +++ b/tests/cli/Cli/Console/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Console; +namespace Phalcon\Tests\Cli\Cli\Console; use CliTester; use Phalcon\Cli\Console as CliConsole; diff --git a/tests/cli/Cli/Dispatcher/CallActionMethodCest.php b/tests/cli/Cli/Dispatcher/CallActionMethodCest.php index d2193e52d8b..2eb5d7f6a1f 100644 --- a/tests/cli/Cli/Dispatcher/CallActionMethodCest.php +++ b/tests/cli/Cli/Dispatcher/CallActionMethodCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; -use Phalcon\Test\Fixtures\Tasks\MainTask; +use Phalcon\Tests\Fixtures\Tasks\MainTask; class CallActionMethodCest { diff --git a/tests/cli/Cli/Dispatcher/DispatchCest.php b/tests/cli/Cli/Dispatcher/DispatchCest.php index ad0ece589b4..40b92e0a503 100644 --- a/tests/cli/Cli/Dispatcher/DispatchCest.php +++ b/tests/cli/Cli/Dispatcher/DispatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -35,7 +35,7 @@ public function cliDispatcherDispatch(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->dispatch(); $I->assertEquals( 'main', @@ -60,7 +60,7 @@ public function cliDispatcherDispatch(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName('echo'); $dispatcher->dispatch(); $I->assertEquals( @@ -85,7 +85,7 @@ public function cliDispatcherDispatch(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName('main'); $dispatcher->setActionName('hello'); $dispatcher->dispatch(); @@ -111,7 +111,7 @@ public function cliDispatcherDispatch(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setActionName('hello'); $dispatcher->setParams( [ @@ -145,7 +145,7 @@ public function cliDispatcherDispatch(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setActionName('hello'); $dispatcher->setParams( [ diff --git a/tests/cli/Cli/Dispatcher/ForwardCest.php b/tests/cli/Cli/Dispatcher/ForwardCest.php index da0c9ccf383..decb2527fbb 100644 --- a/tests/cli/Cli/Dispatcher/ForwardCest.php +++ b/tests/cli/Cli/Dispatcher/ForwardCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -32,7 +32,7 @@ public function cliDispatcherForward(CliTester $I) $I->wantToTest('Cli\Dispatcher - forward()'); $dispatcher = new Dispatcher(); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setActionName('hello'); $dispatcher->forward( [ diff --git a/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php b/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php index 3eecc76ea65..6c1e083dd9f 100644 --- a/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php +++ b/tests/cli/Cli/Dispatcher/GetActiveMethodCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php b/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php index 2de825dd332..95d3dae0597 100644 --- a/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php +++ b/tests/cli/Cli/Dispatcher/GetActiveTaskCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -35,10 +35,10 @@ public function cliDispatcherGetActiveTask(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName("main"); $dispatcher->dispatch(); - $I->assertInstanceOf('\Phalcon\Test\Fixtures\Tasks\MainTask', $dispatcher->getActiveTask()); + $I->assertInstanceOf('\Phalcon\Tests\Fixtures\Tasks\MainTask', $dispatcher->getActiveTask()); } } diff --git a/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php b/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php index db79e5fa305..f3b989c893a 100644 --- a/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php +++ b/tests/cli/Cli/Dispatcher/GetBoundModelsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php b/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php index a61d533cb1d..5bde10980be 100644 --- a/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php +++ b/tests/cli/Cli/Dispatcher/GetHandlerClassCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Codeception\Example; diff --git a/tests/cli/Cli/Dispatcher/GetLastTaskCest.php b/tests/cli/Cli/Dispatcher/GetLastTaskCest.php index 6786f15e7d4..9a65a09466f 100644 --- a/tests/cli/Cli/Dispatcher/GetLastTaskCest.php +++ b/tests/cli/Cli/Dispatcher/GetLastTaskCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -32,15 +32,15 @@ public function cliDispatcherGetLastTask(CliTester $I) $dispatcher->setDI( new DiFactoryDefault() ); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName("main"); $dispatcher->dispatch(); - $I->assertInstanceOf('\Phalcon\Test\Fixtures\Tasks\MainTask', $dispatcher->getLastTask()); + $I->assertInstanceOf('\Phalcon\Tests\Fixtures\Tasks\MainTask', $dispatcher->getLastTask()); $dispatcher->setTaskName("echo"); $dispatcher->dispatch(); - $I->assertInstanceOf('\Phalcon\Test\Fixtures\Tasks\EchoTask', $dispatcher->getLastTask()); + $I->assertInstanceOf('\Phalcon\Tests\Fixtures\Tasks\EchoTask', $dispatcher->getLastTask()); } } diff --git a/tests/cli/Cli/Dispatcher/GetOptionCest.php b/tests/cli/Cli/Dispatcher/GetOptionCest.php index 02796f85db8..8a4084b7d9b 100644 --- a/tests/cli/Cli/Dispatcher/GetOptionCest.php +++ b/tests/cli/Cli/Dispatcher/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetParamCest.php b/tests/cli/Cli/Dispatcher/GetParamCest.php index 13f4cc5b32a..021075869eb 100644 --- a/tests/cli/Cli/Dispatcher/GetParamCest.php +++ b/tests/cli/Cli/Dispatcher/GetParamCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetParamCest { @@ -39,7 +39,7 @@ public function testCliParameters(CliTester $I) ); // Test $this->dispatcher->getParam() - $dispatcher->setNamespaceName('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setNamespaceName('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName('params'); $dispatcher->setActionName('param'); diff --git a/tests/cli/Cli/Dispatcher/GetParamsCest.php b/tests/cli/Cli/Dispatcher/GetParamsCest.php index 1261642c41f..27d7837cfbd 100644 --- a/tests/cli/Cli/Dispatcher/GetParamsCest.php +++ b/tests/cli/Cli/Dispatcher/GetParamsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetParamsCest { @@ -37,7 +37,7 @@ public function testCliParameters(CliTester $I) ); // Test $this->dispatcher->getParams() - $dispatcher->setNamespaceName('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setNamespaceName('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setTaskName('params'); $dispatcher->setActionName('params'); diff --git a/tests/cli/Cli/Dispatcher/GetSetActionNameCest.php b/tests/cli/Cli/Dispatcher/GetSetActionNameCest.php index 763dba0de72..5bafcd21e6c 100644 --- a/tests/cli/Cli/Dispatcher/GetSetActionNameCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetActionSuffixCest.php b/tests/cli/Cli/Dispatcher/GetSetActionSuffixCest.php index fe878fc32c9..c0c25f13bab 100644 --- a/tests/cli/Cli/Dispatcher/GetSetActionSuffixCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetActionSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetDICest.php b/tests/cli/Cli/Dispatcher/GetSetDICest.php index 3f1f26ecc94..2856bb44d37 100644 --- a/tests/cli/Cli/Dispatcher/GetSetDICest.php +++ b/tests/cli/Cli/Dispatcher/GetSetDICest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/cli/Cli/Dispatcher/GetSetDefaultNamespaceCest.php b/tests/cli/Cli/Dispatcher/GetSetDefaultNamespaceCest.php index 37f2a2ebbad..343446df093 100644 --- a/tests/cli/Cli/Dispatcher/GetSetDefaultNamespaceCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetDefaultNamespaceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetEventsManagerCest.php b/tests/cli/Cli/Dispatcher/GetSetEventsManagerCest.php index c56cb22afae..420c629568b 100644 --- a/tests/cli/Cli/Dispatcher/GetSetEventsManagerCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetEventsManagerCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetEventsManagerCest { diff --git a/tests/cli/Cli/Dispatcher/GetSetHandlerSuffixCest.php b/tests/cli/Cli/Dispatcher/GetSetHandlerSuffixCest.php index 7e66cffbd20..e359c85bd4a 100644 --- a/tests/cli/Cli/Dispatcher/GetSetHandlerSuffixCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetHandlerSuffixCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; use Phalcon\Cli\Dispatcher\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetHandlerSuffixCest { diff --git a/tests/cli/Cli/Dispatcher/GetSetModelBinderCest.php b/tests/cli/Cli/Dispatcher/GetSetModelBinderCest.php index 6cc9ce93c8f..2e5a2d541c6 100644 --- a/tests/cli/Cli/Dispatcher/GetSetModelBinderCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetModelBinderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetModuleNameCest.php b/tests/cli/Cli/Dispatcher/GetSetModuleNameCest.php index 9c7e6d104c2..8455e147d35 100644 --- a/tests/cli/Cli/Dispatcher/GetSetModuleNameCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetNamespaceNameCest.php b/tests/cli/Cli/Dispatcher/GetSetNamespaceNameCest.php index 66ea49413dc..a6e2ccc749f 100644 --- a/tests/cli/Cli/Dispatcher/GetSetNamespaceNameCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetOptionsCest.php b/tests/cli/Cli/Dispatcher/GetSetOptionsCest.php index 33eedcdd55c..76438133c35 100644 --- a/tests/cli/Cli/Dispatcher/GetSetOptionsCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetReturnedValueCest.php b/tests/cli/Cli/Dispatcher/GetSetReturnedValueCest.php index 14b7001dd82..5a3bc167e18 100644 --- a/tests/cli/Cli/Dispatcher/GetSetReturnedValueCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetReturnedValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetTaskNameCest.php b/tests/cli/Cli/Dispatcher/GetSetTaskNameCest.php index 56925a3c2d9..9f0b8af8401 100644 --- a/tests/cli/Cli/Dispatcher/GetSetTaskNameCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetTaskNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/GetSetTaskSuffixCest.php b/tests/cli/Cli/Dispatcher/GetSetTaskSuffixCest.php index ffa811c3cb5..659a79201a5 100644 --- a/tests/cli/Cli/Dispatcher/GetSetTaskSuffixCest.php +++ b/tests/cli/Cli/Dispatcher/GetSetTaskSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/HasOptionCest.php b/tests/cli/Cli/Dispatcher/HasOptionCest.php index 12a00dfd584..f01ae8c4ffb 100644 --- a/tests/cli/Cli/Dispatcher/HasOptionCest.php +++ b/tests/cli/Cli/Dispatcher/HasOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/HasParamCest.php b/tests/cli/Cli/Dispatcher/HasParamCest.php index d3a8db849e0..b1c50e4a1d6 100644 --- a/tests/cli/Cli/Dispatcher/HasParamCest.php +++ b/tests/cli/Cli/Dispatcher/HasParamCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/IsFinishedCest.php b/tests/cli/Cli/Dispatcher/IsFinishedCest.php index 720c6a3e3f5..21b84027ac5 100644 --- a/tests/cli/Cli/Dispatcher/IsFinishedCest.php +++ b/tests/cli/Cli/Dispatcher/IsFinishedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -33,7 +33,7 @@ public function cliDispatcherIsFinished(CliTester $I) $I->wantToTest('Cli\Dispatcher - isFinished()'); $dispatcher = new Dispatcher(); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setDI( new DiFactoryDefault() ); diff --git a/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php b/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php index dc70cedf844..2ab9893dcd9 100644 --- a/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php +++ b/tests/cli/Cli/Dispatcher/SetDefaultActionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -30,7 +30,7 @@ public function cliDispatcherSetDefaultAction(CliTester $I) $I->wantToTest('Cli\Dispatcher - setDefaultAction()'); $dispatcher = new Dispatcher(); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setDI( new DiFactoryDefault() ); diff --git a/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php b/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php index 0b36d73f3d6..6660de72622 100644 --- a/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php +++ b/tests/cli/Cli/Dispatcher/SetDefaultTaskCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -30,7 +30,7 @@ public function cliDispatcherSetDefaultTask(CliTester $I) $I->wantToTest('Cli\Dispatcher - setDefaultTask()'); $dispatcher = new Dispatcher(); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setDI( new DiFactoryDefault() ); diff --git a/tests/cli/Cli/Dispatcher/SetParamCest.php b/tests/cli/Cli/Dispatcher/SetParamCest.php index 9f1816e4cbe..c428448fd34 100644 --- a/tests/cli/Cli/Dispatcher/SetParamCest.php +++ b/tests/cli/Cli/Dispatcher/SetParamCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/SetParamsCest.php b/tests/cli/Cli/Dispatcher/SetParamsCest.php index 6545cfebb5a..0503efae945 100644 --- a/tests/cli/Cli/Dispatcher/SetParamsCest.php +++ b/tests/cli/Cli/Dispatcher/SetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; diff --git a/tests/cli/Cli/Dispatcher/WasForwardedCest.php b/tests/cli/Cli/Dispatcher/WasForwardedCest.php index 57da61cf315..ef4b399d92c 100644 --- a/tests/cli/Cli/Dispatcher/WasForwardedCest.php +++ b/tests/cli/Cli/Dispatcher/WasForwardedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Dispatcher; +namespace Phalcon\Tests\Cli\Cli\Dispatcher; use CliTester; use Phalcon\Cli\Dispatcher; @@ -30,7 +30,7 @@ public function cliDispatcherWasForwarded(CliTester $I) $I->wantToTest('Cli\Dispatcher - wasForwarded()'); $dispatcher = new Dispatcher(); - $dispatcher->setDefaultNamespace('Phalcon\Test\Fixtures\Tasks'); + $dispatcher->setDefaultNamespace('Phalcon\Tests\Fixtures\Tasks'); $dispatcher->setDI( new DiFactoryDefault() ); diff --git a/tests/cli/Cli/Router/AddCest.php b/tests/cli/Cli/Router/AddCest.php index 745c14f02e1..eb60385f0fa 100644 --- a/tests/cli/Cli/Router/AddCest.php +++ b/tests/cli/Cli/Router/AddCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/ConstructCest.php b/tests/cli/Cli/Router/ConstructCest.php index 9bb8b979f82..fcbdf7d334c 100644 --- a/tests/cli/Cli/Router/ConstructCest.php +++ b/tests/cli/Cli/Router/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetActionNameCest.php b/tests/cli/Cli/Router/GetActionNameCest.php index bce4f7370ab..7c3beda576e 100644 --- a/tests/cli/Cli/Router/GetActionNameCest.php +++ b/tests/cli/Cli/Router/GetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetMatchedRouteCest.php b/tests/cli/Cli/Router/GetMatchedRouteCest.php index 507bb96c9a6..b25e720d68d 100644 --- a/tests/cli/Cli/Router/GetMatchedRouteCest.php +++ b/tests/cli/Cli/Router/GetMatchedRouteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetMatchesCest.php b/tests/cli/Cli/Router/GetMatchesCest.php index 14c2974a545..ab67e16090a 100644 --- a/tests/cli/Cli/Router/GetMatchesCest.php +++ b/tests/cli/Cli/Router/GetMatchesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetModuleNameCest.php b/tests/cli/Cli/Router/GetModuleNameCest.php index cc3d77f7f23..547d820c641 100644 --- a/tests/cli/Cli/Router/GetModuleNameCest.php +++ b/tests/cli/Cli/Router/GetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetParamsCest.php b/tests/cli/Cli/Router/GetParamsCest.php index 70f5442718e..a8a73a21df4 100644 --- a/tests/cli/Cli/Router/GetParamsCest.php +++ b/tests/cli/Cli/Router/GetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetRouteByIdCest.php b/tests/cli/Cli/Router/GetRouteByIdCest.php index 67b196bf6ac..685d5cc2a6c 100644 --- a/tests/cli/Cli/Router/GetRouteByIdCest.php +++ b/tests/cli/Cli/Router/GetRouteByIdCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetRouteByIdCest { diff --git a/tests/cli/Cli/Router/GetRouteByNameCest.php b/tests/cli/Cli/Router/GetRouteByNameCest.php index 52982945589..6121acc231d 100644 --- a/tests/cli/Cli/Router/GetRouteByNameCest.php +++ b/tests/cli/Cli/Router/GetRouteByNameCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetRouteByNameCest { diff --git a/tests/cli/Cli/Router/GetRoutesCest.php b/tests/cli/Cli/Router/GetRoutesCest.php index b5c0a513cb3..2b82105fe04 100644 --- a/tests/cli/Cli/Router/GetRoutesCest.php +++ b/tests/cli/Cli/Router/GetRoutesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetRoutesCest { diff --git a/tests/cli/Cli/Router/GetSetDICest.php b/tests/cli/Cli/Router/GetSetDICest.php index bd6a4607b6e..f40fef88f58 100644 --- a/tests/cli/Cli/Router/GetSetDICest.php +++ b/tests/cli/Cli/Router/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/GetTaskNameCest.php b/tests/cli/Cli/Router/GetTaskNameCest.php index 7877f0e3aa9..6fc2311d4ed 100644 --- a/tests/cli/Cli/Router/GetTaskNameCest.php +++ b/tests/cli/Cli/Router/GetTaskNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/HandleCest.php b/tests/cli/Cli/Router/HandleCest.php index 1594a29b23d..ae2a375f8db 100644 --- a/tests/cli/Cli/Router/HandleCest.php +++ b/tests/cli/Cli/Router/HandleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Codeception\Example; diff --git a/tests/cli/Cli/Router/Route/BeforeMatchCest.php b/tests/cli/Cli/Router/Route/BeforeMatchCest.php index da6e5bccc20..135f029219a 100644 --- a/tests/cli/Cli/Router/Route/BeforeMatchCest.php +++ b/tests/cli/Cli/Router/Route/BeforeMatchCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class BeforeMatchCest { diff --git a/tests/cli/Cli/Router/Route/CompilePatternCest.php b/tests/cli/Cli/Router/Route/CompilePatternCest.php index 10f2f378272..6a83cf50020 100644 --- a/tests/cli/Cli/Router/Route/CompilePatternCest.php +++ b/tests/cli/Cli/Router/Route/CompilePatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Codeception\Example; diff --git a/tests/cli/Cli/Router/Route/ConstructCest.php b/tests/cli/Cli/Router/Route/ConstructCest.php index f63364fd2c3..848fa972116 100644 --- a/tests/cli/Cli/Router/Route/ConstructCest.php +++ b/tests/cli/Cli/Router/Route/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/ConvertCest.php b/tests/cli/Cli/Router/Route/ConvertCest.php index 7c0076a9bf4..f33363aafbc 100644 --- a/tests/cli/Cli/Router/Route/ConvertCest.php +++ b/tests/cli/Cli/Router/Route/ConvertCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Codeception\Example; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ConvertCest { diff --git a/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php b/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php index ce7b251cbb7..b04acd5a67f 100644 --- a/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php +++ b/tests/cli/Cli/Router/Route/ExtractNamedParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php b/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php index ab4e8c7ebe0..dbf02e38dea 100644 --- a/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php +++ b/tests/cli/Cli/Router/Route/GetCompiledPatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/GetDelimiterCest.php b/tests/cli/Cli/Router/Route/GetDelimiterCest.php index 5e0cbef3c8d..b8315490557 100644 --- a/tests/cli/Cli/Router/Route/GetDelimiterCest.php +++ b/tests/cli/Cli/Router/Route/GetDelimiterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/GetPathsCest.php b/tests/cli/Cli/Router/Route/GetPathsCest.php index 82a3c0db7bb..10f8886d50d 100644 --- a/tests/cli/Cli/Router/Route/GetPathsCest.php +++ b/tests/cli/Cli/Router/Route/GetPathsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Codeception\Example; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetPathsCest { diff --git a/tests/cli/Cli/Router/Route/GetPatternCest.php b/tests/cli/Cli/Router/Route/GetPatternCest.php index 7149ab3620d..e670478f6c6 100644 --- a/tests/cli/Cli/Router/Route/GetPatternCest.php +++ b/tests/cli/Cli/Router/Route/GetPatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/GetReversedPathsCest.php b/tests/cli/Cli/Router/Route/GetReversedPathsCest.php index 642e49c1638..9ed065c5a3d 100644 --- a/tests/cli/Cli/Router/Route/GetReversedPathsCest.php +++ b/tests/cli/Cli/Router/Route/GetReversedPathsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Codeception\Example; use Phalcon\Cli\Router; use Phalcon\Cli\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetReversedPathsCest { diff --git a/tests/cli/Cli/Router/Route/GetRouteIdCest.php b/tests/cli/Cli/Router/Route/GetRouteIdCest.php index 2b3db16a55a..acde05199dd 100644 --- a/tests/cli/Cli/Router/Route/GetRouteIdCest.php +++ b/tests/cli/Cli/Router/Route/GetRouteIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/GetSetDescriptionCest.php b/tests/cli/Cli/Router/Route/GetSetDescriptionCest.php index 2463163e5d4..10a685e9a40 100644 --- a/tests/cli/Cli/Router/Route/GetSetDescriptionCest.php +++ b/tests/cli/Cli/Router/Route/GetSetDescriptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/Route/GetSetNameCest.php b/tests/cli/Cli/Router/Route/GetSetNameCest.php index 1f1a26a79ea..8d43ba661f6 100644 --- a/tests/cli/Cli/Router/Route/GetSetNameCest.php +++ b/tests/cli/Cli/Router/Route/GetSetNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/Route/ResetCest.php b/tests/cli/Cli/Router/Route/ResetCest.php index c2140eb8769..d9fab3d5abf 100644 --- a/tests/cli/Cli/Router/Route/ResetCest.php +++ b/tests/cli/Cli/Router/Route/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router\Route; +namespace Phalcon\Tests\Cli\Cli\Router\Route; use CliTester; use Phalcon\Cli\Router\Route; diff --git a/tests/cli/Cli/Router/SetDefaultActionCest.php b/tests/cli/Cli/Router/SetDefaultActionCest.php index 7dc33abdb11..31969c98286 100644 --- a/tests/cli/Cli/Router/SetDefaultActionCest.php +++ b/tests/cli/Cli/Router/SetDefaultActionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/SetDefaultModuleCest.php b/tests/cli/Cli/Router/SetDefaultModuleCest.php index 36778a323d7..f1c0d745618 100644 --- a/tests/cli/Cli/Router/SetDefaultModuleCest.php +++ b/tests/cli/Cli/Router/SetDefaultModuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/SetDefaultTaskCest.php b/tests/cli/Cli/Router/SetDefaultTaskCest.php index 3b36c68db2c..18810f2ebcc 100644 --- a/tests/cli/Cli/Router/SetDefaultTaskCest.php +++ b/tests/cli/Cli/Router/SetDefaultTaskCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/SetDefaultsCest.php b/tests/cli/Cli/Router/SetDefaultsCest.php index f9a354bf5c8..dbab3fb9b35 100644 --- a/tests/cli/Cli/Router/SetDefaultsCest.php +++ b/tests/cli/Cli/Router/SetDefaultsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Router/WasMatchedCest.php b/tests/cli/Cli/Router/WasMatchedCest.php index 6beaa76d5d8..7aacd9a32dd 100644 --- a/tests/cli/Cli/Router/WasMatchedCest.php +++ b/tests/cli/Cli/Router/WasMatchedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Router; +namespace Phalcon\Tests\Cli\Cli\Router; use CliTester; use Phalcon\Cli\Router; diff --git a/tests/cli/Cli/Task/ConstructCest.php b/tests/cli/Cli/Task/ConstructCest.php index 3dcca3c8cb1..39a0ae09e67 100644 --- a/tests/cli/Cli/Task/ConstructCest.php +++ b/tests/cli/Cli/Task/ConstructCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Task; +namespace Phalcon\Tests\Cli\Cli\Task; use CliTester; use Phalcon\Cli\Task; use Phalcon\Di\FactoryDefault\Cli as DiFactoryDefault; use Phalcon\Registry; -use Phalcon\Test\Fixtures\Tasks\EchoTask; -use Phalcon\Test\Fixtures\Tasks\MainTask; -use Phalcon\Test\Fixtures\Tasks\OnConstructTask; +use Phalcon\Tests\Fixtures\Tasks\EchoTask; +use Phalcon\Tests\Fixtures\Tasks\MainTask; +use Phalcon\Tests\Fixtures\Tasks\OnConstructTask; class ConstructCest { diff --git a/tests/cli/Cli/Task/GetEventsManagerCest.php b/tests/cli/Cli/Task/GetEventsManagerCest.php index ec8fc7ab74c..effcc15de51 100644 --- a/tests/cli/Cli/Task/GetEventsManagerCest.php +++ b/tests/cli/Cli/Task/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Task; +namespace Phalcon\Tests\Cli\Cli\Task; use CliTester; use Phalcon\Cli\Task; diff --git a/tests/cli/Cli/Task/GetSetDICest.php b/tests/cli/Cli/Task/GetSetDICest.php index 1642ee25370..53f3b26c5ed 100644 --- a/tests/cli/Cli/Task/GetSetDICest.php +++ b/tests/cli/Cli/Task/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Task; +namespace Phalcon\Tests\Cli\Cli\Task; use CliTester; use Phalcon\Cli\Task; diff --git a/tests/cli/Cli/Task/SetEventsManagerCest.php b/tests/cli/Cli/Task/SetEventsManagerCest.php index 17a48b5d9f3..960b55ea810 100644 --- a/tests/cli/Cli/Task/SetEventsManagerCest.php +++ b/tests/cli/Cli/Task/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Task; +namespace Phalcon\Tests\Cli\Cli\Task; use CliTester; use Phalcon\Cli\Task; diff --git a/tests/cli/Cli/Task/UnderscoreGetCest.php b/tests/cli/Cli/Task/UnderscoreGetCest.php index c85a7219322..9e5106e9a3f 100644 --- a/tests/cli/Cli/Task/UnderscoreGetCest.php +++ b/tests/cli/Cli/Task/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Cli\Task; +namespace Phalcon\Tests\Cli\Cli\Task; use CliTester; use Phalcon\Cli\Task; diff --git a/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php b/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php index e100d74e9e7..8b55dbbb564 100644 --- a/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/AttemptCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php b/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php index 49b68078d52..6046f9cc195 100644 --- a/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Codeception\Example; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetCest.php b/tests/cli/Di/FactoryDefault/Cli/GetCest.php index 3ee779f64b2..2e7bfd9bf87 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\Exception; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php b/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php index 1c4ff4c8a86..cac24e0da5a 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php b/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php index 7544da2a72c..9a0998f899d 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetInternalEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php b/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php index ad523c46999..05f18b3122b 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetRawCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\Exception; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php b/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php index 4c9d0d0b2bb..310acf2d35a 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\Exception; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php b/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php index c35778b7d79..a1a06e7f367 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetServicesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php b/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php index 148613dd39b..4da86d21486 100644 --- a/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/GetSharedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Crypt; diff --git a/tests/cli/Di/FactoryDefault/Cli/HasCest.php b/tests/cli/Di/FactoryDefault/Cli/HasCest.php index 60455a47054..f332d57dcf4 100644 --- a/tests/cli/Di/FactoryDefault/Cli/HasCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php b/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php index 38b345d9e79..d66cb0e249e 100644 --- a/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/LoadFromPhpCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Config; diff --git a/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php b/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php index e89b32f7c89..b489c9979d3 100644 --- a/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/LoadFromYamlCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Config; diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php index b9bb20190b1..0bf631aefe9 100644 --- a/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php index 1cf7dc12c29..a7f921f75b8 100644 --- a/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\Exception; diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php index 6dfaa8e9190..e091cea6c57 100644 --- a/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Crypt; diff --git a/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php b/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php index 9f2f70f7be3..7af13af0fb9 100644 --- a/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php b/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php index 6f441fa6aac..353f16804ef 100644 --- a/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/RegisterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php b/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php index 0958126c78d..b82b5ef04c1 100644 --- a/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/RemoveCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/ResetCest.php b/tests/cli/Di/FactoryDefault/Cli/ResetCest.php index 2e1c16a087a..8d58ed1523d 100644 --- a/tests/cli/Di/FactoryDefault/Cli/ResetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/SetCest.php b/tests/cli/Di/FactoryDefault/Cli/SetCest.php index ae0af0a1c3e..acf6b4302f6 100644 --- a/tests/cli/Di/FactoryDefault/Cli/SetCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/SetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Crypt; diff --git a/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php b/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php index 4e1b08de19a..a1f10e62279 100644 --- a/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php b/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php index 4830a2e1d06..861d391587a 100644 --- a/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/SetInternalEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/SetServiceCest.php b/tests/cli/Di/FactoryDefault/Cli/SetServiceCest.php index 6823ccec3d1..43cce86492b 100644 --- a/tests/cli/Di/FactoryDefault/Cli/SetServiceCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/SetServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli; diff --git a/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php b/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php index d55acae1da6..77e67066b4c 100644 --- a/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/SetSharedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\FactoryDefault\Cli as Di; diff --git a/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php b/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php index f090ff58779..792ced7c344 100644 --- a/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php +++ b/tests/cli/Di/FactoryDefault/Cli/UnderscoreCallCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Cli\Di\FactoryDefault\Cli; +namespace Phalcon\Tests\Cli\Di\FactoryDefault\Cli; use CliTester; use Phalcon\Di\Exception; diff --git a/tests/database/DataMapper/Pdo/Connection/CommitInTransactionRollBackCest.php b/tests/database/DataMapper/Pdo/Connection/CommitInTransactionRollBackCest.php index bd8a16c6f72..5fb38e54c00 100644 --- a/tests/database/DataMapper/Pdo/Connection/CommitInTransactionRollBackCest.php +++ b/tests/database/DataMapper/Pdo/Connection/CommitInTransactionRollBackCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; use function date; use function uniqid; diff --git a/tests/database/DataMapper/Pdo/Connection/ConnectDisconnectIsConnectedCest.php b/tests/database/DataMapper/Pdo/Connection/ConnectDisconnectIsConnectedCest.php index e5d75cb95e4..c7855c358be 100644 --- a/tests/database/DataMapper/Pdo/Connection/ConnectDisconnectIsConnectedCest.php +++ b/tests/database/DataMapper/Pdo/Connection/ConnectDisconnectIsConnectedCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/ConstructCest.php b/tests/database/DataMapper/Pdo/Connection/ConstructCest.php index 35dd8e8393b..b05c60fc89c 100644 --- a/tests/database/DataMapper/Pdo/Connection/ConstructCest.php +++ b/tests/database/DataMapper/Pdo/Connection/ConstructCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use InvalidArgumentException; diff --git a/tests/database/DataMapper/Pdo/Connection/DebugInfoCest.php b/tests/database/DataMapper/Pdo/Connection/DebugInfoCest.php index 9368f12e113..0db39750ab7 100644 --- a/tests/database/DataMapper/Pdo/Connection/DebugInfoCest.php +++ b/tests/database/DataMapper/Pdo/Connection/DebugInfoCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Pdo/Connection/Decorated/ConstructCest.php b/tests/database/DataMapper/Pdo/Connection/Decorated/ConstructCest.php index 9597443e678..d3c84217b8a 100644 --- a/tests/database/DataMapper/Pdo/Connection/Decorated/ConstructCest.php +++ b/tests/database/DataMapper/Pdo/Connection/Decorated/ConstructCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection\Decorated; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection\Decorated; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Pdo/Connection/Decorated/DisconnectCest.php b/tests/database/DataMapper/Pdo/Connection/Decorated/DisconnectCest.php index 344bd685b3e..4b70a78501e 100644 --- a/tests/database/DataMapper/Pdo/Connection/Decorated/DisconnectCest.php +++ b/tests/database/DataMapper/Pdo/Connection/Decorated/DisconnectCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection\Decorated; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection\Decorated; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Pdo/Connection/ErrorCodeCest.php b/tests/database/DataMapper/Pdo/Connection/ErrorCodeCest.php index 6745222835b..78a1b927a97 100644 --- a/tests/database/DataMapper/Pdo/Connection/ErrorCodeCest.php +++ b/tests/database/DataMapper/Pdo/Connection/ErrorCodeCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/ErrorInfoCest.php b/tests/database/DataMapper/Pdo/Connection/ErrorInfoCest.php index 16518d9973e..cbdae5339b4 100644 --- a/tests/database/DataMapper/Pdo/Connection/ErrorInfoCest.php +++ b/tests/database/DataMapper/Pdo/Connection/ErrorInfoCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/ExecCest.php b/tests/database/DataMapper/Pdo/Connection/ExecCest.php index 92f57c75e18..ee99b8005d2 100644 --- a/tests/database/DataMapper/Pdo/Connection/ExecCest.php +++ b/tests/database/DataMapper/Pdo/Connection/ExecCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class ExecCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchAffectedCest.php b/tests/database/DataMapper/Pdo/Connection/FetchAffectedCest.php index 694db76d17a..8cbe79e18f6 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchAffectedCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchAffectedCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchAffectedCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchAllCest.php b/tests/database/DataMapper/Pdo/Connection/FetchAllCest.php index 7a89c5c57bf..384cfcd047e 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchAllCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchAllCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchAllCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchAssocCest.php b/tests/database/DataMapper/Pdo/Connection/FetchAssocCest.php index 5b7eda72fd9..fd4ce1006a2 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchAssocCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchAssocCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchAssocCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchColumnCest.php b/tests/database/DataMapper/Pdo/Connection/FetchColumnCest.php index db704f15f79..afdf98e6757 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchColumnCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchColumnCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchColumnCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchGroupCest.php b/tests/database/DataMapper/Pdo/Connection/FetchGroupCest.php index 18a561fa7a2..6f6ce49f45d 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchGroupCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchGroupCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchGroupCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchObjectCest.php b/tests/database/DataMapper/Pdo/Connection/FetchObjectCest.php index 1cde45a37f6..c8bcc8d20a4 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchObjectCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchObjectCest.php @@ -9,12 +9,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Resultset; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Resultset; use stdClass; class FetchObjectCest diff --git a/tests/database/DataMapper/Pdo/Connection/FetchObjectsCest.php b/tests/database/DataMapper/Pdo/Connection/FetchObjectsCest.php index 685b489f041..fa126a93401 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchObjectsCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchObjectsCest.php @@ -9,12 +9,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Resultset; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Resultset; use stdClass; class FetchObjectsCest diff --git a/tests/database/DataMapper/Pdo/Connection/FetchOneCest.php b/tests/database/DataMapper/Pdo/Connection/FetchOneCest.php index 44e4f7b51e5..4fe079731cd 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchOneCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchOneCest.php @@ -9,13 +9,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use Codeception\Example; use DatabaseTester; use PDO; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchOneCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchPairsCest.php b/tests/database/DataMapper/Pdo/Connection/FetchPairsCest.php index 075fab4a6a3..1c68ebe5df4 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchPairsCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchPairsCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchPairsCest { diff --git a/tests/database/DataMapper/Pdo/Connection/FetchValueCest.php b/tests/database/DataMapper/Pdo/Connection/FetchValueCest.php index bd202fde51f..4bb7d843e81 100644 --- a/tests/database/DataMapper/Pdo/Connection/FetchValueCest.php +++ b/tests/database/DataMapper/Pdo/Connection/FetchValueCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class FetchValueCest { diff --git a/tests/database/DataMapper/Pdo/Connection/GetAdapterCest.php b/tests/database/DataMapper/Pdo/Connection/GetAdapterCest.php index b06a618e3af..2e1d0387451 100644 --- a/tests/database/DataMapper/Pdo/Connection/GetAdapterCest.php +++ b/tests/database/DataMapper/Pdo/Connection/GetAdapterCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/GetAvailableDriversCest.php b/tests/database/DataMapper/Pdo/Connection/GetAvailableDriversCest.php index c47ef9d0101..147fe2ae299 100644 --- a/tests/database/DataMapper/Pdo/Connection/GetAvailableDriversCest.php +++ b/tests/database/DataMapper/Pdo/Connection/GetAvailableDriversCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Pdo/Connection/GetQuoteNamesCest.php b/tests/database/DataMapper/Pdo/Connection/GetQuoteNamesCest.php index 5e266e039e2..4c4deccca79 100644 --- a/tests/database/DataMapper/Pdo/Connection/GetQuoteNamesCest.php +++ b/tests/database/DataMapper/Pdo/Connection/GetQuoteNamesCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/GetSetAttributeCest.php b/tests/database/DataMapper/Pdo/Connection/GetSetAttributeCest.php index 3b328a08d97..42b1f45ed57 100644 --- a/tests/database/DataMapper/Pdo/Connection/GetSetAttributeCest.php +++ b/tests/database/DataMapper/Pdo/Connection/GetSetAttributeCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Pdo/Connection/GetSetProfilerCest.php b/tests/database/DataMapper/Pdo/Connection/GetSetProfilerCest.php index 89252c7c728..78ac65c3758 100644 --- a/tests/database/DataMapper/Pdo/Connection/GetSetProfilerCest.php +++ b/tests/database/DataMapper/Pdo/Connection/GetSetProfilerCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/LastInsertIdCest.php b/tests/database/DataMapper/Pdo/Connection/LastInsertIdCest.php index 0b4d5d43721..d6042543007 100644 --- a/tests/database/DataMapper/Pdo/Connection/LastInsertIdCest.php +++ b/tests/database/DataMapper/Pdo/Connection/LastInsertIdCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; use function date; use function str_replace; diff --git a/tests/database/DataMapper/Pdo/Connection/QueryCest.php b/tests/database/DataMapper/Pdo/Connection/QueryCest.php index cc266bb404d..9145a0d93a4 100644 --- a/tests/database/DataMapper/Pdo/Connection/QueryCest.php +++ b/tests/database/DataMapper/Pdo/Connection/QueryCest.php @@ -9,11 +9,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class QueryCest { diff --git a/tests/database/DataMapper/Pdo/Connection/QuoteCest.php b/tests/database/DataMapper/Pdo/Connection/QuoteCest.php index 3876573c937..80fd1c6dd5b 100644 --- a/tests/database/DataMapper/Pdo/Connection/QuoteCest.php +++ b/tests/database/DataMapper/Pdo/Connection/QuoteCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; diff --git a/tests/database/DataMapper/Pdo/Connection/UnderscoreCallCest.php b/tests/database/DataMapper/Pdo/Connection/UnderscoreCallCest.php index 3894753bce5..6de59862d1a 100644 --- a/tests/database/DataMapper/Pdo/Connection/UnderscoreCallCest.php +++ b/tests/database/DataMapper/Pdo/Connection/UnderscoreCallCest.php @@ -9,12 +9,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Connection; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Connection; use BadMethodCallException; use DatabaseTester; use Phalcon\DataMapper\Pdo\Connection; -use Phalcon\Test\Fixtures\DataMapper\Pdo\ConnectionFixture; +use Phalcon\Tests\Fixtures\DataMapper\Pdo\ConnectionFixture; class UnderscoreCallCest { diff --git a/tests/database/DataMapper/Pdo/ConnectionLocator/ConstructCest.php b/tests/database/DataMapper/Pdo/ConnectionLocator/ConstructCest.php index 95339367937..f506af70b84 100644 --- a/tests/database/DataMapper/Pdo/ConnectionLocator/ConstructCest.php +++ b/tests/database/DataMapper/Pdo/ConnectionLocator/ConstructCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\ConnectionLocator; +namespace Phalcon\Tests\Database\DataMapper\Pdo\ConnectionLocator; use DatabaseTester; use Phalcon\DataMapper\Pdo\ConnectionLocator; diff --git a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetMasterCest.php b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetMasterCest.php index 8247a7ad13b..b4fea794fa0 100644 --- a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetMasterCest.php +++ b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetMasterCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\ConnectionLocator; +namespace Phalcon\Tests\Database\DataMapper\Pdo\ConnectionLocator; use DatabaseTester; use Phalcon\DataMapper\Pdo\ConnectionLocator; diff --git a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetReadCest.php b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetReadCest.php index 48a92bcf159..d6dffd7d68c 100644 --- a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetReadCest.php +++ b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetReadCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\ConnectionLocator; +namespace Phalcon\Tests\Database\DataMapper\Pdo\ConnectionLocator; use DatabaseTester; use Phalcon\DataMapper\Pdo\ConnectionLocator; diff --git a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetWriteCest.php b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetWriteCest.php index 1738b76d010..2748531b745 100644 --- a/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetWriteCest.php +++ b/tests/database/DataMapper/Pdo/ConnectionLocator/GetSetWriteCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\ConnectionLocator; +namespace Phalcon\Tests\Database\DataMapper\Pdo\ConnectionLocator; use DatabaseTester; use Phalcon\DataMapper\Pdo\ConnectionLocator; diff --git a/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LevelsCest.php b/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LevelsCest.php index 766321b7178..5688f2e3deb 100644 --- a/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LevelsCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LevelsCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\MemoryLogger; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\MemoryLogger; use Codeception\Example; use DatabaseTester; diff --git a/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LogCest.php b/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LogCest.php index 78ecedd8d30..f59b71ef276 100644 --- a/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LogCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/MemoryLogger/LogCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\MemoryLogger; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\MemoryLogger; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\MemoryLogger; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/ConstructCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/ConstructCest.php index f3cd0bc4c91..b562492af63 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/ConstructCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/ConstructCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\Profiler; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetLoggerCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetLoggerCest.php index e848c32819c..86c220a4fe3 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetLoggerCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetLoggerCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\MemoryLogger; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogFormatCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogFormatCest.php index a5861a5b69c..57b0116b84b 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogFormatCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogFormatCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\Profiler; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogLevelCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogLevelCest.php index e5348d900b5..121377c8e04 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogLevelCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/GetSetLogLevelCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\Profiler; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/IsSetActiveCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/IsSetActiveCest.php index f1126b412b2..4cd9213bf75 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/IsSetActiveCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/IsSetActiveCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\Profiler; diff --git a/tests/database/DataMapper/Pdo/Profiler/Profiler/StartFinishCest.php b/tests/database/DataMapper/Pdo/Profiler/Profiler/StartFinishCest.php index c3052d22118..70da28a20df 100644 --- a/tests/database/DataMapper/Pdo/Profiler/Profiler/StartFinishCest.php +++ b/tests/database/DataMapper/Pdo/Profiler/Profiler/StartFinishCest.php @@ -9,7 +9,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Pdo\Profiler\Profiler; +namespace Phalcon\Tests\Database\DataMapper\Pdo\Profiler\Profiler; use DatabaseTester; use Phalcon\DataMapper\Pdo\Profiler\Profiler; diff --git a/tests/database/DataMapper/Query/Bind/BindInlineCest.php b/tests/database/DataMapper/Query/Bind/BindInlineCest.php index e4a42df71bf..1dc3de616cd 100644 --- a/tests/database/DataMapper/Query/Bind/BindInlineCest.php +++ b/tests/database/DataMapper/Query/Bind/BindInlineCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Bind; +namespace Phalcon\Tests\Database\DataMapper\Query\Bind; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Bind/RemoveCest.php b/tests/database/DataMapper/Query/Bind/RemoveCest.php index 89dedea1418..471e062acdd 100644 --- a/tests/database/DataMapper/Query/Bind/RemoveCest.php +++ b/tests/database/DataMapper/Query/Bind/RemoveCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Bind; +namespace Phalcon\Tests\Database\DataMapper\Query\Bind; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Bind/SetValuesCest.php b/tests/database/DataMapper/Query/Bind/SetValuesCest.php index 57cbccb0d5a..f6639265986 100644 --- a/tests/database/DataMapper/Query/Bind/SetValuesCest.php +++ b/tests/database/DataMapper/Query/Bind/SetValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Bind; +namespace Phalcon\Tests\Database\DataMapper\Query\Bind; use DatabaseTester; use Phalcon\DataMapper\Query\Bind; diff --git a/tests/database/DataMapper/Query/Delete/GetBindValuesCest.php b/tests/database/DataMapper/Query/Delete/GetBindValuesCest.php index 8acb8521b85..4dd470b1803 100644 --- a/tests/database/DataMapper/Query/Delete/GetBindValuesCest.php +++ b/tests/database/DataMapper/Query/Delete/GetBindValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Delete; +namespace Phalcon\Tests\Database\DataMapper\Query\Delete; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Delete/GetStatementCest.php b/tests/database/DataMapper/Query/Delete/GetStatementCest.php index 43ab7cf494b..d6470b6057d 100644 --- a/tests/database/DataMapper/Query/Delete/GetStatementCest.php +++ b/tests/database/DataMapper/Query/Delete/GetStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Delete; +namespace Phalcon\Tests\Database\DataMapper\Query\Delete; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Insert/GetBindValuesCest.php b/tests/database/DataMapper/Query/Insert/GetBindValuesCest.php index 70ee348bcaa..14d967845fe 100644 --- a/tests/database/DataMapper/Query/Insert/GetBindValuesCest.php +++ b/tests/database/DataMapper/Query/Insert/GetBindValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Insert; +namespace Phalcon\Tests\Database\DataMapper\Query\Insert; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Insert/GetLastInsertIdCest.php b/tests/database/DataMapper/Query/Insert/GetLastInsertIdCest.php index eca2113c9ef..207b8365d2d 100644 --- a/tests/database/DataMapper/Query/Insert/GetLastInsertIdCest.php +++ b/tests/database/DataMapper/Query/Insert/GetLastInsertIdCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Insert; +namespace Phalcon\Tests\Database\DataMapper\Query\Insert; use Codeception\Stub; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; -use Phalcon\Test\Fixtures\Migrations\Invoices; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; use function uniqid; diff --git a/tests/database/DataMapper/Query/Insert/GetStatementCest.php b/tests/database/DataMapper/Query/Insert/GetStatementCest.php index cb7c6e776e0..06fe34bb8f8 100644 --- a/tests/database/DataMapper/Query/Insert/GetStatementCest.php +++ b/tests/database/DataMapper/Query/Insert/GetStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Insert; +namespace Phalcon\Tests\Database\DataMapper\Query\Insert; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/QueryFactory/ConstructCest.php b/tests/database/DataMapper/Query/QueryFactory/ConstructCest.php index 9dbaf062fdd..438bafeb82c 100644 --- a/tests/database/DataMapper/Query/QueryFactory/ConstructCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/QueryFactory/NewBindCest.php b/tests/database/DataMapper/Query/QueryFactory/NewBindCest.php index 0cf9dd68dff..89c2c0efda5 100644 --- a/tests/database/DataMapper/Query/QueryFactory/NewBindCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/NewBindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\Bind; diff --git a/tests/database/DataMapper/Query/QueryFactory/NewDeleteCest.php b/tests/database/DataMapper/Query/QueryFactory/NewDeleteCest.php index af430402843..dab94a76422 100644 --- a/tests/database/DataMapper/Query/QueryFactory/NewDeleteCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/NewDeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\Delete; diff --git a/tests/database/DataMapper/Query/QueryFactory/NewInsertCest.php b/tests/database/DataMapper/Query/QueryFactory/NewInsertCest.php index fc2b0e32735..ea4b93f984e 100644 --- a/tests/database/DataMapper/Query/QueryFactory/NewInsertCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/NewInsertCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\Insert; diff --git a/tests/database/DataMapper/Query/QueryFactory/NewSelectCest.php b/tests/database/DataMapper/Query/QueryFactory/NewSelectCest.php index 31a03bb20e3..6f37f4adc20 100644 --- a/tests/database/DataMapper/Query/QueryFactory/NewSelectCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/NewSelectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/QueryFactory/NewUpdateCest.php b/tests/database/DataMapper/Query/QueryFactory/NewUpdateCest.php index f26ad72b00f..7ae2de47f13 100644 --- a/tests/database/DataMapper/Query/QueryFactory/NewUpdateCest.php +++ b/tests/database/DataMapper/Query/QueryFactory/NewUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\QueryFactory; +namespace Phalcon\Tests\Database\DataMapper\Query\QueryFactory; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/AsAliasCest.php b/tests/database/DataMapper/Query/Select/AsAliasCest.php index d3c680bddab..a0503e00318 100644 --- a/tests/database/DataMapper/Query/Select/AsAliasCest.php +++ b/tests/database/DataMapper/Query/Select/AsAliasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/ColumnsCest.php b/tests/database/DataMapper/Query/Select/ColumnsCest.php index d01225b672d..925d710595a 100644 --- a/tests/database/DataMapper/Query/Select/ColumnsCest.php +++ b/tests/database/DataMapper/Query/Select/ColumnsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/ConstructCest.php b/tests/database/DataMapper/Query/Select/ConstructCest.php index a6cfff06dac..1d696a96b09 100644 --- a/tests/database/DataMapper/Query/Select/ConstructCest.php +++ b/tests/database/DataMapper/Query/Select/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\Bind; diff --git a/tests/database/DataMapper/Query/Select/DistinctCest.php b/tests/database/DataMapper/Query/Select/DistinctCest.php index 90120fd2f76..a3e79952e70 100644 --- a/tests/database/DataMapper/Query/Select/DistinctCest.php +++ b/tests/database/DataMapper/Query/Select/DistinctCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/ForUpdateCest.php b/tests/database/DataMapper/Query/Select/ForUpdateCest.php index 8766c64fa89..5d60b423de8 100644 --- a/tests/database/DataMapper/Query/Select/ForUpdateCest.php +++ b/tests/database/DataMapper/Query/Select/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/FromCest.php b/tests/database/DataMapper/Query/Select/FromCest.php index 0afe37416f0..b3acd9691c3 100644 --- a/tests/database/DataMapper/Query/Select/FromCest.php +++ b/tests/database/DataMapper/Query/Select/FromCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/GetBindValuesCest.php b/tests/database/DataMapper/Query/Select/GetBindValuesCest.php index 4888162a703..fbde848e14e 100644 --- a/tests/database/DataMapper/Query/Select/GetBindValuesCest.php +++ b/tests/database/DataMapper/Query/Select/GetBindValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Select/GroupByCest.php b/tests/database/DataMapper/Query/Select/GroupByCest.php index 1534840cb5f..0f1e9f33c2e 100644 --- a/tests/database/DataMapper/Query/Select/GroupByCest.php +++ b/tests/database/DataMapper/Query/Select/GroupByCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/HavingCest.php b/tests/database/DataMapper/Query/Select/HavingCest.php index b201da2fac3..e223fe59bef 100644 --- a/tests/database/DataMapper/Query/Select/HavingCest.php +++ b/tests/database/DataMapper/Query/Select/HavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Select/JoinCest.php b/tests/database/DataMapper/Query/Select/JoinCest.php index 96fd465665c..c5711551ddc 100644 --- a/tests/database/DataMapper/Query/Select/JoinCest.php +++ b/tests/database/DataMapper/Query/Select/JoinCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Select/LimitOffsetCest.php b/tests/database/DataMapper/Query/Select/LimitOffsetCest.php index 4afea9306d9..23e35cc24d3 100644 --- a/tests/database/DataMapper/Query/Select/LimitOffsetCest.php +++ b/tests/database/DataMapper/Query/Select/LimitOffsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use Codeception\Stub; use DatabaseTester; diff --git a/tests/database/DataMapper/Query/Select/OrderByCest.php b/tests/database/DataMapper/Query/Select/OrderByCest.php index e81a1ef606c..f8b0432a237 100644 --- a/tests/database/DataMapper/Query/Select/OrderByCest.php +++ b/tests/database/DataMapper/Query/Select/OrderByCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/QuoteIdentifierCest.php b/tests/database/DataMapper/Query/Select/QuoteIdentifierCest.php index 777b6bccf29..fd9bb25174f 100644 --- a/tests/database/DataMapper/Query/Select/QuoteIdentifierCest.php +++ b/tests/database/DataMapper/Query/Select/QuoteIdentifierCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/SetFlagCest.php b/tests/database/DataMapper/Query/Select/SetFlagCest.php index 76a95b86987..a5dffda6023 100644 --- a/tests/database/DataMapper/Query/Select/SetFlagCest.php +++ b/tests/database/DataMapper/Query/Select/SetFlagCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/SubSelectCest.php b/tests/database/DataMapper/Query/Select/SubSelectCest.php index e86b263f600..93d165c6d21 100644 --- a/tests/database/DataMapper/Query/Select/SubSelectCest.php +++ b/tests/database/DataMapper/Query/Select/SubSelectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/UnderscoreCallCest.php b/tests/database/DataMapper/Query/Select/UnderscoreCallCest.php index b7754e5606e..13fc0b5554a 100644 --- a/tests/database/DataMapper/Query/Select/UnderscoreCallCest.php +++ b/tests/database/DataMapper/Query/Select/UnderscoreCallCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use BadMethodCallException; use DatabaseTester; use PDOStatement; use Phalcon\DataMapper\Query\QueryFactory; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; class UnderscoreCallCest { diff --git a/tests/database/DataMapper/Query/Select/UnionAllCest.php b/tests/database/DataMapper/Query/Select/UnionAllCest.php index e21dddac32e..b1cd3fc534b 100644 --- a/tests/database/DataMapper/Query/Select/UnionAllCest.php +++ b/tests/database/DataMapper/Query/Select/UnionAllCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/UnionCest.php b/tests/database/DataMapper/Query/Select/UnionCest.php index a004f460111..73d45fc3437 100644 --- a/tests/database/DataMapper/Query/Select/UnionCest.php +++ b/tests/database/DataMapper/Query/Select/UnionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/WhereCest.php b/tests/database/DataMapper/Query/Select/WhereCest.php index 3341301ece3..76469f01755 100644 --- a/tests/database/DataMapper/Query/Select/WhereCest.php +++ b/tests/database/DataMapper/Query/Select/WhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Select/WhereEqualsCest.php b/tests/database/DataMapper/Query/Select/WhereEqualsCest.php index 283cb51c29a..f607250f1c8 100644 --- a/tests/database/DataMapper/Query/Select/WhereEqualsCest.php +++ b/tests/database/DataMapper/Query/Select/WhereEqualsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Select; +namespace Phalcon\Tests\Database\DataMapper\Query\Select; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/DataMapper/Query/Update/GetBindValuesCest.php b/tests/database/DataMapper/Query/Update/GetBindValuesCest.php index c40d1ad6f10..2dcd1424c91 100644 --- a/tests/database/DataMapper/Query/Update/GetBindValuesCest.php +++ b/tests/database/DataMapper/Query/Update/GetBindValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Update; +namespace Phalcon\Tests\Database\DataMapper\Query\Update; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Update/GetStatementCest.php b/tests/database/DataMapper/Query/Update/GetStatementCest.php index 95ddf68a202..52d33dad9ed 100644 --- a/tests/database/DataMapper/Query/Update/GetStatementCest.php +++ b/tests/database/DataMapper/Query/Update/GetStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Update; +namespace Phalcon\Tests\Database\DataMapper\Query\Update; use DatabaseTester; use PDO; diff --git a/tests/database/DataMapper/Query/Update/HasColumnsCest.php b/tests/database/DataMapper/Query/Update/HasColumnsCest.php index 9d1c57a7b6c..385a0f471a5 100644 --- a/tests/database/DataMapper/Query/Update/HasColumnsCest.php +++ b/tests/database/DataMapper/Query/Update/HasColumnsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\DataMapper\Query\Update; +namespace Phalcon\Tests\Database\DataMapper\Query\Update; use DatabaseTester; use Phalcon\DataMapper\Query\QueryFactory; diff --git a/tests/database/Db/Adapter/Pdo/ConnectCest.php b/tests/database/Db/Adapter/Pdo/ConnectCest.php index 0bde518c512..d8aa5ee9507 100644 --- a/tests/database/Db/Adapter/Pdo/ConnectCest.php +++ b/tests/database/Db/Adapter/Pdo/ConnectCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Adapter\Pdo; +namespace Phalcon\Tests\Database\Db\Adapter\Pdo; use DatabaseTester; use Phalcon\Db\Adapter\PdoFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function getOptionsMysql; diff --git a/tests/database/Db/Adapter/Pdo/DeleteCest.php b/tests/database/Db/Adapter/Pdo/DeleteCest.php index 9ccced7974d..9653e2f21f9 100644 --- a/tests/database/Db/Adapter/Pdo/DeleteCest.php +++ b/tests/database/Db/Adapter/Pdo/DeleteCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Adapter\Pdo; +namespace Phalcon\Tests\Database\Db\Adapter\Pdo; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; final class DeleteCest { diff --git a/tests/database/Db/Adapter/Pdo/DescribeColumnsCest.php b/tests/database/Db/Adapter/Pdo/DescribeColumnsCest.php index 9697991645c..0eefeca5a2d 100644 --- a/tests/database/Db/Adapter/Pdo/DescribeColumnsCest.php +++ b/tests/database/Db/Adapter/Pdo/DescribeColumnsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Adapter\Pdo; +namespace Phalcon\Tests\Database\Db\Adapter\Pdo; use DatabaseTester; use Phalcon\Db\Column; -use Phalcon\Test\Fixtures\Migrations\ComplexDefaultMigration; -use Phalcon\Test\Fixtures\Migrations\DialectMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Migrations\ComplexDefaultMigration; +use Phalcon\Tests\Fixtures\Migrations\DialectMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeColumnsCest { diff --git a/tests/database/Db/Adapter/Pdo/ExecInsertCest.php b/tests/database/Db/Adapter/Pdo/ExecInsertCest.php index aede90e90e8..992ee2dd2ec 100644 --- a/tests/database/Db/Adapter/Pdo/ExecInsertCest.php +++ b/tests/database/Db/Adapter/Pdo/ExecInsertCest.php @@ -11,17 +11,17 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Adapter\Pdo; +namespace Phalcon\Tests\Database\Db\Adapter\Pdo; use DatabaseTester; use Phalcon\Db\Adapter\Pdo\AbstractPdo; use Phalcon\Db\Adapter\Pdo\Mysql; use Phalcon\Db\Column; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\AbstractMigration; -use Phalcon\Test\Fixtures\Migrations\ComplexDefaultMigration; -use Phalcon\Test\Fixtures\Migrations\DialectMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Migrations\AbstractMigration; +use Phalcon\Tests\Fixtures\Migrations\ComplexDefaultMigration; +use Phalcon\Tests\Fixtures\Migrations\DialectMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use PHPUnit\Framework\Assert; use function array_keys; diff --git a/tests/database/Db/Adapter/Pdo/QueryCest.php b/tests/database/Db/Adapter/Pdo/QueryCest.php index cebf6be0e0c..14586ec6856 100644 --- a/tests/database/Db/Adapter/Pdo/QueryCest.php +++ b/tests/database/Db/Adapter/Pdo/QueryCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Adapter\Pdo; +namespace Phalcon\Tests\Database\Db\Adapter\Pdo; use DatabaseTester; use Phalcon\Db\Enum; use Phalcon\Db\Result\Pdo; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function is_array; use function is_object; diff --git a/tests/database/Db/Column/ConstantsCest.php b/tests/database/Db/Column/ConstantsCest.php index 52e0b80e507..2129cfb1bfe 100644 --- a/tests/database/Db/Column/ConstantsCest.php +++ b/tests/database/Db/Column/ConstantsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; use Phalcon\Db\Column; diff --git a/tests/database/Db/Column/ConstructCest.php b/tests/database/Db/Column/ConstructCest.php index 92e232a434f..f0285d1246d 100644 --- a/tests/database/Db/Column/ConstructCest.php +++ b/tests/database/Db/Column/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; use Phalcon\Db\Column; diff --git a/tests/database/Db/Column/GetAfterPositionCest.php b/tests/database/Db/Column/GetAfterPositionCest.php index 61e9b7fa4c1..2ac5e92492c 100644 --- a/tests/database/Db/Column/GetAfterPositionCest.php +++ b/tests/database/Db/Column/GetAfterPositionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetAfterPositionCest { diff --git a/tests/database/Db/Column/GetBindTypeCest.php b/tests/database/Db/Column/GetBindTypeCest.php index c9caaaffcc8..f0238edbe48 100644 --- a/tests/database/Db/Column/GetBindTypeCest.php +++ b/tests/database/Db/Column/GetBindTypeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetBindTypeCest { diff --git a/tests/database/Db/Column/GetCommentCest.php b/tests/database/Db/Column/GetCommentCest.php index 5be2d7bbf38..998f93eb36b 100644 --- a/tests/database/Db/Column/GetCommentCest.php +++ b/tests/database/Db/Column/GetCommentCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetCommentCest { diff --git a/tests/database/Db/Column/GetDefaultCest.php b/tests/database/Db/Column/GetDefaultCest.php index 8f52aa74e55..1916664d78c 100644 --- a/tests/database/Db/Column/GetDefaultCest.php +++ b/tests/database/Db/Column/GetDefaultCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetDefaultCest { diff --git a/tests/database/Db/Column/GetNameCest.php b/tests/database/Db/Column/GetNameCest.php index 14fe843e5de..cc98d8791a5 100644 --- a/tests/database/Db/Column/GetNameCest.php +++ b/tests/database/Db/Column/GetNameCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetNameCest { diff --git a/tests/database/Db/Column/GetScaleCest.php b/tests/database/Db/Column/GetScaleCest.php index 68210c51cfc..aabf8915404 100644 --- a/tests/database/Db/Column/GetScaleCest.php +++ b/tests/database/Db/Column/GetScaleCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\FractalDatesMigration; -use Phalcon\Test\Fixtures\Traits\DbTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\FractalDates; +use Phalcon\Tests\Fixtures\Migrations\FractalDatesMigration; +use Phalcon\Tests\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\FractalDates; class GetScaleCest { diff --git a/tests/database/Db/Column/GetSizeCest.php b/tests/database/Db/Column/GetSizeCest.php index fc430c40e9d..aa093576e23 100644 --- a/tests/database/Db/Column/GetSizeCest.php +++ b/tests/database/Db/Column/GetSizeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetSizeCest { diff --git a/tests/database/Db/Column/GetTypeCest.php b/tests/database/Db/Column/GetTypeCest.php index 05b3c9c328a..f6f4e48af0e 100644 --- a/tests/database/Db/Column/GetTypeCest.php +++ b/tests/database/Db/Column/GetTypeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetTypeCest { diff --git a/tests/database/Db/Column/GetTypeReferenceCest.php b/tests/database/Db/Column/GetTypeReferenceCest.php index bd3feaf6868..bc8da4bab86 100644 --- a/tests/database/Db/Column/GetTypeReferenceCest.php +++ b/tests/database/Db/Column/GetTypeReferenceCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetTypeReferenceCest { diff --git a/tests/database/Db/Column/GetTypeValuesCest.php b/tests/database/Db/Column/GetTypeValuesCest.php index 2828c188199..2d2a75f3a51 100644 --- a/tests/database/Db/Column/GetTypeValuesCest.php +++ b/tests/database/Db/Column/GetTypeValuesCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class GetTypeValuesCest { diff --git a/tests/database/Db/Column/IsFirstCest.php b/tests/database/Db/Column/IsFirstCest.php index df1d1ef9f3d..44539380a13 100644 --- a/tests/database/Db/Column/IsFirstCest.php +++ b/tests/database/Db/Column/IsFirstCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class IsFirstCest { diff --git a/tests/database/Db/Column/IsNotNullCest.php b/tests/database/Db/Column/IsNotNullCest.php index ed0b8a7759a..51830a2730d 100644 --- a/tests/database/Db/Column/IsNotNullCest.php +++ b/tests/database/Db/Column/IsNotNullCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class IsNotNullCest { diff --git a/tests/database/Db/Column/IsNumericCest.php b/tests/database/Db/Column/IsNumericCest.php index 47be509b449..64acc5d05f3 100644 --- a/tests/database/Db/Column/IsNumericCest.php +++ b/tests/database/Db/Column/IsNumericCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class IsNumericCest { diff --git a/tests/database/Db/Column/IsPrimaryCest.php b/tests/database/Db/Column/IsPrimaryCest.php index ee0083d25ab..189323fc2ce 100644 --- a/tests/database/Db/Column/IsPrimaryCest.php +++ b/tests/database/Db/Column/IsPrimaryCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class IsPrimaryCest { diff --git a/tests/database/Db/Column/IsUnsignedCest.php b/tests/database/Db/Column/IsUnsignedCest.php index 07a438ce2f2..46cf02f87cc 100644 --- a/tests/database/Db/Column/IsUnsignedCest.php +++ b/tests/database/Db/Column/IsUnsignedCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Column; +namespace Phalcon\Tests\Database\Db\Column; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DbTrait; +use Phalcon\Tests\Fixtures\Traits\DbTrait; class IsUnsignedCest { diff --git a/tests/database/Db/Profiler/Item/GetSetFinalTimeCest.php b/tests/database/Db/Profiler/Item/GetSetFinalTimeCest.php index 015abe81557..8e5582d1604 100644 --- a/tests/database/Db/Profiler/Item/GetSetFinalTimeCest.php +++ b/tests/database/Db/Profiler/Item/GetSetFinalTimeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/Profiler/Item/GetSetInitialTimeCest.php b/tests/database/Db/Profiler/Item/GetSetInitialTimeCest.php index d0d86f394d2..3019f498dcc 100644 --- a/tests/database/Db/Profiler/Item/GetSetInitialTimeCest.php +++ b/tests/database/Db/Profiler/Item/GetSetInitialTimeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/Profiler/Item/GetSetSqlBindTypesCest.php b/tests/database/Db/Profiler/Item/GetSetSqlBindTypesCest.php index 63308259b17..4daa3d14707 100644 --- a/tests/database/Db/Profiler/Item/GetSetSqlBindTypesCest.php +++ b/tests/database/Db/Profiler/Item/GetSetSqlBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/Profiler/Item/GetSetSqlStatementCest.php b/tests/database/Db/Profiler/Item/GetSetSqlStatementCest.php index ad538b21c30..73ccde69f97 100644 --- a/tests/database/Db/Profiler/Item/GetSetSqlStatementCest.php +++ b/tests/database/Db/Profiler/Item/GetSetSqlStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/Profiler/Item/GetSetSqlVariablesCest.php b/tests/database/Db/Profiler/Item/GetSetSqlVariablesCest.php index a7cbe009d3b..d610a12da0c 100644 --- a/tests/database/Db/Profiler/Item/GetSetSqlVariablesCest.php +++ b/tests/database/Db/Profiler/Item/GetSetSqlVariablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/Profiler/Item/GetTotalElapsedSecondsCest.php b/tests/database/Db/Profiler/Item/GetTotalElapsedSecondsCest.php index 3df329cc948..69b222cf59f 100644 --- a/tests/database/Db/Profiler/Item/GetTotalElapsedSecondsCest.php +++ b/tests/database/Db/Profiler/Item/GetTotalElapsedSecondsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\Profiler\Item; +namespace Phalcon\Tests\Database\Db\Profiler\Item; use DatabaseTester; use Phalcon\Db\Profiler\Item; diff --git a/tests/database/Db/RawValue/ConstructCest.php b/tests/database/Db/RawValue/ConstructCest.php index d23d8614107..16631586ae3 100644 --- a/tests/database/Db/RawValue/ConstructCest.php +++ b/tests/database/Db/RawValue/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\RawValue; +namespace Phalcon\Tests\Database\Db\RawValue; use Codeception\Example; use DatabaseTester; diff --git a/tests/database/Db/RawValue/GetValueCest.php b/tests/database/Db/RawValue/GetValueCest.php index d64dc2c2933..3bd6f1f33d3 100644 --- a/tests/database/Db/RawValue/GetValueCest.php +++ b/tests/database/Db/RawValue/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\RawValue; +namespace Phalcon\Tests\Database\Db\RawValue; use DatabaseTester; use Phalcon\Db\RawValue; diff --git a/tests/database/Db/RawValue/ToStringCest.php b/tests/database/Db/RawValue/ToStringCest.php index a39e6a9297e..6efdbcb23b8 100644 --- a/tests/database/Db/RawValue/ToStringCest.php +++ b/tests/database/Db/RawValue/ToStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Db\RawValue; +namespace Phalcon\Tests\Database\Db\RawValue; use DatabaseTester; use Phalcon\Db\RawValue; diff --git a/tests/database/Mvc/Model/AssignCest.php b/tests/database/Mvc/Model/AssignCest.php index 901adaa3476..29115b3b259 100644 --- a/tests/database/Mvc/Model/AssignCest.php +++ b/tests/database/Mvc/Model/AssignCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/AverageCest.php b/tests/database/Mvc/Model/AverageCest.php index 78d828ecb65..d38e77e6c22 100644 --- a/tests/database/Mvc/Model/AverageCest.php +++ b/tests/database/Mvc/Model/AverageCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class AverageCest { diff --git a/tests/database/Mvc/Model/Behavior/SoftDeleteCest.php b/tests/database/Mvc/Model/Behavior/SoftDeleteCest.php index b4411c5e82c..30c95c2397e 100644 --- a/tests/database/Mvc/Model/Behavior/SoftDeleteCest.php +++ b/tests/database/Mvc/Model/Behavior/SoftDeleteCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Behavior; +namespace Phalcon\Tests\Database\Mvc\Model\Behavior; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesBehavior; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesBehavior; use Phalcon\Events\Event; use Phalcon\Events\Manager as EventManager; diff --git a/tests/database/Mvc/Model/Behavior/TimestampableCest.php b/tests/database/Mvc/Model/Behavior/TimestampableCest.php index ded64ca3ca1..b7be504e770 100644 --- a/tests/database/Mvc/Model/Behavior/TimestampableCest.php +++ b/tests/database/Mvc/Model/Behavior/TimestampableCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Behavior; +namespace Phalcon\Tests\Database\Mvc\Model\Behavior; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesBehavior; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesBehavior; use Phalcon\Events\Event; use Phalcon\Events\Manager as EventManager; use DateTime; diff --git a/tests/database/Mvc/Model/CloneResultMapCest.php b/tests/database/Mvc/Model/CloneResultMapCest.php index 943e7d13c92..eab2182ba6f 100644 --- a/tests/database/Mvc/Model/CloneResultMapCest.php +++ b/tests/database/Mvc/Model/CloneResultMapCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use Codeception\Example; use DatabaseTester; use PDO; use Phalcon\Mvc\Model; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\InvoicesMap; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\InvoicesMap; /** * Class CloneResultMapCest diff --git a/tests/database/Mvc/Model/ConstructCest.php b/tests/database/Mvc/Model/ConstructCest.php index 7bac7285f68..6aa098b1112 100644 --- a/tests/database/Mvc/Model/ConstructCest.php +++ b/tests/database/Mvc/Model/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model; use Phalcon\Mvc\ModelInterface; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class ConstructCest diff --git a/tests/database/Mvc/Model/CountCest.php b/tests/database/Mvc/Model/CountCest.php index 2744debe99b..d1473bf3ba7 100644 --- a/tests/database/Mvc/Model/CountCest.php +++ b/tests/database/Mvc/Model/CountCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesMap; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesMap; class CountCest { diff --git a/tests/database/Mvc/Model/CreateCest.php b/tests/database/Mvc/Model/CreateCest.php index 58f41bce571..633208f9d0e 100644 --- a/tests/database/Mvc/Model/CreateCest.php +++ b/tests/database/Mvc/Model/CreateCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function date; use function uniqid; diff --git a/tests/database/Mvc/Model/Criteria/AndWhereCest.php b/tests/database/Mvc/Model/Criteria/AndWhereCest.php index 3d1bbec7aaf..0db07961ef6 100644 --- a/tests/database/Mvc/Model/Criteria/AndWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/AndWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class AndWhereCest @@ -56,8 +56,8 @@ public function mvcModelCriteriaAndWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE (inv_cst_id = 1) ' . 'AND (inv_status_flag = :status:)'; $actual = $builder->getPhql(); diff --git a/tests/database/Mvc/Model/Criteria/BetweenWhereCest.php b/tests/database/Mvc/Model/Criteria/BetweenWhereCest.php index baa3d2566df..63b1c5829fc 100644 --- a/tests/database/Mvc/Model/Criteria/BetweenWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/BetweenWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class BetweenWhereCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaBetweenWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id BETWEEN :ACP0: AND :ACP1:'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/BindCest.php b/tests/database/Mvc/Model/Criteria/BindCest.php index 9e056ca2885..8a86e57d976 100644 --- a/tests/database/Mvc/Model/Criteria/BindCest.php +++ b/tests/database/Mvc/Model/Criteria/BindCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class BindCest diff --git a/tests/database/Mvc/Model/Criteria/BindTypesCest.php b/tests/database/Mvc/Model/Criteria/BindTypesCest.php index 51f19c5b60a..3a7ad4dfb99 100644 --- a/tests/database/Mvc/Model/Criteria/BindTypesCest.php +++ b/tests/database/Mvc/Model/Criteria/BindTypesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class BindTypesCest diff --git a/tests/database/Mvc/Model/Criteria/CacheCest.php b/tests/database/Mvc/Model/Criteria/CacheCest.php index 8e08fecfc09..0d080a23eaf 100644 --- a/tests/database/Mvc/Model/Criteria/CacheCest.php +++ b/tests/database/Mvc/Model/Criteria/CacheCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class CacheCest diff --git a/tests/database/Mvc/Model/Criteria/ColumnsCest.php b/tests/database/Mvc/Model/Criteria/ColumnsCest.php index 482362e765a..efa4e2f9521 100644 --- a/tests/database/Mvc/Model/Criteria/ColumnsCest.php +++ b/tests/database/Mvc/Model/Criteria/ColumnsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class ColumnsCest @@ -56,7 +56,7 @@ public function mvcModelCriteriaColumns(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); $expected = 'SELECT inv_id, inv_total ' - . 'FROM [Phalcon\Test\Models\Invoices]'; + . 'FROM [Phalcon\Tests\Models\Invoices]'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } @@ -91,7 +91,7 @@ public function mvcModelCriteriaColumnsArray(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); $expected = 'SELECT inv_id AS [id], inv_total AS [total] ' - . 'FROM [Phalcon\Test\Models\Invoices]'; + . 'FROM [Phalcon\Tests\Models\Invoices]'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } diff --git a/tests/database/Mvc/Model/Criteria/DistinctCest.php b/tests/database/Mvc/Model/Criteria/DistinctCest.php index ab50ebffae7..520a0488870 100644 --- a/tests/database/Mvc/Model/Criteria/DistinctCest.php +++ b/tests/database/Mvc/Model/Criteria/DistinctCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; diff --git a/tests/database/Mvc/Model/Criteria/ExecuteCest.php b/tests/database/Mvc/Model/Criteria/ExecuteCest.php index e431a1a77cb..30600358363 100644 --- a/tests/database/Mvc/Model/Criteria/ExecuteCest.php +++ b/tests/database/Mvc/Model/Criteria/ExecuteCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/Criteria/ForUpdateCest.php b/tests/database/Mvc/Model/Criteria/ForUpdateCest.php index 00d54747f18..79a33bf0d30 100644 --- a/tests/database/Mvc/Model/Criteria/ForUpdateCest.php +++ b/tests/database/Mvc/Model/Criteria/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; diff --git a/tests/database/Mvc/Model/Criteria/FromInputCest.php b/tests/database/Mvc/Model/Criteria/FromInputCest.php index 59179a5f70b..8776fa72c00 100644 --- a/tests/database/Mvc/Model/Criteria/FromInputCest.php +++ b/tests/database/Mvc/Model/Criteria/FromInputCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; class FromInputCest { @@ -71,8 +71,8 @@ public function mvcModelCriteriaFromInputMysql(DatabaseTester $I) $builder = $criteria->createBuilder(); if ($I->getDriver() === 'sqlite') { - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE [inv_id] = :inv_id: ' . 'AND [inv_cst_id] = :inv_cst_id: ' . 'AND [inv_status_flag] = :inv_status_flag: ' @@ -80,8 +80,8 @@ public function mvcModelCriteriaFromInputMysql(DatabaseTester $I) . 'AND [inv_total] LIKE :inv_total: ' . 'AND [inv_created_at] = :inv_created_at:'; } else { - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE [inv_id] = :inv_id: ' . 'AND [inv_cst_id] = :inv_cst_id: ' . 'AND [inv_status_flag] = :inv_status_flag: ' diff --git a/tests/database/Mvc/Model/Criteria/GetColumnsCest.php b/tests/database/Mvc/Model/Criteria/GetColumnsCest.php index c1313251f3a..b7dac0ddcc9 100644 --- a/tests/database/Mvc/Model/Criteria/GetColumnsCest.php +++ b/tests/database/Mvc/Model/Criteria/GetColumnsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; diff --git a/tests/database/Mvc/Model/Criteria/GetConditionsCest.php b/tests/database/Mvc/Model/Criteria/GetConditionsCest.php index dbfdc793ac4..08e01ba1e34 100644 --- a/tests/database/Mvc/Model/Criteria/GetConditionsCest.php +++ b/tests/database/Mvc/Model/Criteria/GetConditionsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetConditionsCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaGetConditions(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id = 1'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/GetModelNameCest.php b/tests/database/Mvc/Model/Criteria/GetModelNameCest.php index 5a9ab25071a..5fad99616e1 100644 --- a/tests/database/Mvc/Model/Criteria/GetModelNameCest.php +++ b/tests/database/Mvc/Model/Criteria/GetModelNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Models\Invoices; /** * Class GetModelNameCest diff --git a/tests/database/Mvc/Model/Criteria/GetSetDICest.php b/tests/database/Mvc/Model/Criteria/GetSetDICest.php index 435c95ca411..396cf3bc4a6 100644 --- a/tests/database/Mvc/Model/Criteria/GetSetDICest.php +++ b/tests/database/Mvc/Model/Criteria/GetSetDICest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/database/Mvc/Model/Criteria/GroupByCest.php b/tests/database/Mvc/Model/Criteria/GroupByCest.php index 7f6563f12f3..de47805687f 100644 --- a/tests/database/Mvc/Model/Criteria/GroupByCest.php +++ b/tests/database/Mvc/Model/Criteria/GroupByCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GroupByCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaGroupBy(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'GROUP BY [inv_cst_id]'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/HavingCest.php b/tests/database/Mvc/Model/Criteria/HavingCest.php index c0503fe48cd..606cd07af96 100644 --- a/tests/database/Mvc/Model/Criteria/HavingCest.php +++ b/tests/database/Mvc/Model/Criteria/HavingCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class HavingCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaHaving(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'HAVING inv_cst_id = 1'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/InWhereCest.php b/tests/database/Mvc/Model/Criteria/InWhereCest.php index 99e595416cb..5ce5cc8ab5a 100644 --- a/tests/database/Mvc/Model/Criteria/InWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/InWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class InWhereCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaInWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id IN (:ACP0:, :ACP1:)'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/InnerJoinCest.php b/tests/database/Mvc/Model/Criteria/InnerJoinCest.php index a2d095d2b99..9d23a136053 100644 --- a/tests/database/Mvc/Model/Criteria/InnerJoinCest.php +++ b/tests/database/Mvc/Model/Criteria/InnerJoinCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; /** * Class InnerJoinCest @@ -56,9 +56,9 @@ public function mvcModelCriteriaInnerJoin(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' - . 'INNER JOIN [Phalcon\Test\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' + . 'INNER JOIN [Phalcon\Tests\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } diff --git a/tests/database/Mvc/Model/Criteria/JoinCest.php b/tests/database/Mvc/Model/Criteria/JoinCest.php index 560fd72d502..651bcb7f4b8 100644 --- a/tests/database/Mvc/Model/Criteria/JoinCest.php +++ b/tests/database/Mvc/Model/Criteria/JoinCest.php @@ -11,18 +11,18 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\Orders; -use Phalcon\Test\Models\Products; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\Orders; +use Phalcon\Tests\Models\Products; /** * Class JoinCest @@ -65,9 +65,9 @@ public function mvcModelCriteriaJoin(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' - . 'JOIN [Phalcon\Test\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' + . 'JOIN [Phalcon\Tests\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } diff --git a/tests/database/Mvc/Model/Criteria/LeftJoinCest.php b/tests/database/Mvc/Model/Criteria/LeftJoinCest.php index 612de55f423..5ad1afb0d9c 100644 --- a/tests/database/Mvc/Model/Criteria/LeftJoinCest.php +++ b/tests/database/Mvc/Model/Criteria/LeftJoinCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; /** * Class LeftJoinCest @@ -56,9 +56,9 @@ public function mvcModelCriteriaLeftJoin(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' - . 'LEFT JOIN [Phalcon\Test\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' + . 'LEFT JOIN [Phalcon\Tests\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } diff --git a/tests/database/Mvc/Model/Criteria/LimitCest.php b/tests/database/Mvc/Model/Criteria/LimitCest.php index c0b6a327131..581f85a5e84 100644 --- a/tests/database/Mvc/Model/Criteria/LimitCest.php +++ b/tests/database/Mvc/Model/Criteria/LimitCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; class LimitCest { @@ -61,8 +61,8 @@ public function mvcModelCriteriaNoLimit(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices]'; + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices]'; $I->assertEquals($expected, $builder->getPhql()); $I->assertEquals(null, $criteria->getLimit()); @@ -94,8 +94,8 @@ public function mvcModelCriteriaLimit(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'LIMIT :APL0:'; $I->assertEquals($expected, $builder->getPhql()); @@ -128,8 +128,8 @@ public function mvcModelCriteriaLimitOffset(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'LIMIT :APL0: OFFSET :APL1:'; $I->assertEquals($expected, $builder->getPhql()); diff --git a/tests/database/Mvc/Model/Criteria/NotBetweenWhereCest.php b/tests/database/Mvc/Model/Criteria/NotBetweenWhereCest.php index 32630af7fb9..1ca7a1f0675 100644 --- a/tests/database/Mvc/Model/Criteria/NotBetweenWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/NotBetweenWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class NotBetweenWhereCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaNotBetweenWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id NOT BETWEEN :ACP0: AND :ACP1:'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/NotInWhereCest.php b/tests/database/Mvc/Model/Criteria/NotInWhereCest.php index 5d18bb43a07..9042ceff1a6 100644 --- a/tests/database/Mvc/Model/Criteria/NotInWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/NotInWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class NotInWhereCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaNotInWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id NOT IN (:ACP0:, :ACP1:)'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/OrWhereCest.php b/tests/database/Mvc/Model/Criteria/OrWhereCest.php index 870dc5f874e..6af5787421a 100644 --- a/tests/database/Mvc/Model/Criteria/OrWhereCest.php +++ b/tests/database/Mvc/Model/Criteria/OrWhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class OrWhereCest @@ -56,8 +56,8 @@ public function mvcModelCriteriaOrWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE (inv_cst_id = 1) OR (inv_status_flag = :status:)'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/OrderByCest.php b/tests/database/Mvc/Model/Criteria/OrderByCest.php index ae4f1c83855..ce06642ad91 100644 --- a/tests/database/Mvc/Model/Criteria/OrderByCest.php +++ b/tests/database/Mvc/Model/Criteria/OrderByCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class OrderByCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaOrderBy(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'ORDER BY inv_cst_id DESC'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Criteria/RightJoinCest.php b/tests/database/Mvc/Model/Criteria/RightJoinCest.php index 72847ef218e..f6fefe12fef 100644 --- a/tests/database/Mvc/Model/Criteria/RightJoinCest.php +++ b/tests/database/Mvc/Model/Criteria/RightJoinCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; /** * Class RightJoinCest @@ -56,9 +56,9 @@ public function mvcModelCriteriaRightJoin(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' - . 'RIGHT JOIN [Phalcon\Test\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' + . 'RIGHT JOIN [Phalcon\Tests\Models\Customers] AS [customer] ON inv_cst_id = cst_id'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); } diff --git a/tests/database/Mvc/Model/Criteria/SharedLockCest.php b/tests/database/Mvc/Model/Criteria/SharedLockCest.php index 129d3589a86..85055399559 100644 --- a/tests/database/Mvc/Model/Criteria/SharedLockCest.php +++ b/tests/database/Mvc/Model/Criteria/SharedLockCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; diff --git a/tests/database/Mvc/Model/Criteria/WhereCest.php b/tests/database/Mvc/Model/Criteria/WhereCest.php index 1fad2928c69..a3175ea705f 100644 --- a/tests/database/Mvc/Model/Criteria/WhereCest.php +++ b/tests/database/Mvc/Model/Criteria/WhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Criteria; +namespace Phalcon\Tests\Database\Mvc\Model\Criteria; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class WhereCest @@ -55,8 +55,8 @@ public function mvcModelCriteriaWhere(DatabaseTester $I) $I->assertInstanceOf(Builder::class, $builder); - $expected = 'SELECT [Phalcon\Test\Models\Invoices].* ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + $expected = 'SELECT [Phalcon\Tests\Models\Invoices].* ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'WHERE inv_cst_id = 1'; $actual = $builder->getPhql(); $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/DeleteCest.php b/tests/database/Mvc/Model/DeleteCest.php index 64af7ba9afd..a4f7c445641 100644 --- a/tests/database/Mvc/Model/DeleteCest.php +++ b/tests/database/Mvc/Model/DeleteCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; use Phalcon\Mvc\Model\Transaction\Manager; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; use function date; use function uniqid; diff --git a/tests/database/Mvc/Model/FindCest.php b/tests/database/Mvc/Model/FindCest.php index ec67482c096..b5aea285af9 100644 --- a/tests/database/Mvc/Model/FindCest.php +++ b/tests/database/Mvc/Model/FindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; @@ -19,14 +19,14 @@ use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Migrations\AbstractMigration; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Migrations\ObjectsMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\Objects; +use Phalcon\Tests\Fixtures\Migrations\AbstractMigration; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\ObjectsMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\Objects; use function getOptionsRedis; use function outputDir; diff --git a/tests/database/Mvc/Model/FindFirstCest.php b/tests/database/Mvc/Model/FindFirstCest.php index 1f24006d66c..90299143554 100644 --- a/tests/database/Mvc/Model/FindFirstCest.php +++ b/tests/database/Mvc/Model/FindFirstCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use Codeception\Example; use DatabaseTester; @@ -19,13 +19,13 @@ use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Exception; use Phalcon\Mvc\Model\Row; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Migrations\StringPrimaryMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesExtended; -use Phalcon\Test\Models\InvoicesMap; -use Phalcon\Test\Models\ModelWithStringPrimary; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\StringPrimaryMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesExtended; +use Phalcon\Tests\Models\InvoicesMap; +use Phalcon\Tests\Models\ModelWithStringPrimary; use function uniqid; diff --git a/tests/database/Mvc/Model/GetMessagesCest.php b/tests/database/Mvc/Model/GetMessagesCest.php index 1b255a6403b..c210683fdfe 100644 --- a/tests/database/Mvc/Model/GetMessagesCest.php +++ b/tests/database/Mvc/Model/GetMessagesCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\ObjectsMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Objects; +use Phalcon\Tests\Fixtures\Migrations\ObjectsMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Objects; /** * Class GetMessagesCest diff --git a/tests/database/Mvc/Model/GetReadConnectionCest.php b/tests/database/Mvc/Model/GetReadConnectionCest.php index 98a38173d29..9586dc490d6 100644 --- a/tests/database/Mvc/Model/GetReadConnectionCest.php +++ b/tests/database/Mvc/Model/GetReadConnectionCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetReadConnectionCest diff --git a/tests/database/Mvc/Model/GetRelatedCest.php b/tests/database/Mvc/Model/GetRelatedCest.php index e2fc6c25b01..065639029ee 100644 --- a/tests/database/Mvc/Model/GetRelatedCest.php +++ b/tests/database/Mvc/Model/GetRelatedCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/GetSetEventsManagerCest.php b/tests/database/Mvc/Model/GetSetEventsManagerCest.php index 7187a610f91..1a5a9bef7bf 100644 --- a/tests/database/Mvc/Model/GetSetEventsManagerCest.php +++ b/tests/database/Mvc/Model/GetSetEventsManagerCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Events\Manager; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/GetSetReadConnectionServiceCest.php b/tests/database/Mvc/Model/GetSetReadConnectionServiceCest.php index fa03c449fb8..0e5dcb542df 100644 --- a/tests/database/Mvc/Model/GetSetReadConnectionServiceCest.php +++ b/tests/database/Mvc/Model/GetSetReadConnectionServiceCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetSetReadConnectionServiceCest diff --git a/tests/database/Mvc/Model/GetSetWriteConnectionServiceCest.php b/tests/database/Mvc/Model/GetSetWriteConnectionServiceCest.php index 1ab2a3ca51d..ffe1138840e 100644 --- a/tests/database/Mvc/Model/GetSetWriteConnectionServiceCest.php +++ b/tests/database/Mvc/Model/GetSetWriteConnectionServiceCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetSetWriteConnectionServiceCest diff --git a/tests/database/Mvc/Model/GetWriteConnectionCest.php b/tests/database/Mvc/Model/GetWriteConnectionCest.php index d430e3ac712..3e434e55927 100644 --- a/tests/database/Mvc/Model/GetWriteConnectionCest.php +++ b/tests/database/Mvc/Model/GetWriteConnectionCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetWriteConnectionCest diff --git a/tests/database/Mvc/Model/HasChangedCest.php b/tests/database/Mvc/Model/HasChangedCest.php index 7ffc92f9daa..6d938250947 100644 --- a/tests/database/Mvc/Model/HasChangedCest.php +++ b/tests/database/Mvc/Model/HasChangedCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\CustomersDefaults; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\CustomersDefaults; class HasChangedCest { diff --git a/tests/database/Mvc/Model/Manager/ExecuteQueryCest.php b/tests/database/Mvc/Model/Manager/ExecuteQueryCest.php index 7608256590f..c10c072fd5a 100644 --- a/tests/database/Mvc/Model/Manager/ExecuteQueryCest.php +++ b/tests/database/Mvc/Model/Manager/ExecuteQueryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Manager; +namespace Phalcon\Tests\Database\Mvc\Model\Manager; use DatabaseTester; use Phalcon\Mvc\Model\ManagerInterface; @@ -19,8 +19,8 @@ use Phalcon\Mvc\Model\Resultset\Complex; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; class ExecuteQueryCest { diff --git a/tests/database/Mvc/Model/MaximumCest.php b/tests/database/Mvc/Model/MaximumCest.php index 006ba407b60..c5ecca30641 100644 --- a/tests/database/Mvc/Model/MaximumCest.php +++ b/tests/database/Mvc/Model/MaximumCest.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class MaximumCest { diff --git a/tests/database/Mvc/Model/MetaData/GetAttributesCest.php b/tests/database/Mvc/Model/MetaData/GetAttributesCest.php index 00592f8dd54..3cab1d38bef 100644 --- a/tests/database/Mvc/Model/MetaData/GetAttributesCest.php +++ b/tests/database/Mvc/Model/MetaData/GetAttributesCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetAttributesCest diff --git a/tests/database/Mvc/Model/MetaData/GetColumnMapCest.php b/tests/database/Mvc/Model/MetaData/GetColumnMapCest.php index d910333baf9..06edf3bff42 100644 --- a/tests/database/Mvc/Model/MetaData/GetColumnMapCest.php +++ b/tests/database/Mvc/Model/MetaData/GetColumnMapCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesMap; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesMap; /** * Class GetColumnMapCest diff --git a/tests/database/Mvc/Model/MetaData/GetDataTypesCest.php b/tests/database/Mvc/Model/MetaData/GetDataTypesCest.php index afafe36f7d0..d837b7c77cb 100644 --- a/tests/database/Mvc/Model/MetaData/GetDataTypesCest.php +++ b/tests/database/Mvc/Model/MetaData/GetDataTypesCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetDataTypesCest diff --git a/tests/database/Mvc/Model/MetaData/GetIdentityFieldCest.php b/tests/database/Mvc/Model/MetaData/GetIdentityFieldCest.php index 0728e3558a7..b6a2fc00c53 100644 --- a/tests/database/Mvc/Model/MetaData/GetIdentityFieldCest.php +++ b/tests/database/Mvc/Model/MetaData/GetIdentityFieldCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetIdentityFieldCest diff --git a/tests/database/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php b/tests/database/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php index 231ed37fe21..41dc846e050 100644 --- a/tests/database/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php +++ b/tests/database/Mvc/Model/MetaData/GetNonPrimaryKeyAttributesCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetNonPrimaryKeyAttributesCest diff --git a/tests/database/Mvc/Model/MetaData/GetNotNullAttributesCest.php b/tests/database/Mvc/Model/MetaData/GetNotNullAttributesCest.php index b83fd8c3764..f7a682fc5b1 100644 --- a/tests/database/Mvc/Model/MetaData/GetNotNullAttributesCest.php +++ b/tests/database/Mvc/Model/MetaData/GetNotNullAttributesCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class GetNotNullAttributesCest diff --git a/tests/database/Mvc/Model/MetaData/GetSetDICest.php b/tests/database/Mvc/Model/MetaData/GetSetDICest.php index ad51469cd2f..9d5ea4351b6 100644 --- a/tests/database/Mvc/Model/MetaData/GetSetDICest.php +++ b/tests/database/Mvc/Model/MetaData/GetSetDICest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\Exception as ExpectedException; use Phalcon\Mvc\Model\MetaData\Memory; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/database/Mvc/Model/MetaData/HasAttributeCest.php b/tests/database/Mvc/Model/MetaData/HasAttributeCest.php index 7826ee63d18..0b6e0582872 100644 --- a/tests/database/Mvc/Model/MetaData/HasAttributeCest.php +++ b/tests/database/Mvc/Model/MetaData/HasAttributeCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\MetaData; +namespace Phalcon\Tests\Database\Mvc\Model\MetaData; use DatabaseTester; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; /** * Class HasAttributeCest diff --git a/tests/database/Mvc/Model/MinimumCest.php b/tests/database/Mvc/Model/MinimumCest.php index 27aaf1ff048..5abed6349a7 100644 --- a/tests/database/Mvc/Model/MinimumCest.php +++ b/tests/database/Mvc/Model/MinimumCest.php @@ -2,15 +2,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class MinimumCest { diff --git a/tests/database/Mvc/Model/Query/Builder/OrderByCest.php b/tests/database/Mvc/Model/Query/Builder/OrderByCest.php index f233af67f50..361766e5c5a 100644 --- a/tests/database/Mvc/Model/Query/Builder/OrderByCest.php +++ b/tests/database/Mvc/Model/Query/Builder/OrderByCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Database\Mvc\Model\Query\Builder; use DatabaseTester; use Phalcon\Mvc\Model\Query\Builder; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class OrderByCest { @@ -69,7 +69,7 @@ public function mvcModelQueryBuilderOrderBy(DatabaseTester $I) ; $expected = 'SELECT inv_id, inv_title ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'ORDER BY inv_title'; $actual = $phql; $I->assertEquals($expected, $actual); @@ -80,7 +80,7 @@ public function mvcModelQueryBuilderOrderBy(DatabaseTester $I) ; $expected = 'SELECT inv_id, inv_title ' - . 'FROM [Phalcon\Test\Models\Invoices] ' + . 'FROM [Phalcon\Tests\Models\Invoices] ' . 'ORDER BY inv_title DESC'; $actual = $phql; $I->assertEquals($expected, $actual); diff --git a/tests/database/Mvc/Model/Query/CacheCest.php b/tests/database/Mvc/Model/Query/CacheCest.php index 522da86c4c0..02fc6740e4f 100644 --- a/tests/database/Mvc/Model/Query/CacheCest.php +++ b/tests/database/Mvc/Model/Query/CacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Query; +namespace Phalcon\Tests\Database\Mvc\Model\Query; use Codeception\Example; use DatabaseTester; @@ -19,10 +19,10 @@ use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Migrations\AbstractMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\AbstractMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function cacheDir; diff --git a/tests/database/Mvc/Model/Query/GetSqlCest.php b/tests/database/Mvc/Model/Query/GetSqlCest.php index 86f20a404fb..88f1f80ff16 100644 --- a/tests/database/Mvc/Model/Query/GetSqlCest.php +++ b/tests/database/Mvc/Model/Query/GetSqlCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Query; +namespace Phalcon\Tests\Database\Mvc\Model\Query; use DatabaseTester; use Phalcon\Mvc\Model\Query; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class GetSqlCest { diff --git a/tests/database/Mvc/Model/QueryCest.php b/tests/database/Mvc/Model/QueryCest.php index d270acf434c..4e07f2d377f 100644 --- a/tests/database/Mvc/Model/QueryCest.php +++ b/tests/database/Mvc/Model/QueryCest.php @@ -11,20 +11,20 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Complex; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Mvc\Model\Row; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Customers; -use Phalcon\Test\Models\CustomersKeepSnapshots; -use Phalcon\Test\Models\InvoicesKeepSnapshots; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Customers; +use Phalcon\Tests\Models\CustomersKeepSnapshots; +use Phalcon\Tests\Models\InvoicesKeepSnapshots; use function uniqid; diff --git a/tests/database/Mvc/Model/ReadWriteAttributeCest.php b/tests/database/Mvc/Model/ReadWriteAttributeCest.php index 2d92c94ab0e..fefed836937 100644 --- a/tests/database/Mvc/Model/ReadWriteAttributeCest.php +++ b/tests/database/Mvc/Model/ReadWriteAttributeCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/RefreshCest.php b/tests/database/Mvc/Model/RefreshCest.php index 6467b7220a9..e00e810aa65 100644 --- a/tests/database/Mvc/Model/RefreshCest.php +++ b/tests/database/Mvc/Model/RefreshCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Mvc/Model/Resultset/Complex/UnserializeCest.php b/tests/database/Mvc/Model/Resultset/Complex/UnserializeCest.php index 0a8301089eb..7128cdf4539 100644 --- a/tests/database/Mvc/Model/Resultset/Complex/UnserializeCest.php +++ b/tests/database/Mvc/Model/Resultset/Complex/UnserializeCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Database\Mvc\Model\Resultset\Complex; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Complex; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; class UnserializeCest { diff --git a/tests/database/Mvc/Model/Resultset/GetFirstCest.php b/tests/database/Mvc/Model/Resultset/GetFirstCest.php index 5c820732033..742cadca608 100644 --- a/tests/database/Mvc/Model/Resultset/GetFirstCest.php +++ b/tests/database/Mvc/Model/Resultset/GetFirstCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Resultset; +namespace Phalcon\Tests\Database\Mvc\Model\Resultset; use DatabaseTester; use Phalcon\Mvc\Model\ManagerInterface; use Phalcon\Mvc\Model\Row; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class GetFirstCest { diff --git a/tests/database/Mvc/Model/Resultset/Simple/UnserializeCest.php b/tests/database/Mvc/Model/Resultset/Simple/UnserializeCest.php index cba57809ac9..31f7f8c3378 100644 --- a/tests/database/Mvc/Model/Resultset/Simple/UnserializeCest.php +++ b/tests/database/Mvc/Model/Resultset/Simple/UnserializeCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Database\Mvc\Model\Resultset\Simple; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; class UnserializeCest { diff --git a/tests/database/Mvc/Model/Row/JsonSerializeCest.php b/tests/database/Mvc/Model/Row/JsonSerializeCest.php index d9961935e9d..b64aaa9fac4 100644 --- a/tests/database/Mvc/Model/Row/JsonSerializeCest.php +++ b/tests/database/Mvc/Model/Row/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/Row/OffsetExistsCest.php b/tests/database/Mvc/Model/Row/OffsetExistsCest.php index 719871bacdd..24d791015dd 100644 --- a/tests/database/Mvc/Model/Row/OffsetExistsCest.php +++ b/tests/database/Mvc/Model/Row/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/Row/OffsetGetCest.php b/tests/database/Mvc/Model/Row/OffsetGetCest.php index baa57af8c84..eb04d5ebc2e 100644 --- a/tests/database/Mvc/Model/Row/OffsetGetCest.php +++ b/tests/database/Mvc/Model/Row/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/Row/OffsetSetCest.php b/tests/database/Mvc/Model/Row/OffsetSetCest.php index 5f003d8bdc6..7d87f640cc4 100644 --- a/tests/database/Mvc/Model/Row/OffsetSetCest.php +++ b/tests/database/Mvc/Model/Row/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Exception; diff --git a/tests/database/Mvc/Model/Row/OffsetUnsetCest.php b/tests/database/Mvc/Model/Row/OffsetUnsetCest.php index 1967800f0c1..306b4d83ca7 100644 --- a/tests/database/Mvc/Model/Row/OffsetUnsetCest.php +++ b/tests/database/Mvc/Model/Row/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Exception; diff --git a/tests/database/Mvc/Model/Row/ReadWriteAttributeCest.php b/tests/database/Mvc/Model/Row/ReadWriteAttributeCest.php index 73ecc766c3c..58892640102 100644 --- a/tests/database/Mvc/Model/Row/ReadWriteAttributeCest.php +++ b/tests/database/Mvc/Model/Row/ReadWriteAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/Row/SetDirtyStateCest.php b/tests/database/Mvc/Model/Row/SetDirtyStateCest.php index f191855e90e..9c3ddf28f6c 100644 --- a/tests/database/Mvc/Model/Row/SetDirtyStateCest.php +++ b/tests/database/Mvc/Model/Row/SetDirtyStateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/Row/ToArrayCest.php b/tests/database/Mvc/Model/Row/ToArrayCest.php index 606181cf55d..a7120695bc6 100644 --- a/tests/database/Mvc/Model/Row/ToArrayCest.php +++ b/tests/database/Mvc/Model/Row/ToArrayCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model\Row; +namespace Phalcon\Tests\Database\Mvc\Model\Row; use DatabaseTester; use Phalcon\Mvc\Model\Row; diff --git a/tests/database/Mvc/Model/SaveCest.php b/tests/database/Mvc/Model/SaveCest.php index 36f4ea83485..151a91c5916 100644 --- a/tests/database/Mvc/Model/SaveCest.php +++ b/tests/database/Mvc/Model/SaveCest.php @@ -11,24 +11,24 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\MetaData; -use Phalcon\Test\Fixtures\Migrations\CustomersDefaultsMigration; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Migrations\SourcesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\CustomersDefaults; -use Phalcon\Test\Models\CustomersKeepSnapshots; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesKeepSnapshots; -use Phalcon\Test\Models\InvoicesSchema; -use Phalcon\Test\Models\InvoicesValidationFails; -use Phalcon\Test\Models\Sources; -use Phalcon\Test\Models\Customers; +use Phalcon\Tests\Fixtures\Migrations\CustomersDefaultsMigration; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\SourcesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\CustomersDefaults; +use Phalcon\Tests\Models\CustomersKeepSnapshots; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesKeepSnapshots; +use Phalcon\Tests\Models\InvoicesSchema; +use Phalcon\Tests\Models\InvoicesValidationFails; +use Phalcon\Tests\Models\Sources; +use Phalcon\Tests\Models\Customers; use function uniqid; diff --git a/tests/database/Mvc/Model/SerializeCest.php b/tests/database/Mvc/Model/SerializeCest.php index c7bae713698..f67b761178b 100644 --- a/tests/database/Mvc/Model/SerializeCest.php +++ b/tests/database/Mvc/Model/SerializeCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function date; use function serialize; diff --git a/tests/database/Mvc/Model/SumCest.php b/tests/database/Mvc/Model/SumCest.php index 3fe7421c178..96430501562 100644 --- a/tests/database/Mvc/Model/SumCest.php +++ b/tests/database/Mvc/Model/SumCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Simple; use Phalcon\Mvc\Model\Transaction\Manager; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class SumCest { diff --git a/tests/database/Mvc/Model/ToArrayCest.php b/tests/database/Mvc/Model/ToArrayCest.php index db3e360082e..e90935db517 100644 --- a/tests/database/Mvc/Model/ToArrayCest.php +++ b/tests/database/Mvc/Model/ToArrayCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesMap; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesMap; use function uniqid; diff --git a/tests/database/Mvc/Model/UnderscoreCallCest.php b/tests/database/Mvc/Model/UnderscoreCallCest.php index b81f004c6ef..2ae8a2068a3 100644 --- a/tests/database/Mvc/Model/UnderscoreCallCest.php +++ b/tests/database/Mvc/Model/UnderscoreCallCest.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; class UnderscoreCallCest { diff --git a/tests/database/Mvc/Model/UnderscoreCallStaticCest.php b/tests/database/Mvc/Model/UnderscoreCallStaticCest.php index cd6751c7593..8388c771a15 100644 --- a/tests/database/Mvc/Model/UnderscoreCallStaticCest.php +++ b/tests/database/Mvc/Model/UnderscoreCallStaticCest.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Exception; use Phalcon\Mvc\Model\Resultset; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; class UnderscoreCallStaticCest { diff --git a/tests/database/Mvc/Model/UnderscoreGetCest.php b/tests/database/Mvc/Model/UnderscoreGetCest.php index 093a8642cb0..5817894be0d 100644 --- a/tests/database/Mvc/Model/UnderscoreGetCest.php +++ b/tests/database/Mvc/Model/UnderscoreGetCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model\Exception; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; +use Phalcon\Tests\Models\Invoices; class UnderscoreGetCest { diff --git a/tests/database/Mvc/Model/UnderscoreIssetCest.php b/tests/database/Mvc/Model/UnderscoreIssetCest.php index 204bc5c6c5a..3db59565b99 100644 --- a/tests/database/Mvc/Model/UnderscoreIssetCest.php +++ b/tests/database/Mvc/Model/UnderscoreIssetCest.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; class UnderscoreIssetCest { diff --git a/tests/database/Mvc/Model/UnderscoreSetCest.php b/tests/database/Mvc/Model/UnderscoreSetCest.php index 6775c3b4d18..b94b87c0c38 100644 --- a/tests/database/Mvc/Model/UnderscoreSetCest.php +++ b/tests/database/Mvc/Model/UnderscoreSetCest.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\Model; -use Phalcon\Test\Fixtures\Migrations\CustomersMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; +use Phalcon\Tests\Fixtures\Migrations\CustomersMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; class UnderscoreSetCest { diff --git a/tests/database/Mvc/Model/UnserializeCest.php b/tests/database/Mvc/Model/UnserializeCest.php index 347077ae024..89527add0d5 100644 --- a/tests/database/Mvc/Model/UnserializeCest.php +++ b/tests/database/Mvc/Model/UnserializeCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function date; use function uniqid; diff --git a/tests/database/Mvc/Model/UpdateCest.php b/tests/database/Mvc/Model/UpdateCest.php index ae4a3d1b4b1..8a946830254 100644 --- a/tests/database/Mvc/Model/UpdateCest.php +++ b/tests/database/Mvc/Model/UpdateCest.php @@ -11,17 +11,17 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Mvc\Model; +namespace Phalcon\Tests\Database\Mvc\Model; use DatabaseTester; use Phalcon\Mvc\ModelInterface; -use Phalcon\Test\Fixtures\Migrations\CustomersDefaultsMigration; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Migrations\SettersMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\CustomersDefaults; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\Setters; +use Phalcon\Tests\Fixtures\Migrations\CustomersDefaultsMigration; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Migrations\SettersMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\CustomersDefaults; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\Setters; use function uniqid; diff --git a/tests/database/Paginator/Adapter/Model/ConstructCest.php b/tests/database/Paginator/Adapter/Model/ConstructCest.php index c78d65d6902..3f1948c39af 100644 --- a/tests/database/Paginator/Adapter/Model/ConstructCest.php +++ b/tests/database/Paginator/Adapter/Model/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\Model; +namespace Phalcon\Tests\Database\Paginator\Adapter\Model; use DatabaseTester; use Phalcon\Paginator\Adapter\Model; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use function uniqid; diff --git a/tests/database/Paginator/Adapter/Model/PaginateCest.php b/tests/database/Paginator/Adapter/Model/PaginateCest.php index 26e5baf859b..cd8898c01e1 100644 --- a/tests/database/Paginator/Adapter/Model/PaginateCest.php +++ b/tests/database/Paginator/Adapter/Model/PaginateCest.php @@ -11,17 +11,17 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\Model; +namespace Phalcon\Tests\Database\Paginator\Adapter\Model; use DatabaseTester; use PDO; use Phalcon\Paginator\Adapter\Model; use Phalcon\Paginator\Repository; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class PaginateCest { diff --git a/tests/database/Paginator/Adapter/Model/SetGetLimitCest.php b/tests/database/Paginator/Adapter/Model/SetGetLimitCest.php index 0cc143a4181..9d2150e4877 100644 --- a/tests/database/Paginator/Adapter/Model/SetGetLimitCest.php +++ b/tests/database/Paginator/Adapter/Model/SetGetLimitCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\Model; +namespace Phalcon\Tests\Database\Paginator\Adapter\Model; use DatabaseTester; use Phalcon\Paginator\Adapter\Model; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; /** * Class SetGetLimitCest diff --git a/tests/database/Paginator/Adapter/QueryBuilder/ConstructCest.php b/tests/database/Paginator/Adapter/QueryBuilder/ConstructCest.php index 7265915b138..d2567aaa28a 100644 --- a/tests/database/Paginator/Adapter/QueryBuilder/ConstructCest.php +++ b/tests/database/Paginator/Adapter/QueryBuilder/ConstructCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\QueryBuilder; +namespace Phalcon\Tests\Database\Paginator\Adapter\QueryBuilder; use DatabaseTester; use Phalcon\Paginator\Adapter\AdapterInterface; use Phalcon\Paginator\Adapter\QueryBuilder; use Phalcon\Paginator\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; use stdClass; /** diff --git a/tests/database/Paginator/Adapter/QueryBuilder/GetSetLimitCest.php b/tests/database/Paginator/Adapter/QueryBuilder/GetSetLimitCest.php index 73a5de0e951..e137c4b599a 100644 --- a/tests/database/Paginator/Adapter/QueryBuilder/GetSetLimitCest.php +++ b/tests/database/Paginator/Adapter/QueryBuilder/GetSetLimitCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\QueryBuilder; +namespace Phalcon\Tests\Database\Paginator\Adapter\QueryBuilder; use DatabaseTester; use Phalcon\Paginator\Adapter\QueryBuilder; use Phalcon\Paginator\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class GetSetLimitCest { diff --git a/tests/database/Paginator/Adapter/QueryBuilder/GetSetQueryBuilderCest.php b/tests/database/Paginator/Adapter/QueryBuilder/GetSetQueryBuilderCest.php index ec1a4de4de3..eedb4b24e4e 100644 --- a/tests/database/Paginator/Adapter/QueryBuilder/GetSetQueryBuilderCest.php +++ b/tests/database/Paginator/Adapter/QueryBuilder/GetSetQueryBuilderCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\QueryBuilder; +namespace Phalcon\Tests\Database\Paginator\Adapter\QueryBuilder; use DatabaseTester; use Phalcon\Paginator\Adapter\QueryBuilder; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; class GetSetQueryBuilderCest { diff --git a/tests/database/Paginator/Adapter/QueryBuilder/PaginateCest.php b/tests/database/Paginator/Adapter/QueryBuilder/PaginateCest.php index 76698641f73..5f8dcaaf4a4 100644 --- a/tests/database/Paginator/Adapter/QueryBuilder/PaginateCest.php +++ b/tests/database/Paginator/Adapter/QueryBuilder/PaginateCest.php @@ -11,17 +11,17 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Paginator\Adapter\QueryBuilder; +namespace Phalcon\Tests\Database\Paginator\Adapter\QueryBuilder; use DatabaseTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Paginator\Adapter\QueryBuilder; use Phalcon\Paginator\Repository; use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RecordsTrait; -use Phalcon\Test\Models\Invoices; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RecordsTrait; +use Phalcon\Tests\Models\Invoices; use function is_int; diff --git a/tests/database/Validation/Validator/UniquenessCest.php b/tests/database/Validation/Validator/UniquenessCest.php index a40419b90d5..e1b8ffab856 100644 --- a/tests/database/Validation/Validator/UniquenessCest.php +++ b/tests/database/Validation/Validator/UniquenessCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Database\Validation\Validator; +namespace Phalcon\Tests\Database\Validation\Validator; use DatabaseTester; use PDO; -use Phalcon\Test\Fixtures\Migrations\ObjectsMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Objects; -use Phalcon\Test\Models\ObjectsWithColumnMap; +use Phalcon\Tests\Fixtures\Migrations\ObjectsMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Objects; +use Phalcon\Tests\Models\ObjectsWithColumnMap; use Phalcon\Validation; use Phalcon\Validation\Validator\Uniqueness; diff --git a/tests/integration/Cache/Adapter/Apcu/DecrementCest.php b/tests/integration/Cache/Adapter/Apcu/DecrementCest.php index 14fcf137687..94b4de05651 100644 --- a/tests/integration/Cache/Adapter/Apcu/DecrementCest.php +++ b/tests/integration/Cache/Adapter/Apcu/DecrementCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Cache\Adapter\Apcu; use Exception; use IntegrationTester; use Phalcon\Cache\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; class DecrementCest { diff --git a/tests/integration/Cache/Adapter/Apcu/GetKeysCest.php b/tests/integration/Cache/Adapter/Apcu/GetKeysCest.php index 56648fb187d..2a70238b8cc 100644 --- a/tests/integration/Cache/Adapter/Apcu/GetKeysCest.php +++ b/tests/integration/Cache/Adapter/Apcu/GetKeysCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Cache\Adapter\Apcu; use IntegrationTester; use Phalcon\Cache\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; class GetKeysCest { diff --git a/tests/integration/Cache/Adapter/Apcu/GetSetCest.php b/tests/integration/Cache/Adapter/Apcu/GetSetCest.php index 7aeede158c2..517f1d4c50f 100644 --- a/tests/integration/Cache/Adapter/Apcu/GetSetCest.php +++ b/tests/integration/Cache/Adapter/Apcu/GetSetCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Cache\Adapter\Apcu; use Codeception\Example; use IntegrationTester; use Phalcon\Cache\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Cache\CacheFixtureData; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Cache\CacheFixtureData; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; class GetSetCest { diff --git a/tests/integration/Cache/Adapter/Apcu/IncrementCest.php b/tests/integration/Cache/Adapter/Apcu/IncrementCest.php index 658d4b6d825..0089caf6920 100644 --- a/tests/integration/Cache/Adapter/Apcu/IncrementCest.php +++ b/tests/integration/Cache/Adapter/Apcu/IncrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Cache\Adapter\Apcu; use IntegrationTester; use Phalcon\Cache\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; class IncrementCest { diff --git a/tests/integration/Cache/Adapter/ClearCest.php b/tests/integration/Cache/Adapter/ClearCest.php index e734a5c5804..d12f0754fce 100644 --- a/tests/integration/Cache/Adapter/ClearCest.php +++ b/tests/integration/Cache/Adapter/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/ConstructCest.php b/tests/integration/Cache/Adapter/ConstructCest.php index 6d7a0968af5..15effbc01f6 100644 --- a/tests/integration/Cache/Adapter/ConstructCest.php +++ b/tests/integration/Cache/Adapter/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/DeleteCest.php b/tests/integration/Cache/Adapter/DeleteCest.php index dcef6a806b8..a66f746c328 100644 --- a/tests/integration/Cache/Adapter/DeleteCest.php +++ b/tests/integration/Cache/Adapter/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/GetAdapterCest.php b/tests/integration/Cache/Adapter/GetAdapterCest.php index eb57f35f621..a51aabce68f 100644 --- a/tests/integration/Cache/Adapter/GetAdapterCest.php +++ b/tests/integration/Cache/Adapter/GetAdapterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/GetPrefixCest.php b/tests/integration/Cache/Adapter/GetPrefixCest.php index 81e37dc8b72..8d049ce0741 100644 --- a/tests/integration/Cache/Adapter/GetPrefixCest.php +++ b/tests/integration/Cache/Adapter/GetPrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/GetSetDefaultSerializerCest.php b/tests/integration/Cache/Adapter/GetSetDefaultSerializerCest.php index d4037ee94a3..e1108d201dd 100644 --- a/tests/integration/Cache/Adapter/GetSetDefaultSerializerCest.php +++ b/tests/integration/Cache/Adapter/GetSetDefaultSerializerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/HasCest.php b/tests/integration/Cache/Adapter/HasCest.php index 0d085f0526b..b24ce09ea8e 100644 --- a/tests/integration/Cache/Adapter/HasCest.php +++ b/tests/integration/Cache/Adapter/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter; +namespace Phalcon\Tests\Integration\Cache\Adapter; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Cache/Adapter/Libmemcached/DecrementCest.php b/tests/integration/Cache/Adapter/Libmemcached/DecrementCest.php index 577badb32e7..400ccd1d125 100644 --- a/tests/integration/Cache/Adapter/Libmemcached/DecrementCest.php +++ b/tests/integration/Cache/Adapter/Libmemcached/DecrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Cache\Adapter\Libmemcached; use IntegrationTester; use Phalcon\Cache\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use function getOptionsLibmemcached; diff --git a/tests/integration/Cache/Adapter/Libmemcached/GetKeysCest.php b/tests/integration/Cache/Adapter/Libmemcached/GetKeysCest.php index 79255018158..d3271ac7f7b 100644 --- a/tests/integration/Cache/Adapter/Libmemcached/GetKeysCest.php +++ b/tests/integration/Cache/Adapter/Libmemcached/GetKeysCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Cache\Adapter\Libmemcached; use IntegrationTester; use Phalcon\Cache\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use function getOptionsLibmemcached; diff --git a/tests/integration/Cache/Adapter/Libmemcached/GetSetCest.php b/tests/integration/Cache/Adapter/Libmemcached/GetSetCest.php index 7d3c98894ee..c6d9d2b75f8 100644 --- a/tests/integration/Cache/Adapter/Libmemcached/GetSetCest.php +++ b/tests/integration/Cache/Adapter/Libmemcached/GetSetCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Cache\Adapter\Libmemcached; use Codeception\Example; use IntegrationTester; use Phalcon\Cache\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Cache\CacheFixtureData; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Cache\CacheFixtureData; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use function getOptionsLibmemcached; diff --git a/tests/integration/Cache/Adapter/Libmemcached/IncrementCest.php b/tests/integration/Cache/Adapter/Libmemcached/IncrementCest.php index c9feed981c6..3c41a3458bd 100644 --- a/tests/integration/Cache/Adapter/Libmemcached/IncrementCest.php +++ b/tests/integration/Cache/Adapter/Libmemcached/IncrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Cache\Adapter\Libmemcached; use IntegrationTester; use Phalcon\Cache\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use function getOptionsLibmemcached; diff --git a/tests/integration/Cache/Adapter/Memory/DecrementCest.php b/tests/integration/Cache/Adapter/Memory/DecrementCest.php index 7b8b05a5c33..d7faf361d98 100644 --- a/tests/integration/Cache/Adapter/Memory/DecrementCest.php +++ b/tests/integration/Cache/Adapter/Memory/DecrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Memory; +namespace Phalcon\Tests\Integration\Cache\Adapter\Memory; use IntegrationTester; use Phalcon\Cache\Adapter\Memory; diff --git a/tests/integration/Cache/Adapter/Memory/GetKeysCest.php b/tests/integration/Cache/Adapter/Memory/GetKeysCest.php index 19ef09dcbab..027fb46eb37 100644 --- a/tests/integration/Cache/Adapter/Memory/GetKeysCest.php +++ b/tests/integration/Cache/Adapter/Memory/GetKeysCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Memory; +namespace Phalcon\Tests\Integration\Cache\Adapter\Memory; use IntegrationTester; use Phalcon\Cache\Adapter\Memory; diff --git a/tests/integration/Cache/Adapter/Memory/GetSetCest.php b/tests/integration/Cache/Adapter/Memory/GetSetCest.php index a10c48970f6..c2d06e49d4a 100644 --- a/tests/integration/Cache/Adapter/Memory/GetSetCest.php +++ b/tests/integration/Cache/Adapter/Memory/GetSetCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Memory; +namespace Phalcon\Tests\Integration\Cache\Adapter\Memory; use Codeception\Example; use IntegrationTester; use Phalcon\Cache\Adapter\Memory; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Cache\CacheFixtureData; +use Phalcon\Tests\Fixtures\Cache\CacheFixtureData; class GetSetCest { diff --git a/tests/integration/Cache/Adapter/Memory/IncrementCest.php b/tests/integration/Cache/Adapter/Memory/IncrementCest.php index 4dfeb04bf7d..93b985d9e52 100644 --- a/tests/integration/Cache/Adapter/Memory/IncrementCest.php +++ b/tests/integration/Cache/Adapter/Memory/IncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Memory; +namespace Phalcon\Tests\Integration\Cache\Adapter\Memory; use IntegrationTester; use Phalcon\Cache\Adapter\Memory; diff --git a/tests/integration/Cache/Adapter/Redis/DecrementCest.php b/tests/integration/Cache/Adapter/Redis/DecrementCest.php index 6855419443e..a07252e9ac7 100644 --- a/tests/integration/Cache/Adapter/Redis/DecrementCest.php +++ b/tests/integration/Cache/Adapter/Redis/DecrementCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Redis; +namespace Phalcon\Tests\Integration\Cache\Adapter\Redis; use IntegrationTester; use Phalcon\Cache\Adapter\Redis; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use function getOptionsRedis; use function uniqid; diff --git a/tests/integration/Cache/Adapter/Redis/GetKeysCest.php b/tests/integration/Cache/Adapter/Redis/GetKeysCest.php index 2ccc3e2cf26..c6514cae8b6 100644 --- a/tests/integration/Cache/Adapter/Redis/GetKeysCest.php +++ b/tests/integration/Cache/Adapter/Redis/GetKeysCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Redis; +namespace Phalcon\Tests\Integration\Cache\Adapter\Redis; use IntegrationTester; use Phalcon\Cache\Adapter\Redis; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use function getOptionsRedis; diff --git a/tests/integration/Cache/Adapter/Redis/GetSetCest.php b/tests/integration/Cache/Adapter/Redis/GetSetCest.php index 295842bb75c..a75d4af6ecb 100644 --- a/tests/integration/Cache/Adapter/Redis/GetSetCest.php +++ b/tests/integration/Cache/Adapter/Redis/GetSetCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Redis; +namespace Phalcon\Tests\Integration\Cache\Adapter\Redis; use Codeception\Example; use IntegrationTester; use Phalcon\Cache\Adapter\Redis; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Cache\CacheFixtureData; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Cache\CacheFixtureData; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use function array_merge; use function getOptionsRedis; diff --git a/tests/integration/Cache/Adapter/Redis/IncrementCest.php b/tests/integration/Cache/Adapter/Redis/IncrementCest.php index 4653644b894..f4551f68744 100644 --- a/tests/integration/Cache/Adapter/Redis/IncrementCest.php +++ b/tests/integration/Cache/Adapter/Redis/IncrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Redis; +namespace Phalcon\Tests\Integration\Cache\Adapter\Redis; use IntegrationTester; use Phalcon\Cache\Adapter\Redis; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use function getOptionsRedis; use function uniqid; diff --git a/tests/integration/Cache/Adapter/Stream/DecrementCest.php b/tests/integration/Cache/Adapter/Stream/DecrementCest.php index c997e25e95e..8d0ee4cd7b9 100644 --- a/tests/integration/Cache/Adapter/Stream/DecrementCest.php +++ b/tests/integration/Cache/Adapter/Stream/DecrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Stream; +namespace Phalcon\Tests\Integration\Cache\Adapter\Stream; use IntegrationTester; use Phalcon\Cache\Adapter\Stream; diff --git a/tests/integration/Cache/Adapter/Stream/GetKeysCest.php b/tests/integration/Cache/Adapter/Stream/GetKeysCest.php index 172f4ed22e1..178e738497b 100644 --- a/tests/integration/Cache/Adapter/Stream/GetKeysCest.php +++ b/tests/integration/Cache/Adapter/Stream/GetKeysCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Stream; +namespace Phalcon\Tests\Integration\Cache\Adapter\Stream; use IntegrationTester; use Phalcon\Cache\Adapter\Stream; diff --git a/tests/integration/Cache/Adapter/Stream/GetSetCest.php b/tests/integration/Cache/Adapter/Stream/GetSetCest.php index b9f9bd6b86a..4afb63886b6 100644 --- a/tests/integration/Cache/Adapter/Stream/GetSetCest.php +++ b/tests/integration/Cache/Adapter/Stream/GetSetCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Stream; +namespace Phalcon\Tests\Integration\Cache\Adapter\Stream; use Codeception\Example; use IntegrationTester; use Phalcon\Cache\Adapter\Stream; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Cache\CacheFixtureData; +use Phalcon\Tests\Fixtures\Cache\CacheFixtureData; use function file_put_contents; use function outputDir; diff --git a/tests/integration/Cache/Adapter/Stream/IncrementCest.php b/tests/integration/Cache/Adapter/Stream/IncrementCest.php index 0e70c2cb85a..bf4f2a395be 100644 --- a/tests/integration/Cache/Adapter/Stream/IncrementCest.php +++ b/tests/integration/Cache/Adapter/Stream/IncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Adapter\Stream; +namespace Phalcon\Tests\Integration\Cache\Adapter\Stream; use IntegrationTester; use Phalcon\Cache\Adapter\Stream; diff --git a/tests/integration/Cache/AdapterFactory/NewInstanceCest.php b/tests/integration/Cache/AdapterFactory/NewInstanceCest.php index 7a4138797df..3c05f4b725c 100644 --- a/tests/integration/Cache/AdapterFactory/NewInstanceCest.php +++ b/tests/integration/Cache/AdapterFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\AdapterFactory; +namespace Phalcon\Tests\Integration\Cache\AdapterFactory; use Codeception\Example; use Phalcon\Cache\Adapter\Apcu; diff --git a/tests/integration/Cache/Cache/ClearCest.php b/tests/integration/Cache/Cache/ClearCest.php index d569df09fd0..06b58da55a3 100644 --- a/tests/integration/Cache/Cache/ClearCest.php +++ b/tests/integration/Cache/Cache/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/ConstructCest.php b/tests/integration/Cache/Cache/ConstructCest.php index b63f8197fda..f1c07a2b250 100644 --- a/tests/integration/Cache/Cache/ConstructCest.php +++ b/tests/integration/Cache/Cache/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/DeleteCest.php b/tests/integration/Cache/Cache/DeleteCest.php index 669533ed86e..f19cb58eb24 100644 --- a/tests/integration/Cache/Cache/DeleteCest.php +++ b/tests/integration/Cache/Cache/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/DeleteMultipleCest.php b/tests/integration/Cache/Cache/DeleteMultipleCest.php index 04adfd18b49..009dbfe3aa2 100644 --- a/tests/integration/Cache/Cache/DeleteMultipleCest.php +++ b/tests/integration/Cache/Cache/DeleteMultipleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/GetAdapterCest.php b/tests/integration/Cache/Cache/GetAdapterCest.php index 112f29be072..201c2d180c4 100644 --- a/tests/integration/Cache/Cache/GetAdapterCest.php +++ b/tests/integration/Cache/Cache/GetAdapterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\Adapter\AdapterInterface; diff --git a/tests/integration/Cache/Cache/GetMultipleCest.php b/tests/integration/Cache/Cache/GetMultipleCest.php index 37e32230f2a..9667d810c55 100644 --- a/tests/integration/Cache/Cache/GetMultipleCest.php +++ b/tests/integration/Cache/Cache/GetMultipleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/GetSetCest.php b/tests/integration/Cache/Cache/GetSetCest.php index b403a991e16..3b408c2a3a2 100644 --- a/tests/integration/Cache/Cache/GetSetCest.php +++ b/tests/integration/Cache/Cache/GetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/HasCest.php b/tests/integration/Cache/Cache/HasCest.php index 50bdefe6b62..384540952f2 100644 --- a/tests/integration/Cache/Cache/HasCest.php +++ b/tests/integration/Cache/Cache/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/Cache/SetMultipleCest.php b/tests/integration/Cache/Cache/SetMultipleCest.php index 5e8e06ae10b..81fd34790f4 100644 --- a/tests/integration/Cache/Cache/SetMultipleCest.php +++ b/tests/integration/Cache/Cache/SetMultipleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\Cache; +namespace Phalcon\Tests\Integration\Cache\Cache; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Cache/CacheFactory/LoadCest.php b/tests/integration/Cache/CacheFactory/LoadCest.php index 9a11bec2387..6ffaee4c4ba 100644 --- a/tests/integration/Cache/CacheFactory/LoadCest.php +++ b/tests/integration/Cache/CacheFactory/LoadCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\CacheFactory; +namespace Phalcon\Tests\Integration\Cache\CacheFactory; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; use Phalcon\Cache\CacheFactory; use Phalcon\Storage\Serializer\None; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; use Psr\SimpleCache\CacheInterface; use IntegrationTester; diff --git a/tests/integration/Cache/CacheFactory/NewInstanceCest.php b/tests/integration/Cache/CacheFactory/NewInstanceCest.php index d9527d47243..89c44529e6a 100644 --- a/tests/integration/Cache/CacheFactory/NewInstanceCest.php +++ b/tests/integration/Cache/CacheFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Cache\CacheFactory; +namespace Phalcon\Tests\Integration\Cache\CacheFactory; use Phalcon\Cache; use Phalcon\Cache\AdapterFactory; diff --git a/tests/integration/Db/Dialect/Mysql/AddColumnCest.php b/tests/integration/Db/Dialect/Mysql/AddColumnCest.php index e4e7ecbf75e..26715281dca 100644 --- a/tests/integration/Db/Dialect/Mysql/AddColumnCest.php +++ b/tests/integration/Db/Dialect/Mysql/AddColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Dialect\Mysql; +namespace Phalcon\Tests\Integration\Db\Dialect\Mysql; use IntegrationTester; use Phalcon\Db\Column; diff --git a/tests/integration/Db/Dialect/Mysql/CreateTableCest.php b/tests/integration/Db/Dialect/Mysql/CreateTableCest.php index b376b30729d..5186ff46e5b 100644 --- a/tests/integration/Db/Dialect/Mysql/CreateTableCest.php +++ b/tests/integration/Db/Dialect/Mysql/CreateTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Dialect\Mysql; +namespace Phalcon\Tests\Integration\Db\Dialect\Mysql; use IntegrationTester; use Phalcon\Db\Column; diff --git a/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php b/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php index a6f064d3158..c138f89353d 100644 --- a/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php +++ b/tests/integration/Db/Dialect/Mysql/ModifyColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Dialect\Mysql; +namespace Phalcon\Tests\Integration\Db\Dialect\Mysql; use IntegrationTester; use Phalcon\Db\Column; diff --git a/tests/integration/Forms/Element/Check/AddFilterCest.php b/tests/integration/Forms/Element/Check/AddFilterCest.php index 0bcc6f72d24..1364e7b4713 100644 --- a/tests/integration/Forms/Element/Check/AddFilterCest.php +++ b/tests/integration/Forms/Element/Check/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/AddValidatorCest.php b/tests/integration/Forms/Element/Check/AddValidatorCest.php index 1efd4bd047a..5accfc28e80 100644 --- a/tests/integration/Forms/Element/Check/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Check/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/AddValidatorsCest.php b/tests/integration/Forms/Element/Check/AddValidatorsCest.php index a59a65da41a..18560689530 100644 --- a/tests/integration/Forms/Element/Check/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Check/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/AppendMessageCest.php b/tests/integration/Forms/Element/Check/AppendMessageCest.php index 506fea3ad06..96f2817d680 100644 --- a/tests/integration/Forms/Element/Check/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Check/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/ClearCest.php b/tests/integration/Forms/Element/Check/ClearCest.php index 2cf28db95bb..be6bd4028f0 100644 --- a/tests/integration/Forms/Element/Check/ClearCest.php +++ b/tests/integration/Forms/Element/Check/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/ConstructCest.php b/tests/integration/Forms/Element/Check/ConstructCest.php index 848ba05d302..14904d9f79c 100644 --- a/tests/integration/Forms/Element/Check/ConstructCest.php +++ b/tests/integration/Forms/Element/Check/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetAttributeCest.php b/tests/integration/Forms/Element/Check/GetAttributeCest.php index c1566c27cb1..eab28adfcda 100644 --- a/tests/integration/Forms/Element/Check/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Check/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetAttributesCest.php b/tests/integration/Forms/Element/Check/GetAttributesCest.php index 7ad0babd139..fc5416b6c6a 100644 --- a/tests/integration/Forms/Element/Check/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Check/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetDefaultCest.php b/tests/integration/Forms/Element/Check/GetDefaultCest.php index f4c2f208976..9fc4fca1765 100644 --- a/tests/integration/Forms/Element/Check/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Check/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetFiltersCest.php b/tests/integration/Forms/Element/Check/GetFiltersCest.php index 986ee89835f..cee17c72cd7 100644 --- a/tests/integration/Forms/Element/Check/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Check/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetLabelCest.php b/tests/integration/Forms/Element/Check/GetLabelCest.php index 74387e71cb4..cb7bbc0e3bc 100644 --- a/tests/integration/Forms/Element/Check/GetLabelCest.php +++ b/tests/integration/Forms/Element/Check/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetMessagesCest.php b/tests/integration/Forms/Element/Check/GetMessagesCest.php index 8cbff634ce2..a808c3dc80a 100644 --- a/tests/integration/Forms/Element/Check/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Check/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetSetFormCest.php b/tests/integration/Forms/Element/Check/GetSetFormCest.php index 737c9a04bd2..b6457d374de 100644 --- a/tests/integration/Forms/Element/Check/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Check/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; use Phalcon\Forms\Element\Check; diff --git a/tests/integration/Forms/Element/Check/GetSetNameCest.php b/tests/integration/Forms/Element/Check/GetSetNameCest.php index ffc0c3914b5..553efe5ce4c 100644 --- a/tests/integration/Forms/Element/Check/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Check/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; use Phalcon\Forms\Element\Check; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Check/GetUserOptionCest.php b/tests/integration/Forms/Element/Check/GetUserOptionCest.php index 5c6fcb4645a..91ba7e19aac 100644 --- a/tests/integration/Forms/Element/Check/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Check/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetUserOptionsCest.php b/tests/integration/Forms/Element/Check/GetUserOptionsCest.php index acca659a0bd..b0bbf14d72a 100644 --- a/tests/integration/Forms/Element/Check/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Check/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetValidatorsCest.php b/tests/integration/Forms/Element/Check/GetValidatorsCest.php index f3c451c12c2..ec4e3eb894d 100644 --- a/tests/integration/Forms/Element/Check/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Check/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/GetValueCest.php b/tests/integration/Forms/Element/Check/GetValueCest.php index 8b19b2ec6d1..3d2a75714a6 100644 --- a/tests/integration/Forms/Element/Check/GetValueCest.php +++ b/tests/integration/Forms/Element/Check/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/HasMessagesCest.php b/tests/integration/Forms/Element/Check/HasMessagesCest.php index 8652db01f5d..e56769e0863 100644 --- a/tests/integration/Forms/Element/Check/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Check/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/LabelCest.php b/tests/integration/Forms/Element/Check/LabelCest.php index 253ed772808..d947f7a7569 100644 --- a/tests/integration/Forms/Element/Check/LabelCest.php +++ b/tests/integration/Forms/Element/Check/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/PrepareAttributesCest.php b/tests/integration/Forms/Element/Check/PrepareAttributesCest.php index a4d495c096c..9bd50dc5146 100644 --- a/tests/integration/Forms/Element/Check/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Check/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/RenderCest.php b/tests/integration/Forms/Element/Check/RenderCest.php index e288fcad1ef..780eefa0663 100644 --- a/tests/integration/Forms/Element/Check/RenderCest.php +++ b/tests/integration/Forms/Element/Check/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; use Phalcon\Forms\Element\Check; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Check/SetAttributeCest.php b/tests/integration/Forms/Element/Check/SetAttributeCest.php index efdd58a11ba..a0fe7bbc6da 100644 --- a/tests/integration/Forms/Element/Check/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Check/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetAttributesCest.php b/tests/integration/Forms/Element/Check/SetAttributesCest.php index 54bc0849584..f37f6d32f23 100644 --- a/tests/integration/Forms/Element/Check/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Check/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetDefaultCest.php b/tests/integration/Forms/Element/Check/SetDefaultCest.php index 5c3219354d3..b6ac73adaee 100644 --- a/tests/integration/Forms/Element/Check/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Check/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetFiltersCest.php b/tests/integration/Forms/Element/Check/SetFiltersCest.php index f4b470c5480..7240fe62059 100644 --- a/tests/integration/Forms/Element/Check/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Check/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetLabelCest.php b/tests/integration/Forms/Element/Check/SetLabelCest.php index 5c7901c0d94..19faf4721c1 100644 --- a/tests/integration/Forms/Element/Check/SetLabelCest.php +++ b/tests/integration/Forms/Element/Check/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetMessagesCest.php b/tests/integration/Forms/Element/Check/SetMessagesCest.php index 67ebbf83bc3..2f60f806012 100644 --- a/tests/integration/Forms/Element/Check/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Check/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetUserOptionCest.php b/tests/integration/Forms/Element/Check/SetUserOptionCest.php index 524c6d152eb..83343b6f0c5 100644 --- a/tests/integration/Forms/Element/Check/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Check/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/SetUserOptionsCest.php b/tests/integration/Forms/Element/Check/SetUserOptionsCest.php index 7e6be114df1..2d65de5235c 100644 --- a/tests/integration/Forms/Element/Check/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Check/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Check/ToStringCest.php b/tests/integration/Forms/Element/Check/ToStringCest.php index 81776dbcac6..0352df60fcb 100644 --- a/tests/integration/Forms/Element/Check/ToStringCest.php +++ b/tests/integration/Forms/Element/Check/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Check; +namespace Phalcon\Tests\Integration\Forms\Element\Check; use IntegrationTester; use Phalcon\Forms\Element\Check; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Date/AddFilterCest.php b/tests/integration/Forms/Element/Date/AddFilterCest.php index b3ffa76dc8f..ea476305410 100644 --- a/tests/integration/Forms/Element/Date/AddFilterCest.php +++ b/tests/integration/Forms/Element/Date/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/AddValidatorCest.php b/tests/integration/Forms/Element/Date/AddValidatorCest.php index 981fe9b6191..024a88f31b6 100644 --- a/tests/integration/Forms/Element/Date/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Date/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/AddValidatorsCest.php b/tests/integration/Forms/Element/Date/AddValidatorsCest.php index 2a299716bb8..a356aa48d1d 100644 --- a/tests/integration/Forms/Element/Date/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Date/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/AppendMessageCest.php b/tests/integration/Forms/Element/Date/AppendMessageCest.php index bf7a6516048..64eab8fba5d 100644 --- a/tests/integration/Forms/Element/Date/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Date/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/ClearCest.php b/tests/integration/Forms/Element/Date/ClearCest.php index 7fa89ca13f8..6c453acab9f 100644 --- a/tests/integration/Forms/Element/Date/ClearCest.php +++ b/tests/integration/Forms/Element/Date/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/ConstructCest.php b/tests/integration/Forms/Element/Date/ConstructCest.php index 600078d5769..415e5e770c5 100644 --- a/tests/integration/Forms/Element/Date/ConstructCest.php +++ b/tests/integration/Forms/Element/Date/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetAttributeCest.php b/tests/integration/Forms/Element/Date/GetAttributeCest.php index 80f21f686a3..ab0e9225aa3 100644 --- a/tests/integration/Forms/Element/Date/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Date/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetAttributesCest.php b/tests/integration/Forms/Element/Date/GetAttributesCest.php index 9e4d6cc10d3..97f987bb8e7 100644 --- a/tests/integration/Forms/Element/Date/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Date/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetDefaultCest.php b/tests/integration/Forms/Element/Date/GetDefaultCest.php index 1a96fd96509..f3418585917 100644 --- a/tests/integration/Forms/Element/Date/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Date/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetFiltersCest.php b/tests/integration/Forms/Element/Date/GetFiltersCest.php index 9aa5183bc68..034f327d29d 100644 --- a/tests/integration/Forms/Element/Date/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Date/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetLabelCest.php b/tests/integration/Forms/Element/Date/GetLabelCest.php index db5fa51aeaa..d1e0c21d1a8 100644 --- a/tests/integration/Forms/Element/Date/GetLabelCest.php +++ b/tests/integration/Forms/Element/Date/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetMessagesCest.php b/tests/integration/Forms/Element/Date/GetMessagesCest.php index 2fe2e0fa1e0..0cbfac3bfab 100644 --- a/tests/integration/Forms/Element/Date/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Date/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetSetFormCest.php b/tests/integration/Forms/Element/Date/GetSetFormCest.php index 30320fadeed..81bbad1b072 100644 --- a/tests/integration/Forms/Element/Date/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Date/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; use Phalcon\Forms\Element\Date; diff --git a/tests/integration/Forms/Element/Date/GetSetNameCest.php b/tests/integration/Forms/Element/Date/GetSetNameCest.php index d1b1be6cec6..8e250ab9755 100644 --- a/tests/integration/Forms/Element/Date/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Date/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; use Phalcon\Forms\Element\Date; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Date/GetUserOptionCest.php b/tests/integration/Forms/Element/Date/GetUserOptionCest.php index 20759da731a..f93f5ec79af 100644 --- a/tests/integration/Forms/Element/Date/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Date/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetUserOptionsCest.php b/tests/integration/Forms/Element/Date/GetUserOptionsCest.php index ab5b28f9942..e552e185408 100644 --- a/tests/integration/Forms/Element/Date/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Date/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetValidatorsCest.php b/tests/integration/Forms/Element/Date/GetValidatorsCest.php index 63d0aced950..1c7c7362806 100644 --- a/tests/integration/Forms/Element/Date/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Date/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/GetValueCest.php b/tests/integration/Forms/Element/Date/GetValueCest.php index cdbba712cf6..bacc1727f11 100644 --- a/tests/integration/Forms/Element/Date/GetValueCest.php +++ b/tests/integration/Forms/Element/Date/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/HasMessagesCest.php b/tests/integration/Forms/Element/Date/HasMessagesCest.php index 0b0304c6cfc..9f43b6bd5c4 100644 --- a/tests/integration/Forms/Element/Date/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Date/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/LabelCest.php b/tests/integration/Forms/Element/Date/LabelCest.php index ff6d9ad516d..62b4c68cf7e 100644 --- a/tests/integration/Forms/Element/Date/LabelCest.php +++ b/tests/integration/Forms/Element/Date/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/PrepareAttributesCest.php b/tests/integration/Forms/Element/Date/PrepareAttributesCest.php index 635e45ed3f7..e99bf725bfb 100644 --- a/tests/integration/Forms/Element/Date/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Date/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/RenderCest.php b/tests/integration/Forms/Element/Date/RenderCest.php index 3efcc0b1b01..15fe9725144 100644 --- a/tests/integration/Forms/Element/Date/RenderCest.php +++ b/tests/integration/Forms/Element/Date/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; use Phalcon\Forms\Element\Date; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Date/SetAttributeCest.php b/tests/integration/Forms/Element/Date/SetAttributeCest.php index db9ebc062a8..c6bde4a9b2f 100644 --- a/tests/integration/Forms/Element/Date/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Date/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetAttributesCest.php b/tests/integration/Forms/Element/Date/SetAttributesCest.php index 1c33052ef1e..437d48e8772 100644 --- a/tests/integration/Forms/Element/Date/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Date/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetDefaultCest.php b/tests/integration/Forms/Element/Date/SetDefaultCest.php index 8320908616d..97bafda3ae3 100644 --- a/tests/integration/Forms/Element/Date/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Date/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetFiltersCest.php b/tests/integration/Forms/Element/Date/SetFiltersCest.php index 75f15b573f2..5b6e847e211 100644 --- a/tests/integration/Forms/Element/Date/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Date/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetLabelCest.php b/tests/integration/Forms/Element/Date/SetLabelCest.php index 20b00b1df00..457931bb825 100644 --- a/tests/integration/Forms/Element/Date/SetLabelCest.php +++ b/tests/integration/Forms/Element/Date/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetMessagesCest.php b/tests/integration/Forms/Element/Date/SetMessagesCest.php index 3faf5ea7622..b49cc956e90 100644 --- a/tests/integration/Forms/Element/Date/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Date/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetUserOptionCest.php b/tests/integration/Forms/Element/Date/SetUserOptionCest.php index b44ef3bae1d..fd3fca3eb3e 100644 --- a/tests/integration/Forms/Element/Date/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Date/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/SetUserOptionsCest.php b/tests/integration/Forms/Element/Date/SetUserOptionsCest.php index 42f1279a80f..784ae963a7b 100644 --- a/tests/integration/Forms/Element/Date/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Date/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Date/ToStringCest.php b/tests/integration/Forms/Element/Date/ToStringCest.php index f258526f8ab..5807c31f3c4 100644 --- a/tests/integration/Forms/Element/Date/ToStringCest.php +++ b/tests/integration/Forms/Element/Date/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Date; +namespace Phalcon\Tests\Integration\Forms\Element\Date; use IntegrationTester; use Phalcon\Forms\Element\Date; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Email/AddFilterCest.php b/tests/integration/Forms/Element/Email/AddFilterCest.php index d23621571e9..bff4151a06a 100644 --- a/tests/integration/Forms/Element/Email/AddFilterCest.php +++ b/tests/integration/Forms/Element/Email/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/AddValidatorCest.php b/tests/integration/Forms/Element/Email/AddValidatorCest.php index 1069967b81c..cee1738492e 100644 --- a/tests/integration/Forms/Element/Email/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Email/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/AddValidatorsCest.php b/tests/integration/Forms/Element/Email/AddValidatorsCest.php index 868ba1af193..0def3d0bb1f 100644 --- a/tests/integration/Forms/Element/Email/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Email/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/AppendMessageCest.php b/tests/integration/Forms/Element/Email/AppendMessageCest.php index 0a5fc15350a..3b1ec4eb77e 100644 --- a/tests/integration/Forms/Element/Email/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Email/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/ClearCest.php b/tests/integration/Forms/Element/Email/ClearCest.php index 0c9ff9cf071..cb421ae96f1 100644 --- a/tests/integration/Forms/Element/Email/ClearCest.php +++ b/tests/integration/Forms/Element/Email/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/ConstructCest.php b/tests/integration/Forms/Element/Email/ConstructCest.php index cf4f462776e..e11cfe591cb 100644 --- a/tests/integration/Forms/Element/Email/ConstructCest.php +++ b/tests/integration/Forms/Element/Email/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetAttributeCest.php b/tests/integration/Forms/Element/Email/GetAttributeCest.php index b6e39955bc7..1ddb3fd2017 100644 --- a/tests/integration/Forms/Element/Email/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Email/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetAttributesCest.php b/tests/integration/Forms/Element/Email/GetAttributesCest.php index 104de616a8d..4ea5bdb1ed0 100644 --- a/tests/integration/Forms/Element/Email/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Email/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetDefaultCest.php b/tests/integration/Forms/Element/Email/GetDefaultCest.php index 412f46977ef..b689d9bac65 100644 --- a/tests/integration/Forms/Element/Email/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Email/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetFiltersCest.php b/tests/integration/Forms/Element/Email/GetFiltersCest.php index 75c6ed41a05..cecc21cbc4d 100644 --- a/tests/integration/Forms/Element/Email/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Email/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetLabelCest.php b/tests/integration/Forms/Element/Email/GetLabelCest.php index 5bff630739a..02b776e8edd 100644 --- a/tests/integration/Forms/Element/Email/GetLabelCest.php +++ b/tests/integration/Forms/Element/Email/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetMessagesCest.php b/tests/integration/Forms/Element/Email/GetMessagesCest.php index 2c7cf94a8a1..a09201a7139 100644 --- a/tests/integration/Forms/Element/Email/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Email/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetSetFormCest.php b/tests/integration/Forms/Element/Email/GetSetFormCest.php index 8ffca3cb903..0d1d8f38bbc 100644 --- a/tests/integration/Forms/Element/Email/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Email/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; use Phalcon\Forms\Element\Email; diff --git a/tests/integration/Forms/Element/Email/GetSetNameCest.php b/tests/integration/Forms/Element/Email/GetSetNameCest.php index 3503c60ff74..22adaf6bcc6 100644 --- a/tests/integration/Forms/Element/Email/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Email/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; use Phalcon\Forms\Element\Email; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Email/GetUserOptionCest.php b/tests/integration/Forms/Element/Email/GetUserOptionCest.php index 074f57a5ab3..e53a6661a27 100644 --- a/tests/integration/Forms/Element/Email/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Email/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetUserOptionsCest.php b/tests/integration/Forms/Element/Email/GetUserOptionsCest.php index 1bcde4b68f1..fd88b78a8bb 100644 --- a/tests/integration/Forms/Element/Email/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Email/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetValidatorsCest.php b/tests/integration/Forms/Element/Email/GetValidatorsCest.php index 74a12807643..1df3efcc40e 100644 --- a/tests/integration/Forms/Element/Email/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Email/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/GetValueCest.php b/tests/integration/Forms/Element/Email/GetValueCest.php index d5fdc351f67..8ecb253d73c 100644 --- a/tests/integration/Forms/Element/Email/GetValueCest.php +++ b/tests/integration/Forms/Element/Email/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/HasMessagesCest.php b/tests/integration/Forms/Element/Email/HasMessagesCest.php index 16e62ca7711..0c15c340edf 100644 --- a/tests/integration/Forms/Element/Email/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Email/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/LabelCest.php b/tests/integration/Forms/Element/Email/LabelCest.php index c325163c010..00ece0a151a 100644 --- a/tests/integration/Forms/Element/Email/LabelCest.php +++ b/tests/integration/Forms/Element/Email/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/PrepareAttributesCest.php b/tests/integration/Forms/Element/Email/PrepareAttributesCest.php index 4b00e8843b5..5bd81a692f3 100644 --- a/tests/integration/Forms/Element/Email/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Email/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/RenderCest.php b/tests/integration/Forms/Element/Email/RenderCest.php index 8f85e75d792..a2cf41b68a4 100644 --- a/tests/integration/Forms/Element/Email/RenderCest.php +++ b/tests/integration/Forms/Element/Email/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; use Phalcon\Forms\Element\Email; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Email/SetAttributeCest.php b/tests/integration/Forms/Element/Email/SetAttributeCest.php index b502721e5ba..009dea7bffe 100644 --- a/tests/integration/Forms/Element/Email/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Email/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetAttributesCest.php b/tests/integration/Forms/Element/Email/SetAttributesCest.php index bb2a27d6308..b792aa4ca30 100644 --- a/tests/integration/Forms/Element/Email/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Email/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetDefaultCest.php b/tests/integration/Forms/Element/Email/SetDefaultCest.php index 2ad3fe06668..6177c835ef8 100644 --- a/tests/integration/Forms/Element/Email/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Email/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetFiltersCest.php b/tests/integration/Forms/Element/Email/SetFiltersCest.php index 5cdf50ba550..f55c08530b6 100644 --- a/tests/integration/Forms/Element/Email/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Email/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetLabelCest.php b/tests/integration/Forms/Element/Email/SetLabelCest.php index 93901e7a90a..9ea916f8e7f 100644 --- a/tests/integration/Forms/Element/Email/SetLabelCest.php +++ b/tests/integration/Forms/Element/Email/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetMessagesCest.php b/tests/integration/Forms/Element/Email/SetMessagesCest.php index 134628282eb..2a033d236e5 100644 --- a/tests/integration/Forms/Element/Email/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Email/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetUserOptionCest.php b/tests/integration/Forms/Element/Email/SetUserOptionCest.php index c5516959f8c..004f739e8d4 100644 --- a/tests/integration/Forms/Element/Email/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Email/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/SetUserOptionsCest.php b/tests/integration/Forms/Element/Email/SetUserOptionsCest.php index dd85a77e21d..92cf778264e 100644 --- a/tests/integration/Forms/Element/Email/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Email/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Email/ToStringCest.php b/tests/integration/Forms/Element/Email/ToStringCest.php index 1449a17b6ce..59fcecbf9df 100644 --- a/tests/integration/Forms/Element/Email/ToStringCest.php +++ b/tests/integration/Forms/Element/Email/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Email; +namespace Phalcon\Tests\Integration\Forms\Element\Email; use IntegrationTester; use Phalcon\Forms\Element\Email; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/File/AddFilterCest.php b/tests/integration/Forms/Element/File/AddFilterCest.php index c3ba0beee14..3bd04ebdf90 100644 --- a/tests/integration/Forms/Element/File/AddFilterCest.php +++ b/tests/integration/Forms/Element/File/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/AddValidatorCest.php b/tests/integration/Forms/Element/File/AddValidatorCest.php index e90185b22f5..af9acfd8c54 100644 --- a/tests/integration/Forms/Element/File/AddValidatorCest.php +++ b/tests/integration/Forms/Element/File/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/AddValidatorsCest.php b/tests/integration/Forms/Element/File/AddValidatorsCest.php index 0c3ea975962..e9ca6d48304 100644 --- a/tests/integration/Forms/Element/File/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/File/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/AppendMessageCest.php b/tests/integration/Forms/Element/File/AppendMessageCest.php index de4d7471b19..52304b434ca 100644 --- a/tests/integration/Forms/Element/File/AppendMessageCest.php +++ b/tests/integration/Forms/Element/File/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/ClearCest.php b/tests/integration/Forms/Element/File/ClearCest.php index 53cd6eb1a81..d248757873f 100644 --- a/tests/integration/Forms/Element/File/ClearCest.php +++ b/tests/integration/Forms/Element/File/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/ConstructCest.php b/tests/integration/Forms/Element/File/ConstructCest.php index 7a547d18fff..0d771bf3933 100644 --- a/tests/integration/Forms/Element/File/ConstructCest.php +++ b/tests/integration/Forms/Element/File/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetAttributeCest.php b/tests/integration/Forms/Element/File/GetAttributeCest.php index cfe55e1d501..6987296ba38 100644 --- a/tests/integration/Forms/Element/File/GetAttributeCest.php +++ b/tests/integration/Forms/Element/File/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetAttributesCest.php b/tests/integration/Forms/Element/File/GetAttributesCest.php index e8bd7385273..6ffa3d86eb2 100644 --- a/tests/integration/Forms/Element/File/GetAttributesCest.php +++ b/tests/integration/Forms/Element/File/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetDefaultCest.php b/tests/integration/Forms/Element/File/GetDefaultCest.php index db2fec4a2b5..6a1e58038e3 100644 --- a/tests/integration/Forms/Element/File/GetDefaultCest.php +++ b/tests/integration/Forms/Element/File/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetFiltersCest.php b/tests/integration/Forms/Element/File/GetFiltersCest.php index 1bad93ebaf8..8cf6cd4d8f6 100644 --- a/tests/integration/Forms/Element/File/GetFiltersCest.php +++ b/tests/integration/Forms/Element/File/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetLabelCest.php b/tests/integration/Forms/Element/File/GetLabelCest.php index 748f57d167e..6d963fd7123 100644 --- a/tests/integration/Forms/Element/File/GetLabelCest.php +++ b/tests/integration/Forms/Element/File/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetMessagesCest.php b/tests/integration/Forms/Element/File/GetMessagesCest.php index 0c7bd342902..8de672cc7a4 100644 --- a/tests/integration/Forms/Element/File/GetMessagesCest.php +++ b/tests/integration/Forms/Element/File/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetSetFormCest.php b/tests/integration/Forms/Element/File/GetSetFormCest.php index dd6beb7b188..4601157b005 100644 --- a/tests/integration/Forms/Element/File/GetSetFormCest.php +++ b/tests/integration/Forms/Element/File/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; use Phalcon\Forms\Element\File; diff --git a/tests/integration/Forms/Element/File/GetSetNameCest.php b/tests/integration/Forms/Element/File/GetSetNameCest.php index f710ebaf195..d6360f6d35e 100644 --- a/tests/integration/Forms/Element/File/GetSetNameCest.php +++ b/tests/integration/Forms/Element/File/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; use Phalcon\Forms\Element\File; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/File/GetUserOptionCest.php b/tests/integration/Forms/Element/File/GetUserOptionCest.php index 998bf0928e9..febd3481e63 100644 --- a/tests/integration/Forms/Element/File/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/File/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetUserOptionsCest.php b/tests/integration/Forms/Element/File/GetUserOptionsCest.php index 5ea5a43e24f..861ff59ee85 100644 --- a/tests/integration/Forms/Element/File/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/File/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetValidatorsCest.php b/tests/integration/Forms/Element/File/GetValidatorsCest.php index 1a3bfb815c8..462f67d9147 100644 --- a/tests/integration/Forms/Element/File/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/File/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/GetValueCest.php b/tests/integration/Forms/Element/File/GetValueCest.php index 93a263fc1b9..57ccfb85d2d 100644 --- a/tests/integration/Forms/Element/File/GetValueCest.php +++ b/tests/integration/Forms/Element/File/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/HasMessagesCest.php b/tests/integration/Forms/Element/File/HasMessagesCest.php index 1887d2375ac..9d62c7a1c35 100644 --- a/tests/integration/Forms/Element/File/HasMessagesCest.php +++ b/tests/integration/Forms/Element/File/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/LabelCest.php b/tests/integration/Forms/Element/File/LabelCest.php index d3b543892dd..e82b1372411 100644 --- a/tests/integration/Forms/Element/File/LabelCest.php +++ b/tests/integration/Forms/Element/File/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/PrepareAttributesCest.php b/tests/integration/Forms/Element/File/PrepareAttributesCest.php index 49cc909eb99..8e50a464a2b 100644 --- a/tests/integration/Forms/Element/File/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/File/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/RenderCest.php b/tests/integration/Forms/Element/File/RenderCest.php index dc6e0ee386a..15446f012cd 100644 --- a/tests/integration/Forms/Element/File/RenderCest.php +++ b/tests/integration/Forms/Element/File/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; use Phalcon\Forms\Element\File; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/File/SetAttributeCest.php b/tests/integration/Forms/Element/File/SetAttributeCest.php index f0ab21d2e09..530400e9ad0 100644 --- a/tests/integration/Forms/Element/File/SetAttributeCest.php +++ b/tests/integration/Forms/Element/File/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetAttributesCest.php b/tests/integration/Forms/Element/File/SetAttributesCest.php index 2360f58336c..0c6d3a78256 100644 --- a/tests/integration/Forms/Element/File/SetAttributesCest.php +++ b/tests/integration/Forms/Element/File/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetDefaultCest.php b/tests/integration/Forms/Element/File/SetDefaultCest.php index 6fd98ad904b..95065152945 100644 --- a/tests/integration/Forms/Element/File/SetDefaultCest.php +++ b/tests/integration/Forms/Element/File/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetFiltersCest.php b/tests/integration/Forms/Element/File/SetFiltersCest.php index 37acf42c20d..31516976f16 100644 --- a/tests/integration/Forms/Element/File/SetFiltersCest.php +++ b/tests/integration/Forms/Element/File/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetLabelCest.php b/tests/integration/Forms/Element/File/SetLabelCest.php index 096f18aaed7..f8bac765390 100644 --- a/tests/integration/Forms/Element/File/SetLabelCest.php +++ b/tests/integration/Forms/Element/File/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetMessagesCest.php b/tests/integration/Forms/Element/File/SetMessagesCest.php index 0b5d1000f6a..2b62d4c41a3 100644 --- a/tests/integration/Forms/Element/File/SetMessagesCest.php +++ b/tests/integration/Forms/Element/File/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetUserOptionCest.php b/tests/integration/Forms/Element/File/SetUserOptionCest.php index edd7a6d4b08..ebf22304acb 100644 --- a/tests/integration/Forms/Element/File/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/File/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/SetUserOptionsCest.php b/tests/integration/Forms/Element/File/SetUserOptionsCest.php index 1dfab4c8b6f..a41b6765535 100644 --- a/tests/integration/Forms/Element/File/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/File/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; diff --git a/tests/integration/Forms/Element/File/ToStringCest.php b/tests/integration/Forms/Element/File/ToStringCest.php index a8ca9945ffd..76901b70750 100644 --- a/tests/integration/Forms/Element/File/ToStringCest.php +++ b/tests/integration/Forms/Element/File/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\File; +namespace Phalcon\Tests\Integration\Forms\Element\File; use IntegrationTester; use Phalcon\Forms\Element\File; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Hidden/AddFilterCest.php b/tests/integration/Forms/Element/Hidden/AddFilterCest.php index 057d13d3ab8..3f418e3b780 100644 --- a/tests/integration/Forms/Element/Hidden/AddFilterCest.php +++ b/tests/integration/Forms/Element/Hidden/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/AddValidatorCest.php b/tests/integration/Forms/Element/Hidden/AddValidatorCest.php index 35fc41591d4..ee7540108c3 100644 --- a/tests/integration/Forms/Element/Hidden/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Hidden/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php b/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php index 949eb4d9bf2..1beb2d922ba 100644 --- a/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Hidden/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/AppendMessageCest.php b/tests/integration/Forms/Element/Hidden/AppendMessageCest.php index 4534def7296..3e5bad97848 100644 --- a/tests/integration/Forms/Element/Hidden/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Hidden/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/ClearCest.php b/tests/integration/Forms/Element/Hidden/ClearCest.php index bedb94b4612..584020be2ad 100644 --- a/tests/integration/Forms/Element/Hidden/ClearCest.php +++ b/tests/integration/Forms/Element/Hidden/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/ConstructCest.php b/tests/integration/Forms/Element/Hidden/ConstructCest.php index 9926755b62b..0ed0f6c0444 100644 --- a/tests/integration/Forms/Element/Hidden/ConstructCest.php +++ b/tests/integration/Forms/Element/Hidden/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetAttributeCest.php b/tests/integration/Forms/Element/Hidden/GetAttributeCest.php index 8d0fee54ebe..b898c4e3a5a 100644 --- a/tests/integration/Forms/Element/Hidden/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Hidden/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetAttributesCest.php b/tests/integration/Forms/Element/Hidden/GetAttributesCest.php index d9790862f21..586c4c3e29a 100644 --- a/tests/integration/Forms/Element/Hidden/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Hidden/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetDefaultCest.php b/tests/integration/Forms/Element/Hidden/GetDefaultCest.php index 1491d2999ed..8962ecd863a 100644 --- a/tests/integration/Forms/Element/Hidden/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Hidden/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetFiltersCest.php b/tests/integration/Forms/Element/Hidden/GetFiltersCest.php index b01ada34150..2d25fea264f 100644 --- a/tests/integration/Forms/Element/Hidden/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Hidden/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetLabelCest.php b/tests/integration/Forms/Element/Hidden/GetLabelCest.php index 3f3c3c4f3a0..5fd3fe34c9e 100644 --- a/tests/integration/Forms/Element/Hidden/GetLabelCest.php +++ b/tests/integration/Forms/Element/Hidden/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetMessagesCest.php b/tests/integration/Forms/Element/Hidden/GetMessagesCest.php index 256e735c2c9..a7f22ab0c4d 100644 --- a/tests/integration/Forms/Element/Hidden/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Hidden/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetSetFormCest.php b/tests/integration/Forms/Element/Hidden/GetSetFormCest.php index a6a7bcf19e9..6d0d354d32c 100644 --- a/tests/integration/Forms/Element/Hidden/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Hidden/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; use Phalcon\Forms\Element\Hidden; diff --git a/tests/integration/Forms/Element/Hidden/GetSetNameCest.php b/tests/integration/Forms/Element/Hidden/GetSetNameCest.php index 2509ec1ffd8..34643f60cb2 100644 --- a/tests/integration/Forms/Element/Hidden/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Hidden/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; use Phalcon\Forms\Element\Hidden; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php b/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php index 178b0e9368c..38635d1aa2e 100644 --- a/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Hidden/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php b/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php index 39107ae63c9..a9dc8508463 100644 --- a/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Hidden/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php b/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php index 00a1bcaadc5..0345f45f93f 100644 --- a/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Hidden/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/GetValueCest.php b/tests/integration/Forms/Element/Hidden/GetValueCest.php index bd3daa46322..b9da109da4e 100644 --- a/tests/integration/Forms/Element/Hidden/GetValueCest.php +++ b/tests/integration/Forms/Element/Hidden/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/HasMessagesCest.php b/tests/integration/Forms/Element/Hidden/HasMessagesCest.php index 8e0d4571a88..9e391abb0b2 100644 --- a/tests/integration/Forms/Element/Hidden/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Hidden/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/LabelCest.php b/tests/integration/Forms/Element/Hidden/LabelCest.php index 12c082e0689..0d5285bf8e9 100644 --- a/tests/integration/Forms/Element/Hidden/LabelCest.php +++ b/tests/integration/Forms/Element/Hidden/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php b/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php index a31d49258c4..d42ef66116d 100644 --- a/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Hidden/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/RenderCest.php b/tests/integration/Forms/Element/Hidden/RenderCest.php index 28ac271c2eb..54573c7043d 100644 --- a/tests/integration/Forms/Element/Hidden/RenderCest.php +++ b/tests/integration/Forms/Element/Hidden/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; use Phalcon\Forms\Element\Hidden; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Hidden/SetAttributeCest.php b/tests/integration/Forms/Element/Hidden/SetAttributeCest.php index 7b8bfbb3960..a2e314d99a5 100644 --- a/tests/integration/Forms/Element/Hidden/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Hidden/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetAttributesCest.php b/tests/integration/Forms/Element/Hidden/SetAttributesCest.php index 0881ab570c3..ec28a30bb0a 100644 --- a/tests/integration/Forms/Element/Hidden/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Hidden/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetDefaultCest.php b/tests/integration/Forms/Element/Hidden/SetDefaultCest.php index f28442085ef..5c61abb5ec2 100644 --- a/tests/integration/Forms/Element/Hidden/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Hidden/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetFiltersCest.php b/tests/integration/Forms/Element/Hidden/SetFiltersCest.php index 9a236cab5b1..19f3d01002f 100644 --- a/tests/integration/Forms/Element/Hidden/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Hidden/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetLabelCest.php b/tests/integration/Forms/Element/Hidden/SetLabelCest.php index 73ec449ba1a..58726d098c3 100644 --- a/tests/integration/Forms/Element/Hidden/SetLabelCest.php +++ b/tests/integration/Forms/Element/Hidden/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetMessagesCest.php b/tests/integration/Forms/Element/Hidden/SetMessagesCest.php index 414dcb52fc0..be71aa64610 100644 --- a/tests/integration/Forms/Element/Hidden/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Hidden/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php b/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php index b8646ef11f2..0df29e0a66e 100644 --- a/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Hidden/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php b/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php index d8d1000c197..a4322660e4c 100644 --- a/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Hidden/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Hidden/ToStringCest.php b/tests/integration/Forms/Element/Hidden/ToStringCest.php index 629c8f03d4d..11d4f4a35ba 100644 --- a/tests/integration/Forms/Element/Hidden/ToStringCest.php +++ b/tests/integration/Forms/Element/Hidden/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Hidden; +namespace Phalcon\Tests\Integration\Forms\Element\Hidden; use IntegrationTester; use Phalcon\Forms\Element\Hidden; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Numeric/AddFilterCest.php b/tests/integration/Forms/Element/Numeric/AddFilterCest.php index 0d935393709..d268adb2b0f 100644 --- a/tests/integration/Forms/Element/Numeric/AddFilterCest.php +++ b/tests/integration/Forms/Element/Numeric/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/AddValidatorCest.php b/tests/integration/Forms/Element/Numeric/AddValidatorCest.php index 74c23513e8c..ca6cc3bb9ee 100644 --- a/tests/integration/Forms/Element/Numeric/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Numeric/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php b/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php index b751bd64d7e..96ec20f4626 100644 --- a/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Numeric/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/AppendMessageCest.php b/tests/integration/Forms/Element/Numeric/AppendMessageCest.php index 311cc749d39..a952928c2a2 100644 --- a/tests/integration/Forms/Element/Numeric/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Numeric/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/ClearCest.php b/tests/integration/Forms/Element/Numeric/ClearCest.php index 94451202df1..aadc07b7b8e 100644 --- a/tests/integration/Forms/Element/Numeric/ClearCest.php +++ b/tests/integration/Forms/Element/Numeric/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/ConstructCest.php b/tests/integration/Forms/Element/Numeric/ConstructCest.php index c6cb9815bed..df4abcd85b1 100644 --- a/tests/integration/Forms/Element/Numeric/ConstructCest.php +++ b/tests/integration/Forms/Element/Numeric/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetAttributeCest.php b/tests/integration/Forms/Element/Numeric/GetAttributeCest.php index 324fff3dc1e..05d0afe471b 100644 --- a/tests/integration/Forms/Element/Numeric/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Numeric/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetAttributesCest.php b/tests/integration/Forms/Element/Numeric/GetAttributesCest.php index a7a7a1e2d80..03f78498a38 100644 --- a/tests/integration/Forms/Element/Numeric/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Numeric/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetDefaultCest.php b/tests/integration/Forms/Element/Numeric/GetDefaultCest.php index 60d40a218ea..6aaf95ac47c 100644 --- a/tests/integration/Forms/Element/Numeric/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Numeric/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetFiltersCest.php b/tests/integration/Forms/Element/Numeric/GetFiltersCest.php index a7ae8ff5444..b177d25ab48 100644 --- a/tests/integration/Forms/Element/Numeric/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Numeric/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetLabelCest.php b/tests/integration/Forms/Element/Numeric/GetLabelCest.php index f0b28430af1..1bc88d0c5b2 100644 --- a/tests/integration/Forms/Element/Numeric/GetLabelCest.php +++ b/tests/integration/Forms/Element/Numeric/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetMessagesCest.php b/tests/integration/Forms/Element/Numeric/GetMessagesCest.php index 78fded323cb..008a53ae713 100644 --- a/tests/integration/Forms/Element/Numeric/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Numeric/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetSetFormCest.php b/tests/integration/Forms/Element/Numeric/GetSetFormCest.php index d0bf03db1e0..d6433b981df 100644 --- a/tests/integration/Forms/Element/Numeric/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Numeric/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; use Phalcon\Forms\Element\Numeric; diff --git a/tests/integration/Forms/Element/Numeric/GetSetNameCest.php b/tests/integration/Forms/Element/Numeric/GetSetNameCest.php index 6590f48e347..5cd5218b220 100644 --- a/tests/integration/Forms/Element/Numeric/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Numeric/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; use Phalcon\Forms\Element\Numeric; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php b/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php index e8813008892..c7e997d8dcb 100644 --- a/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Numeric/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php b/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php index bf38593832e..4c933267746 100644 --- a/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Numeric/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php b/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php index a4361ec1ec6..6f9e5256855 100644 --- a/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Numeric/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/GetValueCest.php b/tests/integration/Forms/Element/Numeric/GetValueCest.php index 53928633171..e51781bcdd6 100644 --- a/tests/integration/Forms/Element/Numeric/GetValueCest.php +++ b/tests/integration/Forms/Element/Numeric/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/HasMessagesCest.php b/tests/integration/Forms/Element/Numeric/HasMessagesCest.php index 5e8999a72e8..8c8f8a99785 100644 --- a/tests/integration/Forms/Element/Numeric/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Numeric/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/LabelCest.php b/tests/integration/Forms/Element/Numeric/LabelCest.php index 3eaac4433b5..3ce380e4a86 100644 --- a/tests/integration/Forms/Element/Numeric/LabelCest.php +++ b/tests/integration/Forms/Element/Numeric/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php b/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php index 2282fbf1d2d..1f73c040909 100644 --- a/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Numeric/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/RenderCest.php b/tests/integration/Forms/Element/Numeric/RenderCest.php index ef62596262c..01a167089d4 100644 --- a/tests/integration/Forms/Element/Numeric/RenderCest.php +++ b/tests/integration/Forms/Element/Numeric/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; use Phalcon\Forms\Element\Numeric; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Numeric/SetAttributeCest.php b/tests/integration/Forms/Element/Numeric/SetAttributeCest.php index d71eba3f838..a8a2cef6f68 100644 --- a/tests/integration/Forms/Element/Numeric/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Numeric/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetAttributesCest.php b/tests/integration/Forms/Element/Numeric/SetAttributesCest.php index ed5918ed400..77637e52b15 100644 --- a/tests/integration/Forms/Element/Numeric/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Numeric/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetDefaultCest.php b/tests/integration/Forms/Element/Numeric/SetDefaultCest.php index cb388bbad7d..5be54d654cb 100644 --- a/tests/integration/Forms/Element/Numeric/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Numeric/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetFiltersCest.php b/tests/integration/Forms/Element/Numeric/SetFiltersCest.php index 0f8ee32a72d..d3806e3d08d 100644 --- a/tests/integration/Forms/Element/Numeric/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Numeric/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetLabelCest.php b/tests/integration/Forms/Element/Numeric/SetLabelCest.php index d507abdd6cd..580249ca38b 100644 --- a/tests/integration/Forms/Element/Numeric/SetLabelCest.php +++ b/tests/integration/Forms/Element/Numeric/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetMessagesCest.php b/tests/integration/Forms/Element/Numeric/SetMessagesCest.php index 85387001986..4fdf4e26cca 100644 --- a/tests/integration/Forms/Element/Numeric/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Numeric/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php b/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php index 9dce608ffeb..0d4adcb4c05 100644 --- a/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Numeric/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php b/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php index 63b0877b005..caf9b5e78b6 100644 --- a/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Numeric/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Numeric/ToStringCest.php b/tests/integration/Forms/Element/Numeric/ToStringCest.php index cd8141d6144..643d49b93a7 100644 --- a/tests/integration/Forms/Element/Numeric/ToStringCest.php +++ b/tests/integration/Forms/Element/Numeric/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Numeric; +namespace Phalcon\Tests\Integration\Forms\Element\Numeric; use IntegrationTester; use Phalcon\Forms\Element\Numeric; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Password/AddFilterCest.php b/tests/integration/Forms/Element/Password/AddFilterCest.php index cb06c8ec2ce..f95976f0b42 100644 --- a/tests/integration/Forms/Element/Password/AddFilterCest.php +++ b/tests/integration/Forms/Element/Password/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/AddValidatorCest.php b/tests/integration/Forms/Element/Password/AddValidatorCest.php index f9d857858f0..88e6feebb0b 100644 --- a/tests/integration/Forms/Element/Password/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Password/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/AddValidatorsCest.php b/tests/integration/Forms/Element/Password/AddValidatorsCest.php index 2e6655c82b8..b637976e68d 100644 --- a/tests/integration/Forms/Element/Password/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Password/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/AppendMessageCest.php b/tests/integration/Forms/Element/Password/AppendMessageCest.php index 77ed1200b27..ffdf904fa19 100644 --- a/tests/integration/Forms/Element/Password/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Password/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/ClearCest.php b/tests/integration/Forms/Element/Password/ClearCest.php index d88cf7cd628..872078440e8 100644 --- a/tests/integration/Forms/Element/Password/ClearCest.php +++ b/tests/integration/Forms/Element/Password/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/ConstructCest.php b/tests/integration/Forms/Element/Password/ConstructCest.php index 5945d89baa1..0a838b7c9f3 100644 --- a/tests/integration/Forms/Element/Password/ConstructCest.php +++ b/tests/integration/Forms/Element/Password/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetAttributeCest.php b/tests/integration/Forms/Element/Password/GetAttributeCest.php index 08d1d3a744f..1b0d4468e45 100644 --- a/tests/integration/Forms/Element/Password/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Password/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetAttributesCest.php b/tests/integration/Forms/Element/Password/GetAttributesCest.php index 792ef4d1eb6..9bcae9edd35 100644 --- a/tests/integration/Forms/Element/Password/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Password/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetDefaultCest.php b/tests/integration/Forms/Element/Password/GetDefaultCest.php index cda73c3287c..a965d6314b0 100644 --- a/tests/integration/Forms/Element/Password/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Password/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetFiltersCest.php b/tests/integration/Forms/Element/Password/GetFiltersCest.php index 37dac82ff5a..2154a58b8cf 100644 --- a/tests/integration/Forms/Element/Password/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Password/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetLabelCest.php b/tests/integration/Forms/Element/Password/GetLabelCest.php index cc11e439107..58bb085421e 100644 --- a/tests/integration/Forms/Element/Password/GetLabelCest.php +++ b/tests/integration/Forms/Element/Password/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetMessagesCest.php b/tests/integration/Forms/Element/Password/GetMessagesCest.php index 56a0ba26497..229aafa0e6a 100644 --- a/tests/integration/Forms/Element/Password/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Password/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetSetFormCest.php b/tests/integration/Forms/Element/Password/GetSetFormCest.php index b44aa3ce549..9c018c41fcf 100644 --- a/tests/integration/Forms/Element/Password/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Password/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; use Phalcon\Forms\Element\Password; diff --git a/tests/integration/Forms/Element/Password/GetSetNameCest.php b/tests/integration/Forms/Element/Password/GetSetNameCest.php index 97f9fecbdc1..c2dff691b1a 100644 --- a/tests/integration/Forms/Element/Password/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Password/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; use Phalcon\Forms\Element\Password; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Password/GetUserOptionCest.php b/tests/integration/Forms/Element/Password/GetUserOptionCest.php index 35b6ad3060d..23fd8680e15 100644 --- a/tests/integration/Forms/Element/Password/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Password/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetUserOptionsCest.php b/tests/integration/Forms/Element/Password/GetUserOptionsCest.php index 4f9ac2a3de6..11e00e3d2d1 100644 --- a/tests/integration/Forms/Element/Password/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Password/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetValidatorsCest.php b/tests/integration/Forms/Element/Password/GetValidatorsCest.php index 9ce09dfd4b0..8768f0ed116 100644 --- a/tests/integration/Forms/Element/Password/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Password/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/GetValueCest.php b/tests/integration/Forms/Element/Password/GetValueCest.php index f34edb2c124..eabb28d7d32 100644 --- a/tests/integration/Forms/Element/Password/GetValueCest.php +++ b/tests/integration/Forms/Element/Password/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/HasMessagesCest.php b/tests/integration/Forms/Element/Password/HasMessagesCest.php index 7e295ab1801..b9d28206fb5 100644 --- a/tests/integration/Forms/Element/Password/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Password/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/LabelCest.php b/tests/integration/Forms/Element/Password/LabelCest.php index 424c642d422..453f019f5fd 100644 --- a/tests/integration/Forms/Element/Password/LabelCest.php +++ b/tests/integration/Forms/Element/Password/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/PrepareAttributesCest.php b/tests/integration/Forms/Element/Password/PrepareAttributesCest.php index a3d72de8ea2..fd3e9011b0a 100644 --- a/tests/integration/Forms/Element/Password/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Password/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/RenderCest.php b/tests/integration/Forms/Element/Password/RenderCest.php index 3cb423832b6..5e1bc5e55b9 100644 --- a/tests/integration/Forms/Element/Password/RenderCest.php +++ b/tests/integration/Forms/Element/Password/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; use Phalcon\Forms\Element\Password; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Password/SetAttributeCest.php b/tests/integration/Forms/Element/Password/SetAttributeCest.php index f5f69073506..f26ef7f69e9 100644 --- a/tests/integration/Forms/Element/Password/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Password/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetAttributesCest.php b/tests/integration/Forms/Element/Password/SetAttributesCest.php index 9e9806a7a4f..99fdc095afe 100644 --- a/tests/integration/Forms/Element/Password/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Password/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetDefaultCest.php b/tests/integration/Forms/Element/Password/SetDefaultCest.php index 3114c9caa4e..b52b0f58543 100644 --- a/tests/integration/Forms/Element/Password/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Password/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetFiltersCest.php b/tests/integration/Forms/Element/Password/SetFiltersCest.php index 711def4ff61..aab035ed70f 100644 --- a/tests/integration/Forms/Element/Password/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Password/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetLabelCest.php b/tests/integration/Forms/Element/Password/SetLabelCest.php index 1950e8643ae..3aeeee66801 100644 --- a/tests/integration/Forms/Element/Password/SetLabelCest.php +++ b/tests/integration/Forms/Element/Password/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetMessagesCest.php b/tests/integration/Forms/Element/Password/SetMessagesCest.php index a497aa7d6ef..ee210ee8155 100644 --- a/tests/integration/Forms/Element/Password/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Password/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetUserOptionCest.php b/tests/integration/Forms/Element/Password/SetUserOptionCest.php index 18256c7889d..f841b8972d7 100644 --- a/tests/integration/Forms/Element/Password/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Password/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/SetUserOptionsCest.php b/tests/integration/Forms/Element/Password/SetUserOptionsCest.php index b9ca1a54a85..691cd123308 100644 --- a/tests/integration/Forms/Element/Password/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Password/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Password/ToStringCest.php b/tests/integration/Forms/Element/Password/ToStringCest.php index de926f57e7c..c49776b6de0 100644 --- a/tests/integration/Forms/Element/Password/ToStringCest.php +++ b/tests/integration/Forms/Element/Password/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Password; +namespace Phalcon\Tests\Integration\Forms\Element\Password; use IntegrationTester; use Phalcon\Forms\Element\Password; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Radio/AddFilterCest.php b/tests/integration/Forms/Element/Radio/AddFilterCest.php index 78c61778247..201b115c504 100644 --- a/tests/integration/Forms/Element/Radio/AddFilterCest.php +++ b/tests/integration/Forms/Element/Radio/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/AddValidatorCest.php b/tests/integration/Forms/Element/Radio/AddValidatorCest.php index 924d126e2bc..439b8754461 100644 --- a/tests/integration/Forms/Element/Radio/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Radio/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/AddValidatorsCest.php b/tests/integration/Forms/Element/Radio/AddValidatorsCest.php index 4c4dcc4ed62..450632c7e71 100644 --- a/tests/integration/Forms/Element/Radio/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Radio/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/AppendMessageCest.php b/tests/integration/Forms/Element/Radio/AppendMessageCest.php index e41ae4fe249..aa24bba4ff4 100644 --- a/tests/integration/Forms/Element/Radio/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Radio/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/ClearCest.php b/tests/integration/Forms/Element/Radio/ClearCest.php index d137e8b8ef9..a7790791a33 100644 --- a/tests/integration/Forms/Element/Radio/ClearCest.php +++ b/tests/integration/Forms/Element/Radio/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/ConstructCest.php b/tests/integration/Forms/Element/Radio/ConstructCest.php index 5682671c6d1..9a79f66aaaf 100644 --- a/tests/integration/Forms/Element/Radio/ConstructCest.php +++ b/tests/integration/Forms/Element/Radio/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetAttributeCest.php b/tests/integration/Forms/Element/Radio/GetAttributeCest.php index 846b9dccc3d..af871c18ff9 100644 --- a/tests/integration/Forms/Element/Radio/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Radio/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetAttributesCest.php b/tests/integration/Forms/Element/Radio/GetAttributesCest.php index 410e4e48210..07b3284b232 100644 --- a/tests/integration/Forms/Element/Radio/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Radio/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetDefaultCest.php b/tests/integration/Forms/Element/Radio/GetDefaultCest.php index 5b8cdf4e4f1..fb26c5ebb05 100644 --- a/tests/integration/Forms/Element/Radio/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Radio/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetFiltersCest.php b/tests/integration/Forms/Element/Radio/GetFiltersCest.php index ca71227475f..b6dcc5316b6 100644 --- a/tests/integration/Forms/Element/Radio/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Radio/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetLabelCest.php b/tests/integration/Forms/Element/Radio/GetLabelCest.php index 495b4393555..c6808b996fa 100644 --- a/tests/integration/Forms/Element/Radio/GetLabelCest.php +++ b/tests/integration/Forms/Element/Radio/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetMessagesCest.php b/tests/integration/Forms/Element/Radio/GetMessagesCest.php index f560d6b917f..825851185d2 100644 --- a/tests/integration/Forms/Element/Radio/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Radio/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetSetFormCest.php b/tests/integration/Forms/Element/Radio/GetSetFormCest.php index 785dbbce531..9a5568df224 100644 --- a/tests/integration/Forms/Element/Radio/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Radio/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; use Phalcon\Forms\Element\Radio; diff --git a/tests/integration/Forms/Element/Radio/GetSetNameCest.php b/tests/integration/Forms/Element/Radio/GetSetNameCest.php index 1035dc48242..401c50d1ddf 100644 --- a/tests/integration/Forms/Element/Radio/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Radio/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; use Phalcon\Forms\Element\Radio; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Radio/GetUserOptionCest.php b/tests/integration/Forms/Element/Radio/GetUserOptionCest.php index 88b36a23c3e..b5bf3897a19 100644 --- a/tests/integration/Forms/Element/Radio/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Radio/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php b/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php index 41a7e067509..e175f87fc48 100644 --- a/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Radio/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetValidatorsCest.php b/tests/integration/Forms/Element/Radio/GetValidatorsCest.php index 2568aec90c4..39614376cf5 100644 --- a/tests/integration/Forms/Element/Radio/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Radio/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/GetValueCest.php b/tests/integration/Forms/Element/Radio/GetValueCest.php index 16bd10829eb..4801363c7ac 100644 --- a/tests/integration/Forms/Element/Radio/GetValueCest.php +++ b/tests/integration/Forms/Element/Radio/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/HasMessagesCest.php b/tests/integration/Forms/Element/Radio/HasMessagesCest.php index 8c87ff3196b..8eb8fa2d61e 100644 --- a/tests/integration/Forms/Element/Radio/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Radio/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/LabelCest.php b/tests/integration/Forms/Element/Radio/LabelCest.php index 2c1c67453ce..c9320566707 100644 --- a/tests/integration/Forms/Element/Radio/LabelCest.php +++ b/tests/integration/Forms/Element/Radio/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php b/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php index 2583aa40c5b..40c7531d09e 100644 --- a/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Radio/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/RenderCest.php b/tests/integration/Forms/Element/Radio/RenderCest.php index 37515e61970..5f14a8a9bdc 100644 --- a/tests/integration/Forms/Element/Radio/RenderCest.php +++ b/tests/integration/Forms/Element/Radio/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; use Phalcon\Forms\Element\Radio; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Radio/SetAttributeCest.php b/tests/integration/Forms/Element/Radio/SetAttributeCest.php index d37d07e7693..86e166c30f1 100644 --- a/tests/integration/Forms/Element/Radio/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Radio/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetAttributesCest.php b/tests/integration/Forms/Element/Radio/SetAttributesCest.php index 96f822ed5a5..87442eb1b9e 100644 --- a/tests/integration/Forms/Element/Radio/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Radio/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetDefaultCest.php b/tests/integration/Forms/Element/Radio/SetDefaultCest.php index 17f36d3a3e7..5d57a085979 100644 --- a/tests/integration/Forms/Element/Radio/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Radio/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetFiltersCest.php b/tests/integration/Forms/Element/Radio/SetFiltersCest.php index accc1ebc010..2686346dbe9 100644 --- a/tests/integration/Forms/Element/Radio/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Radio/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetLabelCest.php b/tests/integration/Forms/Element/Radio/SetLabelCest.php index 5db4b3e1e0f..fd1d253aca3 100644 --- a/tests/integration/Forms/Element/Radio/SetLabelCest.php +++ b/tests/integration/Forms/Element/Radio/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetMessagesCest.php b/tests/integration/Forms/Element/Radio/SetMessagesCest.php index e10436efe20..9fb448bbb5e 100644 --- a/tests/integration/Forms/Element/Radio/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Radio/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetUserOptionCest.php b/tests/integration/Forms/Element/Radio/SetUserOptionCest.php index 727356b40f7..e49233b6fae 100644 --- a/tests/integration/Forms/Element/Radio/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Radio/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php b/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php index 369f4914d6b..c8c086b538d 100644 --- a/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Radio/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Radio/ToStringCest.php b/tests/integration/Forms/Element/Radio/ToStringCest.php index 92744bd502f..e3fd3ec6230 100644 --- a/tests/integration/Forms/Element/Radio/ToStringCest.php +++ b/tests/integration/Forms/Element/Radio/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Radio; +namespace Phalcon\Tests\Integration\Forms\Element\Radio; use IntegrationTester; use Phalcon\Forms\Element\Radio; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Select/AddFilterCest.php b/tests/integration/Forms/Element/Select/AddFilterCest.php index f7bd639771d..1eb905a92a2 100644 --- a/tests/integration/Forms/Element/Select/AddFilterCest.php +++ b/tests/integration/Forms/Element/Select/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/AddOptionCest.php b/tests/integration/Forms/Element/Select/AddOptionCest.php index d340a9a1310..373dfcfc0a5 100644 --- a/tests/integration/Forms/Element/Select/AddOptionCest.php +++ b/tests/integration/Forms/Element/Select/AddOptionCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; use Phalcon\Forms\Element\Select; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class AddOptionCest { diff --git a/tests/integration/Forms/Element/Select/AddValidatorCest.php b/tests/integration/Forms/Element/Select/AddValidatorCest.php index a13e21c703f..3b6b2ba63fc 100644 --- a/tests/integration/Forms/Element/Select/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Select/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/AddValidatorsCest.php b/tests/integration/Forms/Element/Select/AddValidatorsCest.php index f7c4ca8abe0..9c0ed0f3bcb 100644 --- a/tests/integration/Forms/Element/Select/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Select/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/AppendMessageCest.php b/tests/integration/Forms/Element/Select/AppendMessageCest.php index c3e4a0f6fb9..180ee7f2938 100644 --- a/tests/integration/Forms/Element/Select/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Select/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/ClearCest.php b/tests/integration/Forms/Element/Select/ClearCest.php index 25d0536939f..4a6384fb111 100644 --- a/tests/integration/Forms/Element/Select/ClearCest.php +++ b/tests/integration/Forms/Element/Select/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/ConstructCest.php b/tests/integration/Forms/Element/Select/ConstructCest.php index d899ba373fe..cbf3f00ca34 100644 --- a/tests/integration/Forms/Element/Select/ConstructCest.php +++ b/tests/integration/Forms/Element/Select/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetAttributeCest.php b/tests/integration/Forms/Element/Select/GetAttributeCest.php index 0ad321efc49..21bb82b2d7c 100644 --- a/tests/integration/Forms/Element/Select/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Select/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetAttributesCest.php b/tests/integration/Forms/Element/Select/GetAttributesCest.php index 44dd9bf84ee..dec998bb19e 100644 --- a/tests/integration/Forms/Element/Select/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Select/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetDefaultCest.php b/tests/integration/Forms/Element/Select/GetDefaultCest.php index 43eac92956a..34ddb6804fa 100644 --- a/tests/integration/Forms/Element/Select/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Select/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetFiltersCest.php b/tests/integration/Forms/Element/Select/GetFiltersCest.php index 6ce81fee2ad..e1aa6e6105b 100644 --- a/tests/integration/Forms/Element/Select/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Select/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetLabelCest.php b/tests/integration/Forms/Element/Select/GetLabelCest.php index 26fd668c2f8..2c03e02f67b 100644 --- a/tests/integration/Forms/Element/Select/GetLabelCest.php +++ b/tests/integration/Forms/Element/Select/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetMessagesCest.php b/tests/integration/Forms/Element/Select/GetMessagesCest.php index 48b064e1420..551f26cea0a 100644 --- a/tests/integration/Forms/Element/Select/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Select/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetOptionsCest.php b/tests/integration/Forms/Element/Select/GetOptionsCest.php index f2f6729c15f..cc349028f16 100644 --- a/tests/integration/Forms/Element/Select/GetOptionsCest.php +++ b/tests/integration/Forms/Element/Select/GetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetSetFormCest.php b/tests/integration/Forms/Element/Select/GetSetFormCest.php index 30c69226836..d7b88ba5707 100644 --- a/tests/integration/Forms/Element/Select/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Select/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; use Phalcon\Forms\Element\Select; diff --git a/tests/integration/Forms/Element/Select/GetSetNameCest.php b/tests/integration/Forms/Element/Select/GetSetNameCest.php index c0c4053bfa5..a4dd0189337 100644 --- a/tests/integration/Forms/Element/Select/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Select/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; use Phalcon\Forms\Element\Select; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Select/GetUserOptionCest.php b/tests/integration/Forms/Element/Select/GetUserOptionCest.php index 8299fb58b9b..b469e97d48b 100644 --- a/tests/integration/Forms/Element/Select/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Select/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetUserOptionsCest.php b/tests/integration/Forms/Element/Select/GetUserOptionsCest.php index e033ebc7936..694aa3a9380 100644 --- a/tests/integration/Forms/Element/Select/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Select/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetValidatorsCest.php b/tests/integration/Forms/Element/Select/GetValidatorsCest.php index be4debbaaed..51ad5a50609 100644 --- a/tests/integration/Forms/Element/Select/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Select/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/GetValueCest.php b/tests/integration/Forms/Element/Select/GetValueCest.php index 8bf6772b17b..28769be6501 100644 --- a/tests/integration/Forms/Element/Select/GetValueCest.php +++ b/tests/integration/Forms/Element/Select/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/HasMessagesCest.php b/tests/integration/Forms/Element/Select/HasMessagesCest.php index 195eecc7571..15f1dc2703e 100644 --- a/tests/integration/Forms/Element/Select/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Select/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/LabelCest.php b/tests/integration/Forms/Element/Select/LabelCest.php index 16c42b9a4ed..0b62b96a346 100644 --- a/tests/integration/Forms/Element/Select/LabelCest.php +++ b/tests/integration/Forms/Element/Select/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/PrepareAttributesCest.php b/tests/integration/Forms/Element/Select/PrepareAttributesCest.php index 6ae0c5239de..a173c3d1549 100644 --- a/tests/integration/Forms/Element/Select/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Select/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/RenderCest.php b/tests/integration/Forms/Element/Select/RenderCest.php index e8888de5c5c..749e4ce0faa 100644 --- a/tests/integration/Forms/Element/Select/RenderCest.php +++ b/tests/integration/Forms/Element/Select/RenderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetAttributeCest.php b/tests/integration/Forms/Element/Select/SetAttributeCest.php index 57e13ed9992..bd7782a42e2 100644 --- a/tests/integration/Forms/Element/Select/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Select/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetAttributesCest.php b/tests/integration/Forms/Element/Select/SetAttributesCest.php index 87dc0796e0e..eb50fa0199e 100644 --- a/tests/integration/Forms/Element/Select/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Select/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetDefaultCest.php b/tests/integration/Forms/Element/Select/SetDefaultCest.php index 1ce50fc44d8..9a559eb0e45 100644 --- a/tests/integration/Forms/Element/Select/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Select/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetFiltersCest.php b/tests/integration/Forms/Element/Select/SetFiltersCest.php index e7208c87c59..0452ce065a4 100644 --- a/tests/integration/Forms/Element/Select/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Select/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetLabelCest.php b/tests/integration/Forms/Element/Select/SetLabelCest.php index be63adf3a13..8f4a3ee48fa 100644 --- a/tests/integration/Forms/Element/Select/SetLabelCest.php +++ b/tests/integration/Forms/Element/Select/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetMessagesCest.php b/tests/integration/Forms/Element/Select/SetMessagesCest.php index bf62f9f1a27..ae2e0c52df3 100644 --- a/tests/integration/Forms/Element/Select/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Select/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetOptionsCest.php b/tests/integration/Forms/Element/Select/SetOptionsCest.php index 0d6e1dab783..c731e92c602 100644 --- a/tests/integration/Forms/Element/Select/SetOptionsCest.php +++ b/tests/integration/Forms/Element/Select/SetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetUserOptionCest.php b/tests/integration/Forms/Element/Select/SetUserOptionCest.php index 0424d1e043a..b9770b35e5d 100644 --- a/tests/integration/Forms/Element/Select/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Select/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/SetUserOptionsCest.php b/tests/integration/Forms/Element/Select/SetUserOptionsCest.php index 4104c582c0f..7181b68101d 100644 --- a/tests/integration/Forms/Element/Select/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Select/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Select/ToStringCest.php b/tests/integration/Forms/Element/Select/ToStringCest.php index 34d928d3089..79b7b3ffb25 100644 --- a/tests/integration/Forms/Element/Select/ToStringCest.php +++ b/tests/integration/Forms/Element/Select/ToStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Select; +namespace Phalcon\Tests\Integration\Forms\Element\Select; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/AddFilterCest.php b/tests/integration/Forms/Element/Submit/AddFilterCest.php index 85f9469f0da..951fa3dff9b 100644 --- a/tests/integration/Forms/Element/Submit/AddFilterCest.php +++ b/tests/integration/Forms/Element/Submit/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/AddValidatorCest.php b/tests/integration/Forms/Element/Submit/AddValidatorCest.php index c4121693f4d..3290cb71f51 100644 --- a/tests/integration/Forms/Element/Submit/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Submit/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/AddValidatorsCest.php b/tests/integration/Forms/Element/Submit/AddValidatorsCest.php index e8b7bf973d7..58bddb2f760 100644 --- a/tests/integration/Forms/Element/Submit/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Submit/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/AppendMessageCest.php b/tests/integration/Forms/Element/Submit/AppendMessageCest.php index 7dab02722f9..d2ac2fdd018 100644 --- a/tests/integration/Forms/Element/Submit/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Submit/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/ClearCest.php b/tests/integration/Forms/Element/Submit/ClearCest.php index be512e9e1f6..c46efa0caa3 100644 --- a/tests/integration/Forms/Element/Submit/ClearCest.php +++ b/tests/integration/Forms/Element/Submit/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/ConstructCest.php b/tests/integration/Forms/Element/Submit/ConstructCest.php index 30c5b9dd83a..820509cf265 100644 --- a/tests/integration/Forms/Element/Submit/ConstructCest.php +++ b/tests/integration/Forms/Element/Submit/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetAttributeCest.php b/tests/integration/Forms/Element/Submit/GetAttributeCest.php index 1f1bf8af171..8729909801c 100644 --- a/tests/integration/Forms/Element/Submit/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Submit/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetAttributesCest.php b/tests/integration/Forms/Element/Submit/GetAttributesCest.php index d2647db4ec6..11f488771e5 100644 --- a/tests/integration/Forms/Element/Submit/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Submit/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetDefaultCest.php b/tests/integration/Forms/Element/Submit/GetDefaultCest.php index 5ce31b31ddd..d7e174559cf 100644 --- a/tests/integration/Forms/Element/Submit/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Submit/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetFiltersCest.php b/tests/integration/Forms/Element/Submit/GetFiltersCest.php index 1c82e3277bd..a3dd2bd7918 100644 --- a/tests/integration/Forms/Element/Submit/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Submit/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetLabelCest.php b/tests/integration/Forms/Element/Submit/GetLabelCest.php index 1cefb518151..6a6782080ba 100644 --- a/tests/integration/Forms/Element/Submit/GetLabelCest.php +++ b/tests/integration/Forms/Element/Submit/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetMessagesCest.php b/tests/integration/Forms/Element/Submit/GetMessagesCest.php index 0acd6954593..93958c1a408 100644 --- a/tests/integration/Forms/Element/Submit/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Submit/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetSetFormCest.php b/tests/integration/Forms/Element/Submit/GetSetFormCest.php index 7c7be9eb3c2..90a2c38dd3b 100644 --- a/tests/integration/Forms/Element/Submit/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Submit/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; use Phalcon\Forms\Element\Submit; diff --git a/tests/integration/Forms/Element/Submit/GetSetNameCest.php b/tests/integration/Forms/Element/Submit/GetSetNameCest.php index 82f230a17f8..608c2f6dbab 100644 --- a/tests/integration/Forms/Element/Submit/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Submit/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; use Phalcon\Forms\Element\Submit; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Submit/GetUserOptionCest.php b/tests/integration/Forms/Element/Submit/GetUserOptionCest.php index fb54543aafc..f88980d08d1 100644 --- a/tests/integration/Forms/Element/Submit/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Submit/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php b/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php index 86590c2ec33..c32c3a8aa5b 100644 --- a/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Submit/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetValidatorsCest.php b/tests/integration/Forms/Element/Submit/GetValidatorsCest.php index 6d9f21ab635..cdeb2f45b9e 100644 --- a/tests/integration/Forms/Element/Submit/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Submit/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/GetValueCest.php b/tests/integration/Forms/Element/Submit/GetValueCest.php index c60b5fb1b97..f00f7da1f3d 100644 --- a/tests/integration/Forms/Element/Submit/GetValueCest.php +++ b/tests/integration/Forms/Element/Submit/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/HasMessagesCest.php b/tests/integration/Forms/Element/Submit/HasMessagesCest.php index d6ecacc28b7..2b8b4422adb 100644 --- a/tests/integration/Forms/Element/Submit/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Submit/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/LabelCest.php b/tests/integration/Forms/Element/Submit/LabelCest.php index 9a2be82a6d7..92ec011fc7c 100644 --- a/tests/integration/Forms/Element/Submit/LabelCest.php +++ b/tests/integration/Forms/Element/Submit/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php b/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php index c15b1d45181..6f66ae698fb 100644 --- a/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Submit/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/RenderCest.php b/tests/integration/Forms/Element/Submit/RenderCest.php index 782cea22a2b..34cdf9f7044 100644 --- a/tests/integration/Forms/Element/Submit/RenderCest.php +++ b/tests/integration/Forms/Element/Submit/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; use Phalcon\Forms\Element\Submit; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Submit/SetAttributeCest.php b/tests/integration/Forms/Element/Submit/SetAttributeCest.php index 708b6f3ca19..61be9b00a97 100644 --- a/tests/integration/Forms/Element/Submit/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Submit/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetAttributesCest.php b/tests/integration/Forms/Element/Submit/SetAttributesCest.php index 3cb5ae331f8..c6b787fe514 100644 --- a/tests/integration/Forms/Element/Submit/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Submit/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetDefaultCest.php b/tests/integration/Forms/Element/Submit/SetDefaultCest.php index 24a1edd8850..a6391a17d8f 100644 --- a/tests/integration/Forms/Element/Submit/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Submit/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetFiltersCest.php b/tests/integration/Forms/Element/Submit/SetFiltersCest.php index 2821b0b2baa..c172f2c68c1 100644 --- a/tests/integration/Forms/Element/Submit/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Submit/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetLabelCest.php b/tests/integration/Forms/Element/Submit/SetLabelCest.php index 73cbd194e42..40422858043 100644 --- a/tests/integration/Forms/Element/Submit/SetLabelCest.php +++ b/tests/integration/Forms/Element/Submit/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetMessagesCest.php b/tests/integration/Forms/Element/Submit/SetMessagesCest.php index e022ab3e8bb..7970f426da6 100644 --- a/tests/integration/Forms/Element/Submit/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Submit/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetUserOptionCest.php b/tests/integration/Forms/Element/Submit/SetUserOptionCest.php index bc454e5b5dd..f00951d0d5b 100644 --- a/tests/integration/Forms/Element/Submit/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Submit/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php b/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php index aff23c93c71..cb65137b454 100644 --- a/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Submit/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Submit/ToStringCest.php b/tests/integration/Forms/Element/Submit/ToStringCest.php index 6940c68a3da..4837e013cce 100644 --- a/tests/integration/Forms/Element/Submit/ToStringCest.php +++ b/tests/integration/Forms/Element/Submit/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Submit; +namespace Phalcon\Tests\Integration\Forms\Element\Submit; use IntegrationTester; use Phalcon\Forms\Element\Submit; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/Text/AddFilterCest.php b/tests/integration/Forms/Element/Text/AddFilterCest.php index 391b579d447..a5e7612d1b9 100644 --- a/tests/integration/Forms/Element/Text/AddFilterCest.php +++ b/tests/integration/Forms/Element/Text/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/AddValidatorCest.php b/tests/integration/Forms/Element/Text/AddValidatorCest.php index 7a6fe2f8acd..3143eba3155 100644 --- a/tests/integration/Forms/Element/Text/AddValidatorCest.php +++ b/tests/integration/Forms/Element/Text/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/AddValidatorsCest.php b/tests/integration/Forms/Element/Text/AddValidatorsCest.php index 7cee2371df4..27f519d2e36 100644 --- a/tests/integration/Forms/Element/Text/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/Text/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/AppendMessageCest.php b/tests/integration/Forms/Element/Text/AppendMessageCest.php index 48c6976321f..8fda904cb22 100644 --- a/tests/integration/Forms/Element/Text/AppendMessageCest.php +++ b/tests/integration/Forms/Element/Text/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/ClearCest.php b/tests/integration/Forms/Element/Text/ClearCest.php index 8320c5f0b26..6304e3ec38e 100644 --- a/tests/integration/Forms/Element/Text/ClearCest.php +++ b/tests/integration/Forms/Element/Text/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/ConstructCest.php b/tests/integration/Forms/Element/Text/ConstructCest.php index e4c4628d2d2..16a76dc343b 100644 --- a/tests/integration/Forms/Element/Text/ConstructCest.php +++ b/tests/integration/Forms/Element/Text/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetAttributeCest.php b/tests/integration/Forms/Element/Text/GetAttributeCest.php index 28fd1d973b5..1714c67e107 100644 --- a/tests/integration/Forms/Element/Text/GetAttributeCest.php +++ b/tests/integration/Forms/Element/Text/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetAttributesCest.php b/tests/integration/Forms/Element/Text/GetAttributesCest.php index acc566374c1..4f53810ab49 100644 --- a/tests/integration/Forms/Element/Text/GetAttributesCest.php +++ b/tests/integration/Forms/Element/Text/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetDefaultCest.php b/tests/integration/Forms/Element/Text/GetDefaultCest.php index 99d842ad9a6..83a0771f085 100644 --- a/tests/integration/Forms/Element/Text/GetDefaultCest.php +++ b/tests/integration/Forms/Element/Text/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetFiltersCest.php b/tests/integration/Forms/Element/Text/GetFiltersCest.php index 46e5d169a36..031c087f195 100644 --- a/tests/integration/Forms/Element/Text/GetFiltersCest.php +++ b/tests/integration/Forms/Element/Text/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetLabelCest.php b/tests/integration/Forms/Element/Text/GetLabelCest.php index f7f21dadcfe..5d01d169967 100644 --- a/tests/integration/Forms/Element/Text/GetLabelCest.php +++ b/tests/integration/Forms/Element/Text/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetMessagesCest.php b/tests/integration/Forms/Element/Text/GetMessagesCest.php index 630e62c75ef..7cf762704b0 100644 --- a/tests/integration/Forms/Element/Text/GetMessagesCest.php +++ b/tests/integration/Forms/Element/Text/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetSetFormCest.php b/tests/integration/Forms/Element/Text/GetSetFormCest.php index 3df13754dcb..007de96ba6d 100644 --- a/tests/integration/Forms/Element/Text/GetSetFormCest.php +++ b/tests/integration/Forms/Element/Text/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Element/Text/GetSetNameCest.php b/tests/integration/Forms/Element/Text/GetSetNameCest.php index 550b1f165d9..808abac3735 100644 --- a/tests/integration/Forms/Element/Text/GetSetNameCest.php +++ b/tests/integration/Forms/Element/Text/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; use Phalcon\Forms\Element\Text; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/Text/GetUserOptionCest.php b/tests/integration/Forms/Element/Text/GetUserOptionCest.php index c8de8dcb1c8..d8e587824d4 100644 --- a/tests/integration/Forms/Element/Text/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/Text/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetUserOptionsCest.php b/tests/integration/Forms/Element/Text/GetUserOptionsCest.php index 06644410abb..2200cf05779 100644 --- a/tests/integration/Forms/Element/Text/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Text/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetValidatorsCest.php b/tests/integration/Forms/Element/Text/GetValidatorsCest.php index b7b5aaeb14a..6e8ad26678c 100644 --- a/tests/integration/Forms/Element/Text/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/Text/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/GetValueCest.php b/tests/integration/Forms/Element/Text/GetValueCest.php index 034a4f76bba..2ded191eb11 100644 --- a/tests/integration/Forms/Element/Text/GetValueCest.php +++ b/tests/integration/Forms/Element/Text/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/HasMessagesCest.php b/tests/integration/Forms/Element/Text/HasMessagesCest.php index ccb0c0c31bf..abc0bc35008 100644 --- a/tests/integration/Forms/Element/Text/HasMessagesCest.php +++ b/tests/integration/Forms/Element/Text/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/LabelCest.php b/tests/integration/Forms/Element/Text/LabelCest.php index b31e752cb62..fe2a4f60202 100644 --- a/tests/integration/Forms/Element/Text/LabelCest.php +++ b/tests/integration/Forms/Element/Text/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/PrepareAttributesCest.php b/tests/integration/Forms/Element/Text/PrepareAttributesCest.php index de0bd30090b..d29da807628 100644 --- a/tests/integration/Forms/Element/Text/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/Text/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/RenderCest.php b/tests/integration/Forms/Element/Text/RenderCest.php index 18b186a802f..2a1718f8745 100644 --- a/tests/integration/Forms/Element/Text/RenderCest.php +++ b/tests/integration/Forms/Element/Text/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/Text/SetAttributeCest.php b/tests/integration/Forms/Element/Text/SetAttributeCest.php index e816cc438ce..9db0d6a5a10 100644 --- a/tests/integration/Forms/Element/Text/SetAttributeCest.php +++ b/tests/integration/Forms/Element/Text/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetAttributesCest.php b/tests/integration/Forms/Element/Text/SetAttributesCest.php index 6e876c97345..8b7c2362e17 100644 --- a/tests/integration/Forms/Element/Text/SetAttributesCest.php +++ b/tests/integration/Forms/Element/Text/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetDefaultCest.php b/tests/integration/Forms/Element/Text/SetDefaultCest.php index 51803df252f..2cbf3ba7507 100644 --- a/tests/integration/Forms/Element/Text/SetDefaultCest.php +++ b/tests/integration/Forms/Element/Text/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetFiltersCest.php b/tests/integration/Forms/Element/Text/SetFiltersCest.php index e2682bfc8c1..d6043a77a3f 100644 --- a/tests/integration/Forms/Element/Text/SetFiltersCest.php +++ b/tests/integration/Forms/Element/Text/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetLabelCest.php b/tests/integration/Forms/Element/Text/SetLabelCest.php index 99bf21823c6..57cdb830583 100644 --- a/tests/integration/Forms/Element/Text/SetLabelCest.php +++ b/tests/integration/Forms/Element/Text/SetLabelCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class SetLabelCest { diff --git a/tests/integration/Forms/Element/Text/SetMessagesCest.php b/tests/integration/Forms/Element/Text/SetMessagesCest.php index 16e730c3c33..7d1030f1556 100644 --- a/tests/integration/Forms/Element/Text/SetMessagesCest.php +++ b/tests/integration/Forms/Element/Text/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetUserOptionCest.php b/tests/integration/Forms/Element/Text/SetUserOptionCest.php index 42420760819..98ad32df732 100644 --- a/tests/integration/Forms/Element/Text/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/Text/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/SetUserOptionsCest.php b/tests/integration/Forms/Element/Text/SetUserOptionsCest.php index 9c8a82f918f..9aa0f3c63cd 100644 --- a/tests/integration/Forms/Element/Text/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/Text/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; diff --git a/tests/integration/Forms/Element/Text/ToStringCest.php b/tests/integration/Forms/Element/Text/ToStringCest.php index 8c2af96d969..c84d7342527 100644 --- a/tests/integration/Forms/Element/Text/ToStringCest.php +++ b/tests/integration/Forms/Element/Text/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\Text; +namespace Phalcon\Tests\Integration\Forms\Element\Text; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/TextArea/AddFilterCest.php b/tests/integration/Forms/Element/TextArea/AddFilterCest.php index f1b7687f033..8df90cc30ac 100644 --- a/tests/integration/Forms/Element/TextArea/AddFilterCest.php +++ b/tests/integration/Forms/Element/TextArea/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/AddValidatorCest.php b/tests/integration/Forms/Element/TextArea/AddValidatorCest.php index 731b9d6d3a1..7597fecc1d7 100644 --- a/tests/integration/Forms/Element/TextArea/AddValidatorCest.php +++ b/tests/integration/Forms/Element/TextArea/AddValidatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php b/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php index 23fe76f0b2f..d31e7d0d735 100644 --- a/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php +++ b/tests/integration/Forms/Element/TextArea/AddValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/AppendMessageCest.php b/tests/integration/Forms/Element/TextArea/AppendMessageCest.php index 4eaafe0c73a..52b4b1d8f31 100644 --- a/tests/integration/Forms/Element/TextArea/AppendMessageCest.php +++ b/tests/integration/Forms/Element/TextArea/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/ClearCest.php b/tests/integration/Forms/Element/TextArea/ClearCest.php index dd63e01a79e..e3159b3cd9e 100644 --- a/tests/integration/Forms/Element/TextArea/ClearCest.php +++ b/tests/integration/Forms/Element/TextArea/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/ConstructCest.php b/tests/integration/Forms/Element/TextArea/ConstructCest.php index c44966e5504..39bb2ed18ec 100644 --- a/tests/integration/Forms/Element/TextArea/ConstructCest.php +++ b/tests/integration/Forms/Element/TextArea/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetAttributeCest.php b/tests/integration/Forms/Element/TextArea/GetAttributeCest.php index 9228047537b..9b9dacd9c94 100644 --- a/tests/integration/Forms/Element/TextArea/GetAttributeCest.php +++ b/tests/integration/Forms/Element/TextArea/GetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetAttributesCest.php b/tests/integration/Forms/Element/TextArea/GetAttributesCest.php index 383c08fcfd6..ca1a16729bc 100644 --- a/tests/integration/Forms/Element/TextArea/GetAttributesCest.php +++ b/tests/integration/Forms/Element/TextArea/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetDefaultCest.php b/tests/integration/Forms/Element/TextArea/GetDefaultCest.php index f526ae74a02..657c16f60bd 100644 --- a/tests/integration/Forms/Element/TextArea/GetDefaultCest.php +++ b/tests/integration/Forms/Element/TextArea/GetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetFiltersCest.php b/tests/integration/Forms/Element/TextArea/GetFiltersCest.php index c2dc0ff1ec9..9bf683fc138 100644 --- a/tests/integration/Forms/Element/TextArea/GetFiltersCest.php +++ b/tests/integration/Forms/Element/TextArea/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetLabelCest.php b/tests/integration/Forms/Element/TextArea/GetLabelCest.php index 8862ca68bba..a11a65aae10 100644 --- a/tests/integration/Forms/Element/TextArea/GetLabelCest.php +++ b/tests/integration/Forms/Element/TextArea/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetMessagesCest.php b/tests/integration/Forms/Element/TextArea/GetMessagesCest.php index 5f9fcc19d02..4483ace79d0 100644 --- a/tests/integration/Forms/Element/TextArea/GetMessagesCest.php +++ b/tests/integration/Forms/Element/TextArea/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetSetFormCest.php b/tests/integration/Forms/Element/TextArea/GetSetFormCest.php index 526a74c17b7..eaae4d43e4e 100644 --- a/tests/integration/Forms/Element/TextArea/GetSetFormCest.php +++ b/tests/integration/Forms/Element/TextArea/GetSetFormCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; use Phalcon\Forms\Element\TextArea; diff --git a/tests/integration/Forms/Element/TextArea/GetSetNameCest.php b/tests/integration/Forms/Element/TextArea/GetSetNameCest.php index 3b88b0a799d..4367459a039 100644 --- a/tests/integration/Forms/Element/TextArea/GetSetNameCest.php +++ b/tests/integration/Forms/Element/TextArea/GetSetNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; use Phalcon\Forms\Element\TextArea; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetNameCest { diff --git a/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php b/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php index e32c6c2753d..2c52cf40956 100644 --- a/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php +++ b/tests/integration/Forms/Element/TextArea/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php b/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php index f830834b1a6..9c78df5f168 100644 --- a/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php +++ b/tests/integration/Forms/Element/TextArea/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php b/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php index 990e0c8f0c4..7cf0761f61a 100644 --- a/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php +++ b/tests/integration/Forms/Element/TextArea/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/GetValueCest.php b/tests/integration/Forms/Element/TextArea/GetValueCest.php index 7c526c945da..68780fe4e6d 100644 --- a/tests/integration/Forms/Element/TextArea/GetValueCest.php +++ b/tests/integration/Forms/Element/TextArea/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/HasMessagesCest.php b/tests/integration/Forms/Element/TextArea/HasMessagesCest.php index 83e51289123..dd82efe7911 100644 --- a/tests/integration/Forms/Element/TextArea/HasMessagesCest.php +++ b/tests/integration/Forms/Element/TextArea/HasMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/LabelCest.php b/tests/integration/Forms/Element/TextArea/LabelCest.php index 9ac5586ea7d..b18b5608115 100644 --- a/tests/integration/Forms/Element/TextArea/LabelCest.php +++ b/tests/integration/Forms/Element/TextArea/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php b/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php index 0a60116cae8..e36d02ee5df 100644 --- a/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php +++ b/tests/integration/Forms/Element/TextArea/PrepareAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/RenderCest.php b/tests/integration/Forms/Element/TextArea/RenderCest.php index 5b7d23cddee..d1be86c6d69 100644 --- a/tests/integration/Forms/Element/TextArea/RenderCest.php +++ b/tests/integration/Forms/Element/TextArea/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; use Phalcon\Forms\Element\TextArea; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Forms/Element/TextArea/SetAttributeCest.php b/tests/integration/Forms/Element/TextArea/SetAttributeCest.php index ac832f54530..ecd02ae7933 100644 --- a/tests/integration/Forms/Element/TextArea/SetAttributeCest.php +++ b/tests/integration/Forms/Element/TextArea/SetAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetAttributesCest.php b/tests/integration/Forms/Element/TextArea/SetAttributesCest.php index 04ab2c7cb0d..175f0bb67f4 100644 --- a/tests/integration/Forms/Element/TextArea/SetAttributesCest.php +++ b/tests/integration/Forms/Element/TextArea/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetDefaultCest.php b/tests/integration/Forms/Element/TextArea/SetDefaultCest.php index 6bbfd2f9798..b970069c2bc 100644 --- a/tests/integration/Forms/Element/TextArea/SetDefaultCest.php +++ b/tests/integration/Forms/Element/TextArea/SetDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetFiltersCest.php b/tests/integration/Forms/Element/TextArea/SetFiltersCest.php index afcc5ad6bcc..bd70687fde4 100644 --- a/tests/integration/Forms/Element/TextArea/SetFiltersCest.php +++ b/tests/integration/Forms/Element/TextArea/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetLabelCest.php b/tests/integration/Forms/Element/TextArea/SetLabelCest.php index 66c4fd666ce..5f8ff363988 100644 --- a/tests/integration/Forms/Element/TextArea/SetLabelCest.php +++ b/tests/integration/Forms/Element/TextArea/SetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetMessagesCest.php b/tests/integration/Forms/Element/TextArea/SetMessagesCest.php index dfc1c2427f5..c7dd27b562e 100644 --- a/tests/integration/Forms/Element/TextArea/SetMessagesCest.php +++ b/tests/integration/Forms/Element/TextArea/SetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php b/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php index 2d3e35781b9..f4159f0b1a4 100644 --- a/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php +++ b/tests/integration/Forms/Element/TextArea/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php b/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php index 3b7fbc0b7f4..c3275094c7c 100644 --- a/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php +++ b/tests/integration/Forms/Element/TextArea/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; diff --git a/tests/integration/Forms/Element/TextArea/ToStringCest.php b/tests/integration/Forms/Element/TextArea/ToStringCest.php index 044a0ff18fd..52046843560 100644 --- a/tests/integration/Forms/Element/TextArea/ToStringCest.php +++ b/tests/integration/Forms/Element/TextArea/ToStringCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Element\TextArea; +namespace Phalcon\Tests\Integration\Forms\Element\TextArea; use IntegrationTester; use Phalcon\Forms\Element\TextArea; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ToStringCest { diff --git a/tests/integration/Forms/Element/TextCest.php b/tests/integration/Forms/Element/TextCest.php index 90e8f3aaeb3..0e76167aaf5 100644 --- a/tests/integration/Forms/Element/TextCest.php +++ b/tests/integration/Forms/Element/TextCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Forms\Element; +namespace Phalcon\Tests\Integration\Forms\Element; use Codeception\Example; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class TextCest { diff --git a/tests/integration/Forms/Form/AddCest.php b/tests/integration/Forms/Form/AddCest.php index 61888e77065..fec541ff397 100644 --- a/tests/integration/Forms/Form/AddCest.php +++ b/tests/integration/Forms/Form/AddCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/BindCest.php b/tests/integration/Forms/Form/BindCest.php index 0bc031d0660..3c53ef381f9 100644 --- a/tests/integration/Forms/Form/BindCest.php +++ b/tests/integration/Forms/Form/BindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/ConstructCest.php b/tests/integration/Forms/Form/ConstructCest.php index 7bfb8ef1504..9b8205bbc2e 100644 --- a/tests/integration/Forms/Form/ConstructCest.php +++ b/tests/integration/Forms/Form/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/CountCest.php b/tests/integration/Forms/Form/CountCest.php index 26a466dc8d3..07514353bd8 100644 --- a/tests/integration/Forms/Form/CountCest.php +++ b/tests/integration/Forms/Form/CountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/GetAttributesCest.php b/tests/integration/Forms/Form/GetAttributesCest.php index 40a12051063..e56fd80ae41 100644 --- a/tests/integration/Forms/Form/GetAttributesCest.php +++ b/tests/integration/Forms/Form/GetAttributesCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; use Phalcon\Html\Attributes\AttributesInterface; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetAttributesCest { diff --git a/tests/integration/Forms/Form/GetCest.php b/tests/integration/Forms/Form/GetCest.php index 130fb4e9522..9f558d090cc 100644 --- a/tests/integration/Forms/Form/GetCest.php +++ b/tests/integration/Forms/Form/GetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/GetDICest.php b/tests/integration/Forms/Form/GetDICest.php index 0100e1f532a..e86dc5cf98e 100644 --- a/tests/integration/Forms/Form/GetDICest.php +++ b/tests/integration/Forms/Form/GetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/GetElementsCest.php b/tests/integration/Forms/Form/GetElementsCest.php index 474624f51d8..b5db941ea09 100644 --- a/tests/integration/Forms/Form/GetElementsCest.php +++ b/tests/integration/Forms/Form/GetElementsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/GetEntityCest.php b/tests/integration/Forms/Form/GetEntityCest.php index 1811423583e..191e518d84c 100644 --- a/tests/integration/Forms/Form/GetEntityCest.php +++ b/tests/integration/Forms/Form/GetEntityCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/GetEventsManagerCest.php b/tests/integration/Forms/Form/GetEventsManagerCest.php index 02ad39a4f01..412ae5499c6 100644 --- a/tests/integration/Forms/Form/GetEventsManagerCest.php +++ b/tests/integration/Forms/Form/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/GetLabelCest.php b/tests/integration/Forms/Form/GetLabelCest.php index 4e51f05b25b..e7e9469db37 100644 --- a/tests/integration/Forms/Form/GetLabelCest.php +++ b/tests/integration/Forms/Form/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/GetMessagesCest.php b/tests/integration/Forms/Form/GetMessagesCest.php index 429310f44b5..1767c5b06f0 100644 --- a/tests/integration/Forms/Form/GetMessagesCest.php +++ b/tests/integration/Forms/Form/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; @@ -19,7 +19,7 @@ use Phalcon\Messages\Message; use Phalcon\Messages\Messages; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Validation; use Phalcon\Validation\Validator\PresenceOf; use Phalcon\Validation\Validator\Regex; diff --git a/tests/integration/Forms/Form/GetMessagesForCest.php b/tests/integration/Forms/Form/GetMessagesForCest.php index 5943edb885a..4fc3ab16993 100644 --- a/tests/integration/Forms/Form/GetMessagesForCest.php +++ b/tests/integration/Forms/Form/GetMessagesForCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/GetSetActionCest.php b/tests/integration/Forms/Form/GetSetActionCest.php index bfe7d01dcae..482efa5e0be 100644 --- a/tests/integration/Forms/Form/GetSetActionCest.php +++ b/tests/integration/Forms/Form/GetSetActionCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; -use Phalcon\Test\Fixtures\Forms\SetActionForm; +use Phalcon\Tests\Fixtures\Forms\SetActionForm; class GetSetActionCest { diff --git a/tests/integration/Forms/Form/GetUserOptionCest.php b/tests/integration/Forms/Form/GetUserOptionCest.php index 4139997d73b..6639bcea737 100644 --- a/tests/integration/Forms/Form/GetUserOptionCest.php +++ b/tests/integration/Forms/Form/GetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/GetUserOptionsCest.php b/tests/integration/Forms/Form/GetUserOptionsCest.php index c641d4b5d2c..4aba75a886d 100644 --- a/tests/integration/Forms/Form/GetUserOptionsCest.php +++ b/tests/integration/Forms/Form/GetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/GetValidationCest.php b/tests/integration/Forms/Form/GetValidationCest.php index 61ba9646d53..3e9e3a35de8 100644 --- a/tests/integration/Forms/Form/GetValidationCest.php +++ b/tests/integration/Forms/Form/GetValidationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/GetValueCest.php b/tests/integration/Forms/Form/GetValueCest.php index dca22a68396..4e39459ee27 100644 --- a/tests/integration/Forms/Form/GetValueCest.php +++ b/tests/integration/Forms/Form/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/HasCest.php b/tests/integration/Forms/Form/HasCest.php index babd3e4ab3c..1d56a9f9ef0 100644 --- a/tests/integration/Forms/Form/HasCest.php +++ b/tests/integration/Forms/Form/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; diff --git a/tests/integration/Forms/Form/HasMessagesForCest.php b/tests/integration/Forms/Form/HasMessagesForCest.php index 67b48e72bf9..defd1ba8fb0 100644 --- a/tests/integration/Forms/Form/HasMessagesForCest.php +++ b/tests/integration/Forms/Form/HasMessagesForCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; @@ -19,7 +19,7 @@ use Phalcon\Messages\Message; use Phalcon\Messages\Messages; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Validation\Validator\Regex; class HasMessagesForCest diff --git a/tests/integration/Forms/Form/IsValidCest.php b/tests/integration/Forms/Form/IsValidCest.php index 3d4b426be8a..304866e7962 100644 --- a/tests/integration/Forms/Form/IsValidCest.php +++ b/tests/integration/Forms/Form/IsValidCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; @@ -19,8 +19,8 @@ use Phalcon\Messages\Message; use Phalcon\Messages\Messages; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Forms\ValidationForm; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Forms\ValidationForm; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Validation; use Phalcon\Validation\Validator\PresenceOf; use Phalcon\Validation\Validator\Regex; diff --git a/tests/integration/Forms/Form/IteratorCest.php b/tests/integration/Forms/Form/IteratorCest.php index 4e9d3196793..7933b8f3cba 100644 --- a/tests/integration/Forms/Form/IteratorCest.php +++ b/tests/integration/Forms/Form/IteratorCest.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Forms\Form; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class IteratorCest { diff --git a/tests/integration/Forms/Form/LabelCest.php b/tests/integration/Forms/Form/LabelCest.php index fd751f27fb9..8644dda8909 100644 --- a/tests/integration/Forms/Form/LabelCest.php +++ b/tests/integration/Forms/Form/LabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/RemoveCest.php b/tests/integration/Forms/Form/RemoveCest.php index ca2f0e0059f..a53a9e2a86c 100644 --- a/tests/integration/Forms/Form/RemoveCest.php +++ b/tests/integration/Forms/Form/RemoveCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/RenderCest.php b/tests/integration/Forms/Form/RenderCest.php index fb165ec59cc..13eaf40ba2e 100644 --- a/tests/integration/Forms/Form/RenderCest.php +++ b/tests/integration/Forms/Form/RenderCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; use Phalcon\Forms\Form; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use stdClass; class RenderCest diff --git a/tests/integration/Forms/Form/SetAttributesCest.php b/tests/integration/Forms/Form/SetAttributesCest.php index 1964cc74aab..0c6884632a0 100644 --- a/tests/integration/Forms/Form/SetAttributesCest.php +++ b/tests/integration/Forms/Form/SetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/SetDICest.php b/tests/integration/Forms/Form/SetDICest.php index 22e735e4b8b..4ea72d8c26a 100644 --- a/tests/integration/Forms/Form/SetDICest.php +++ b/tests/integration/Forms/Form/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/SetEntityCest.php b/tests/integration/Forms/Form/SetEntityCest.php index 49d39548e65..dfd4a6e77ba 100644 --- a/tests/integration/Forms/Form/SetEntityCest.php +++ b/tests/integration/Forms/Form/SetEntityCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/SetEventsManagerCest.php b/tests/integration/Forms/Form/SetEventsManagerCest.php index 43bfce5e3ce..6ae3d750fd4 100644 --- a/tests/integration/Forms/Form/SetEventsManagerCest.php +++ b/tests/integration/Forms/Form/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Form/SetUserOptionCest.php b/tests/integration/Forms/Form/SetUserOptionCest.php index 7fb9a53d5f6..528cd4aadd2 100644 --- a/tests/integration/Forms/Form/SetUserOptionCest.php +++ b/tests/integration/Forms/Form/SetUserOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/SetUserOptionsCest.php b/tests/integration/Forms/Form/SetUserOptionsCest.php index 721e9124119..3d727c64999 100644 --- a/tests/integration/Forms/Form/SetUserOptionsCest.php +++ b/tests/integration/Forms/Form/SetUserOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Form/SetValidationCest.php b/tests/integration/Forms/Form/SetValidationCest.php index 42e7962f2c1..454c46a3816 100644 --- a/tests/integration/Forms/Form/SetValidationCest.php +++ b/tests/integration/Forms/Form/SetValidationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; use Phalcon\Forms\Element\Text; @@ -19,7 +19,7 @@ use Phalcon\Messages\Message; use Phalcon\Messages\Messages; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use Phalcon\Validation; use Phalcon\Validation\Validator\Regex; diff --git a/tests/integration/Forms/Form/UnderscoreGetCest.php b/tests/integration/Forms/Form/UnderscoreGetCest.php index 3b18d264bf7..5b86b7723d5 100644 --- a/tests/integration/Forms/Form/UnderscoreGetCest.php +++ b/tests/integration/Forms/Form/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Form; +namespace Phalcon\Tests\Integration\Forms\Form; use IntegrationTester; diff --git a/tests/integration/Forms/Manager/CreateCest.php b/tests/integration/Forms/Manager/CreateCest.php index ed008bb8925..ebf11b8e3e8 100644 --- a/tests/integration/Forms/Manager/CreateCest.php +++ b/tests/integration/Forms/Manager/CreateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Manager; +namespace Phalcon\Tests\Integration\Forms\Manager; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Forms/Manager/GetSetCest.php b/tests/integration/Forms/Manager/GetSetCest.php index 6f59f403ca7..202dea5af54 100644 --- a/tests/integration/Forms/Manager/GetSetCest.php +++ b/tests/integration/Forms/Manager/GetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Manager; +namespace Phalcon\Tests\Integration\Forms\Manager; use IntegrationTester; use Phalcon\Forms\Exception; diff --git a/tests/integration/Forms/Manager/HasCest.php b/tests/integration/Forms/Manager/HasCest.php index 3448bacfda0..dce1beece4e 100644 --- a/tests/integration/Forms/Manager/HasCest.php +++ b/tests/integration/Forms/Manager/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Forms\Manager; +namespace Phalcon\Tests\Integration\Forms\Manager; use IntegrationTester; use Phalcon\Forms\Form; diff --git a/tests/integration/Image/ImageFactory/LoadCest.php b/tests/integration/Image/ImageFactory/LoadCest.php index 979a2b37e82..10733fe6599 100644 --- a/tests/integration/Image/ImageFactory/LoadCest.php +++ b/tests/integration/Image/ImageFactory/LoadCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Image\ImageFactory; +namespace Phalcon\Tests\Integration\Image\ImageFactory; use IntegrationTester; use Phalcon\Image\Adapter\Imagick; use Phalcon\Image\ImageFactory; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; class LoadCest { diff --git a/tests/integration/Mvc/Application/ConstructCest.php b/tests/integration/Mvc/Application/ConstructCest.php index 1b874c1aaa9..3debdecabee 100644 --- a/tests/integration/Mvc/Application/ConstructCest.php +++ b/tests/integration/Mvc/Application/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/GetDefaultModuleCest.php b/tests/integration/Mvc/Application/GetDefaultModuleCest.php index c329eb70ec1..5c854bd724b 100644 --- a/tests/integration/Mvc/Application/GetDefaultModuleCest.php +++ b/tests/integration/Mvc/Application/GetDefaultModuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/GetEventsManagerCest.php b/tests/integration/Mvc/Application/GetEventsManagerCest.php index 2323347703f..a46b1b1e75b 100644 --- a/tests/integration/Mvc/Application/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Application/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/GetModuleCest.php b/tests/integration/Mvc/Application/GetModuleCest.php index a4d405c88f7..4a048ed2877 100644 --- a/tests/integration/Mvc/Application/GetModuleCest.php +++ b/tests/integration/Mvc/Application/GetModuleCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; use Phalcon\Application\Exception; use Phalcon\Mvc\Application; -use Phalcon\Test\Modules\Frontend\Module; +use Phalcon\Tests\Modules\Frontend\Module; class GetModuleCest { @@ -41,7 +41,7 @@ public function mvcApplicationGetModule(IntegrationTester $I) 'path' => dataDir('fixtures/modules/frontend/Module.php'), ], 'backend' => [ - 'className' => \Phalcon\Test\Modules\Backend\Module::class, + 'className' => \Phalcon\Tests\Modules\Backend\Module::class, 'path' => dataDir('fixtures/modules/backend/Module.php'), ], ]; diff --git a/tests/integration/Mvc/Application/GetModulesCest.php b/tests/integration/Mvc/Application/GetModulesCest.php index 4e0cf305082..e459e2f085c 100644 --- a/tests/integration/Mvc/Application/GetModulesCest.php +++ b/tests/integration/Mvc/Application/GetModulesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; use Phalcon\Mvc\Application; -use Phalcon\Test\Modules\Frontend\Module; +use Phalcon\Tests\Modules\Frontend\Module; class GetModulesCest { @@ -61,7 +61,7 @@ public function mvcApplicationGetModules(IntegrationTester $I) 'path' => dataDir('fixtures/modules/frontend/Module.php'), ], 'backend' => [ - 'className' => \Phalcon\Test\Modules\Backend\Module::class, + 'className' => \Phalcon\Tests\Modules\Backend\Module::class, 'path' => dataDir('fixtures/modules/backend/Module.php'), ], ]; diff --git a/tests/integration/Mvc/Application/GetSetDICest.php b/tests/integration/Mvc/Application/GetSetDICest.php index fe2b0c6e2e0..80aa647246c 100644 --- a/tests/integration/Mvc/Application/GetSetDICest.php +++ b/tests/integration/Mvc/Application/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/HandleCest.php b/tests/integration/Mvc/Application/HandleCest.php index 9d0c9dae95d..3f7f3671c87 100644 --- a/tests/integration/Mvc/Application/HandleCest.php +++ b/tests/integration/Mvc/Application/HandleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; use Phalcon\Di\FactoryDefault; @@ -52,7 +52,7 @@ function () { function () { $dispatcher = new Dispatcher(); $dispatcher->setDefaultNamespace( - 'Phalcon\Test\Controllers' + 'Phalcon\Tests\Controllers' ); return $dispatcher; @@ -104,7 +104,7 @@ function () { function () use ($eventsManager) { $dispatcher = new Dispatcher(); $dispatcher->setDefaultNamespace( - 'Phalcon\Test\Controllers' + 'Phalcon\Tests\Controllers' ); $eventsManager->attach( @@ -173,7 +173,7 @@ function () { function () use ($eventsManager) { $dispatcher = new Dispatcher(); $dispatcher->setDefaultNamespace( - 'Phalcon\Test\Controllers' + 'Phalcon\Tests\Controllers' ); $eventsManager->attach( diff --git a/tests/integration/Mvc/Application/SendCookiesOnHandleRequestCest.php b/tests/integration/Mvc/Application/SendCookiesOnHandleRequestCest.php index 6cebc82da9f..91e9a39875c 100644 --- a/tests/integration/Mvc/Application/SendCookiesOnHandleRequestCest.php +++ b/tests/integration/Mvc/Application/SendCookiesOnHandleRequestCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/SendHeadersOnHandleRequestCest.php b/tests/integration/Mvc/Application/SendHeadersOnHandleRequestCest.php index 06984bbf144..b2175620f47 100644 --- a/tests/integration/Mvc/Application/SendHeadersOnHandleRequestCest.php +++ b/tests/integration/Mvc/Application/SendHeadersOnHandleRequestCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/SetDefaultModuleCest.php b/tests/integration/Mvc/Application/SetDefaultModuleCest.php index 647ee40fe4b..1c9bca23025 100644 --- a/tests/integration/Mvc/Application/SetDefaultModuleCest.php +++ b/tests/integration/Mvc/Application/SetDefaultModuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/SetEventsManagerCest.php b/tests/integration/Mvc/Application/SetEventsManagerCest.php index 72c7ee6a164..17b0d32828c 100644 --- a/tests/integration/Mvc/Application/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Application/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/UnderscoreGetCest.php b/tests/integration/Mvc/Application/UnderscoreGetCest.php index 910ec30930a..a8b75c34078 100644 --- a/tests/integration/Mvc/Application/UnderscoreGetCest.php +++ b/tests/integration/Mvc/Application/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Application/UseImplicitViewCest.php b/tests/integration/Mvc/Application/UseImplicitViewCest.php index 7f1679172ae..9e87a753c86 100644 --- a/tests/integration/Mvc/Application/UseImplicitViewCest.php +++ b/tests/integration/Mvc/Application/UseImplicitViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Application; +namespace Phalcon\Tests\Integration\Mvc\Application; use IntegrationTester; diff --git a/tests/integration/Mvc/Controller/ConstructCest.php b/tests/integration/Mvc/Controller/ConstructCest.php index 1ddd5f86a37..2cbfdbae407 100644 --- a/tests/integration/Mvc/Controller/ConstructCest.php +++ b/tests/integration/Mvc/Controller/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; diff --git a/tests/integration/Mvc/Controller/GetDICest.php b/tests/integration/Mvc/Controller/GetDICest.php index bca9d2959ca..2ebd03f8ec3 100644 --- a/tests/integration/Mvc/Controller/GetDICest.php +++ b/tests/integration/Mvc/Controller/GetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; diff --git a/tests/integration/Mvc/Controller/GetEventsManagerCest.php b/tests/integration/Mvc/Controller/GetEventsManagerCest.php index 5be1b9c60a1..088784ecc0f 100644 --- a/tests/integration/Mvc/Controller/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Controller/GetEventsManagerCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; use Phalcon\Events\Manager as EventsManager; -use Phalcon\Test\Controllers\ViewRequestController; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Controllers\ViewRequestController; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetEventsManagerCest diff --git a/tests/integration/Mvc/Controller/SetDICest.php b/tests/integration/Mvc/Controller/SetDICest.php index cc0c504e219..1483cdff653 100644 --- a/tests/integration/Mvc/Controller/SetDICest.php +++ b/tests/integration/Mvc/Controller/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; diff --git a/tests/integration/Mvc/Controller/SetEventsManagerCest.php b/tests/integration/Mvc/Controller/SetEventsManagerCest.php index cc8414b9a9d..702de62fd1b 100644 --- a/tests/integration/Mvc/Controller/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Controller/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; diff --git a/tests/integration/Mvc/Controller/UnderscoreGetCest.php b/tests/integration/Mvc/Controller/UnderscoreGetCest.php index 799b9983a54..52ff77a5ad4 100644 --- a/tests/integration/Mvc/Controller/UnderscoreGetCest.php +++ b/tests/integration/Mvc/Controller/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Controller; +namespace Phalcon\Tests\Integration\Mvc\Controller; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/CallActionMethodCest.php b/tests/integration/Mvc/Dispatcher/CallActionMethodCest.php index f94b399520a..e2b1a019217 100644 --- a/tests/integration/Mvc/Dispatcher/CallActionMethodCest.php +++ b/tests/integration/Mvc/Dispatcher/CallActionMethodCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; class CallActionMethodCest extends BaseDispatcher { diff --git a/tests/integration/Mvc/Dispatcher/DispatchCest.php b/tests/integration/Mvc/Dispatcher/DispatchCest.php index 9ce6e2623b8..61e9db8ef46 100644 --- a/tests/integration/Mvc/Dispatcher/DispatchCest.php +++ b/tests/integration/Mvc/Dispatcher/DispatchCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; use Phalcon\Dispatcher\Exception; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; class DispatchCest extends BaseDispatcher { @@ -36,7 +36,7 @@ public function testDefaultDispatchLoopEvents(IntegrationTester $I) $handler = $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -98,7 +98,7 @@ public function testHandlerNotFound(IntegrationTester $I) $I->expectThrowable( new Exception( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper\Non' . + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\Non' . 'ExistentDispatcherHandlerController handler class cannot be loaded', Exception::EXCEPTION_HANDLER_NOT_FOUND ), diff --git a/tests/integration/Mvc/Dispatcher/ForwardCest.php b/tests/integration/Mvc/Dispatcher/ForwardCest.php index 6b2edb12fd7..1fffa99613f 100644 --- a/tests/integration/Mvc/Dispatcher/ForwardCest.php +++ b/tests/integration/Mvc/Dispatcher/ForwardCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetActionSuffixCest.php b/tests/integration/Mvc/Dispatcher/GetActionSuffixCest.php index 74048155442..24d6afe78e4 100644 --- a/tests/integration/Mvc/Dispatcher/GetActionSuffixCest.php +++ b/tests/integration/Mvc/Dispatcher/GetActionSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetActiveControllerCest.php b/tests/integration/Mvc/Dispatcher/GetActiveControllerCest.php index 9a7628d3df6..d497c3db0e0 100644 --- a/tests/integration/Mvc/Dispatcher/GetActiveControllerCest.php +++ b/tests/integration/Mvc/Dispatcher/GetActiveControllerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetActiveMethodCest.php b/tests/integration/Mvc/Dispatcher/GetActiveMethodCest.php index 3e1ec358346..b97cacce3a4 100644 --- a/tests/integration/Mvc/Dispatcher/GetActiveMethodCest.php +++ b/tests/integration/Mvc/Dispatcher/GetActiveMethodCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetBoundModelsCest.php b/tests/integration/Mvc/Dispatcher/GetBoundModelsCest.php index 6380c92ef36..3d06b6c73c9 100644 --- a/tests/integration/Mvc/Dispatcher/GetBoundModelsCest.php +++ b/tests/integration/Mvc/Dispatcher/GetBoundModelsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetControllerClassCest.php b/tests/integration/Mvc/Dispatcher/GetControllerClassCest.php index 2f9ec5cd6f9..ca6c9ab0ed3 100644 --- a/tests/integration/Mvc/Dispatcher/GetControllerClassCest.php +++ b/tests/integration/Mvc/Dispatcher/GetControllerClassCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use Foo\IndexController; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; class GetControllerClassCest extends BaseDispatcher { diff --git a/tests/integration/Mvc/Dispatcher/GetControllerNameCest.php b/tests/integration/Mvc/Dispatcher/GetControllerNameCest.php index 752ddea7ee7..68793c7815c 100644 --- a/tests/integration/Mvc/Dispatcher/GetControllerNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetDefaultNamespaceCest.php b/tests/integration/Mvc/Dispatcher/GetDefaultNamespaceCest.php index 22e48d0453b..695f98935b6 100644 --- a/tests/integration/Mvc/Dispatcher/GetDefaultNamespaceCest.php +++ b/tests/integration/Mvc/Dispatcher/GetDefaultNamespaceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetEventsManagerCest.php b/tests/integration/Mvc/Dispatcher/GetEventsManagerCest.php index 36f3e64d84f..751551e9ce5 100644 --- a/tests/integration/Mvc/Dispatcher/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Dispatcher/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetHandlerClassCest.php b/tests/integration/Mvc/Dispatcher/GetHandlerClassCest.php index eeebdb11246..38a62f179c5 100644 --- a/tests/integration/Mvc/Dispatcher/GetHandlerClassCest.php +++ b/tests/integration/Mvc/Dispatcher/GetHandlerClassCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetHandlerSuffixCest.php b/tests/integration/Mvc/Dispatcher/GetHandlerSuffixCest.php index e7174b3075d..7c4d76e40e3 100644 --- a/tests/integration/Mvc/Dispatcher/GetHandlerSuffixCest.php +++ b/tests/integration/Mvc/Dispatcher/GetHandlerSuffixCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; use Phalcon\Mvc\Dispatcher\Exception; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; class GetHandlerSuffixCest extends BaseDispatcher { @@ -37,7 +37,7 @@ public function mvcDispatcherGetHandlerSuffix(IntegrationTester $I) $I->expectThrowable( new Exception( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper\IndexBleh handler class cannot be loaded', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\IndexBleh handler class cannot be loaded', Exception::EXCEPTION_HANDLER_NOT_FOUND ), function () use ($dispatcher) { diff --git a/tests/integration/Mvc/Dispatcher/GetLastControllerCest.php b/tests/integration/Mvc/Dispatcher/GetLastControllerCest.php index b01af449c5a..4a2e9827cfe 100644 --- a/tests/integration/Mvc/Dispatcher/GetLastControllerCest.php +++ b/tests/integration/Mvc/Dispatcher/GetLastControllerCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultTwoController; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultController; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\DispatcherTestDefaultTwoController; class GetLastControllerCest extends BaseDispatcher { diff --git a/tests/integration/Mvc/Dispatcher/GetModelBinderCest.php b/tests/integration/Mvc/Dispatcher/GetModelBinderCest.php index 69054b3e3c9..c3663b2ebda 100644 --- a/tests/integration/Mvc/Dispatcher/GetModelBinderCest.php +++ b/tests/integration/Mvc/Dispatcher/GetModelBinderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetModuleNameCest.php b/tests/integration/Mvc/Dispatcher/GetModuleNameCest.php index 490501816e6..d536e63617f 100644 --- a/tests/integration/Mvc/Dispatcher/GetModuleNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetNamespaceNameCest.php b/tests/integration/Mvc/Dispatcher/GetNamespaceNameCest.php index 76e3933748e..f63f24c5652 100644 --- a/tests/integration/Mvc/Dispatcher/GetNamespaceNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetParamCest.php b/tests/integration/Mvc/Dispatcher/GetParamCest.php index c5d59765768..e3939a3a3e8 100644 --- a/tests/integration/Mvc/Dispatcher/GetParamCest.php +++ b/tests/integration/Mvc/Dispatcher/GetParamCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetParamsCest.php b/tests/integration/Mvc/Dispatcher/GetParamsCest.php index 0684309eab0..7942a9a3e97 100644 --- a/tests/integration/Mvc/Dispatcher/GetParamsCest.php +++ b/tests/integration/Mvc/Dispatcher/GetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetPreviousActionNameCest.php b/tests/integration/Mvc/Dispatcher/GetPreviousActionNameCest.php index 5aea77ebad0..bc412e5e407 100644 --- a/tests/integration/Mvc/Dispatcher/GetPreviousActionNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetPreviousActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetPreviousControllerNameCest.php b/tests/integration/Mvc/Dispatcher/GetPreviousControllerNameCest.php index 9b75cecc0e2..49cd9e15dee 100644 --- a/tests/integration/Mvc/Dispatcher/GetPreviousControllerNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetPreviousControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php b/tests/integration/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php index 417c6aa9f62..0ca71ec99d2 100644 --- a/tests/integration/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetPreviousNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetReturnedValueCest.php b/tests/integration/Mvc/Dispatcher/GetReturnedValueCest.php index ea9e96fb461..75b5f64104a 100644 --- a/tests/integration/Mvc/Dispatcher/GetReturnedValueCest.php +++ b/tests/integration/Mvc/Dispatcher/GetReturnedValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/GetSetActionNameCest.php b/tests/integration/Mvc/Dispatcher/GetSetActionNameCest.php index 1f2e4c052ee..4d56295c668 100644 --- a/tests/integration/Mvc/Dispatcher/GetSetActionNameCest.php +++ b/tests/integration/Mvc/Dispatcher/GetSetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; use Phalcon\Mvc\Dispatcher; diff --git a/tests/integration/Mvc/Dispatcher/GetSetDICest.php b/tests/integration/Mvc/Dispatcher/GetSetDICest.php index e3d81bb7887..0b9d3619e03 100644 --- a/tests/integration/Mvc/Dispatcher/GetSetDICest.php +++ b/tests/integration/Mvc/Dispatcher/GetSetDICest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; use Phalcon\Di\FactoryDefault; use Phalcon\Mvc\Dispatcher; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/integration/Mvc/Dispatcher/HasParamCest.php b/tests/integration/Mvc/Dispatcher/HasParamCest.php index f884bcf5881..4961c92242c 100644 --- a/tests/integration/Mvc/Dispatcher/HasParamCest.php +++ b/tests/integration/Mvc/Dispatcher/HasParamCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php b/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php index 64d1b876c3e..9ff56e545d1 100644 --- a/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php +++ b/tests/integration/Mvc/Dispatcher/Helper/BaseDispatcher.php @@ -1,6 +1,6 @@ setNamespaceName('Phalcon\Test\Integration\Mvc\Dispatcher\Helper'); + $dispatcher->setNamespaceName('Phalcon\Tests\Integration\Mvc\Dispatcher\Helper'); $dispatcher->setControllerName('dispatcher-test-default'); $dispatcher->setActionName('index'); diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php index 6fe06bf30fe..ac5f1cc04b9 100644 --- a/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherListener.php @@ -1,13 +1,13 @@ forward( [ - 'namespace' => 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'namespace' => 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', 'controller' => 'dispatcher-test-default', 'action' => 'index', ] diff --git a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php index c9ab91e5fec..77ceee31a02 100644 --- a/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php +++ b/tests/integration/Mvc/Dispatcher/Helper/DispatcherTestDefaultSimpleController.php @@ -1,11 +1,11 @@ dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -115,7 +115,7 @@ public function testControllerActionLocalForward(IntegrationTester $I) $handler = $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -163,7 +163,7 @@ public function testControllerActionLocalForward(IntegrationTester $I) ); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getPreviousNamespaceName() ); @@ -223,7 +223,7 @@ public function testControllerActionExternalForward(IntegrationTester $I) $handler = $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -271,7 +271,7 @@ public function testControllerActionExternalForward(IntegrationTester $I) ); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getPreviousNamespaceName() ); @@ -326,7 +326,7 @@ public function testControllerActionReturnValueString(IntegrationTester $I) $handler = $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -380,7 +380,7 @@ public function testControllerActionReturnValueInt(IntegrationTester $I) $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -437,7 +437,7 @@ public function testParamsAndReturnValue(IntegrationTester $I) $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -635,7 +635,7 @@ public function testMixingNamespaceForward(IntegrationTester $I) $handler = $dispatcher->dispatch(); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -734,7 +734,7 @@ function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { $beforeExceptionHandled = true; $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -774,7 +774,7 @@ function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { $I->assertTrue($beforeExceptionHandled); $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -822,7 +822,7 @@ function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { $beforeExceptionHandled = true; $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); @@ -875,7 +875,7 @@ function ($event, $dispatcher) use (&$beforeExceptionHandled, $I) { // The string properties get updated $I->assertEquals( - 'Phalcon\Test\Integration\Mvc\Dispatcher\Helper', + 'Phalcon\Tests\Integration\Mvc\Dispatcher\Helper', $dispatcher->getNamespaceName() ); diff --git a/tests/integration/Mvc/Dispatcher/Refactor/DispatcherInitializeMethodCest.php b/tests/integration/Mvc/Dispatcher/Refactor/DispatcherInitializeMethodCest.php index 17a7ca0f87d..2037c212551 100644 --- a/tests/integration/Mvc/Dispatcher/Refactor/DispatcherInitializeMethodCest.php +++ b/tests/integration/Mvc/Dispatcher/Refactor/DispatcherInitializeMethodCest.php @@ -11,16 +11,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher\Refactor; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher\Refactor; use Exception; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; /** * Class DispatcherInitializeMethodCest * - * @package Phalcon\Test\Integration\Mvc\Dispatcher + * @package Phalcon\Tests\Integration\Mvc\Dispatcher * @todo: refactor */ class DispatcherInitializeMethodCest extends BaseDispatcher diff --git a/tests/integration/Mvc/Dispatcher/Refactor/ForwardCest.php b/tests/integration/Mvc/Dispatcher/Refactor/ForwardCest.php index 5a103650664..5b79f0140bb 100644 --- a/tests/integration/Mvc/Dispatcher/Refactor/ForwardCest.php +++ b/tests/integration/Mvc/Dispatcher/Refactor/ForwardCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher\Refactor; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher\Refactor; use Exception; use IntegrationTester; @@ -24,7 +24,7 @@ /** * Class RefactorForwardCest * - * @package Phalcon\Test\Integration\Mvc\Dispatcher + * @package Phalcon\Tests\Integration\Mvc\Dispatcher * @todo: refactor */ class ForwardCest @@ -57,7 +57,7 @@ function () { function ($event, $dispatcher, $exception) { $dispatcher->forward( [ - 'namespace' => 'Phalcon\Test\Controllers', + 'namespace' => 'Phalcon\Tests\Controllers', 'controller' => 'exception', 'action' => 'second', ] diff --git a/tests/integration/Mvc/Dispatcher/SetActionSuffixCest.php b/tests/integration/Mvc/Dispatcher/SetActionSuffixCest.php index b0756aaf9d3..bfaace8fecb 100644 --- a/tests/integration/Mvc/Dispatcher/SetActionSuffixCest.php +++ b/tests/integration/Mvc/Dispatcher/SetActionSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetControllerNameCest.php b/tests/integration/Mvc/Dispatcher/SetControllerNameCest.php index 17eff998fcf..47ac4a7c81c 100644 --- a/tests/integration/Mvc/Dispatcher/SetControllerNameCest.php +++ b/tests/integration/Mvc/Dispatcher/SetControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetControllerSuffixCest.php b/tests/integration/Mvc/Dispatcher/SetControllerSuffixCest.php index 112dc88e9ba..835ab130de7 100644 --- a/tests/integration/Mvc/Dispatcher/SetControllerSuffixCest.php +++ b/tests/integration/Mvc/Dispatcher/SetControllerSuffixCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; class SetControllerSuffixCest extends BaseDispatcher { diff --git a/tests/integration/Mvc/Dispatcher/SetDefaultActionCest.php b/tests/integration/Mvc/Dispatcher/SetDefaultActionCest.php index c56064401df..a524c35c623 100644 --- a/tests/integration/Mvc/Dispatcher/SetDefaultActionCest.php +++ b/tests/integration/Mvc/Dispatcher/SetDefaultActionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetDefaultControllerCest.php b/tests/integration/Mvc/Dispatcher/SetDefaultControllerCest.php index d457c94da26..94751e3b001 100644 --- a/tests/integration/Mvc/Dispatcher/SetDefaultControllerCest.php +++ b/tests/integration/Mvc/Dispatcher/SetDefaultControllerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetDefaultNamespaceCest.php b/tests/integration/Mvc/Dispatcher/SetDefaultNamespaceCest.php index e7839050a0e..7cc7f10ea57 100644 --- a/tests/integration/Mvc/Dispatcher/SetDefaultNamespaceCest.php +++ b/tests/integration/Mvc/Dispatcher/SetDefaultNamespaceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetEventsManagerCest.php b/tests/integration/Mvc/Dispatcher/SetEventsManagerCest.php index 0faebbde46b..37a970edebb 100644 --- a/tests/integration/Mvc/Dispatcher/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Dispatcher/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetHandlerSuffixCest.php b/tests/integration/Mvc/Dispatcher/SetHandlerSuffixCest.php index fc375a4798d..54e34d420fa 100644 --- a/tests/integration/Mvc/Dispatcher/SetHandlerSuffixCest.php +++ b/tests/integration/Mvc/Dispatcher/SetHandlerSuffixCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; -use Phalcon\Test\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; +use Phalcon\Tests\Integration\Mvc\Dispatcher\Helper\BaseDispatcher; class SetHandlerSuffixCest extends BaseDispatcher { diff --git a/tests/integration/Mvc/Dispatcher/SetModelBinderCest.php b/tests/integration/Mvc/Dispatcher/SetModelBinderCest.php index c0aab33e096..8bfdd7b0f93 100644 --- a/tests/integration/Mvc/Dispatcher/SetModelBinderCest.php +++ b/tests/integration/Mvc/Dispatcher/SetModelBinderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetModuleNameCest.php b/tests/integration/Mvc/Dispatcher/SetModuleNameCest.php index 62eb7057bef..38f28c0071d 100644 --- a/tests/integration/Mvc/Dispatcher/SetModuleNameCest.php +++ b/tests/integration/Mvc/Dispatcher/SetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetNamespaceNameCest.php b/tests/integration/Mvc/Dispatcher/SetNamespaceNameCest.php index beaaee9ad20..52ed488e9c9 100644 --- a/tests/integration/Mvc/Dispatcher/SetNamespaceNameCest.php +++ b/tests/integration/Mvc/Dispatcher/SetNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetParamCest.php b/tests/integration/Mvc/Dispatcher/SetParamCest.php index f13e525bad5..ff42e1043ba 100644 --- a/tests/integration/Mvc/Dispatcher/SetParamCest.php +++ b/tests/integration/Mvc/Dispatcher/SetParamCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetParamsCest.php b/tests/integration/Mvc/Dispatcher/SetParamsCest.php index c79824a380a..f808cb97402 100644 --- a/tests/integration/Mvc/Dispatcher/SetParamsCest.php +++ b/tests/integration/Mvc/Dispatcher/SetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/SetReturnedValueCest.php b/tests/integration/Mvc/Dispatcher/SetReturnedValueCest.php index 8c43c4f6387..959e4b0ad2a 100644 --- a/tests/integration/Mvc/Dispatcher/SetReturnedValueCest.php +++ b/tests/integration/Mvc/Dispatcher/SetReturnedValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Dispatcher/WasForwardedCest.php b/tests/integration/Mvc/Dispatcher/WasForwardedCest.php index c255341430e..dfc4868e41a 100644 --- a/tests/integration/Mvc/Dispatcher/WasForwardedCest.php +++ b/tests/integration/Mvc/Dispatcher/WasForwardedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Dispatcher; +namespace Phalcon\Tests\Integration\Mvc\Dispatcher; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/AfterBindingCest.php b/tests/integration/Mvc/Micro/AfterBindingCest.php index 9c6343d31a4..6aa556a5053 100644 --- a/tests/integration/Mvc/Micro/AfterBindingCest.php +++ b/tests/integration/Mvc/Micro/AfterBindingCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di\FactoryDefault; use Phalcon\Events\Event; use Phalcon\Events\Manager; use Phalcon\Mvc\Micro; -use Phalcon\Test\Fixtures\Micro\MyMiddleware; -use Phalcon\Test\Fixtures\Micro\MyMiddlewareStop; +use Phalcon\Tests\Fixtures\Micro\MyMiddleware; +use Phalcon\Tests\Fixtures\Micro\MyMiddlewareStop; class AfterBindingCest { diff --git a/tests/integration/Mvc/Micro/AfterCest.php b/tests/integration/Mvc/Micro/AfterCest.php index ff623d58139..d2b6825338a 100644 --- a/tests/integration/Mvc/Micro/AfterCest.php +++ b/tests/integration/Mvc/Micro/AfterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/BeforeCest.php b/tests/integration/Mvc/Micro/BeforeCest.php index e5050d6b54c..6506da86430 100644 --- a/tests/integration/Mvc/Micro/BeforeCest.php +++ b/tests/integration/Mvc/Micro/BeforeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/Collection/DeleteCest.php b/tests/integration/Mvc/Micro/Collection/DeleteCest.php index 4176df691f5..fd724d4f751 100644 --- a/tests/integration/Mvc/Micro/Collection/DeleteCest.php +++ b/tests/integration/Mvc/Micro/Collection/DeleteCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class DeleteCest { diff --git a/tests/integration/Mvc/Micro/Collection/GetCest.php b/tests/integration/Mvc/Micro/Collection/GetCest.php index 9bcc418e722..e0af912f38c 100644 --- a/tests/integration/Mvc/Micro/Collection/GetCest.php +++ b/tests/integration/Mvc/Micro/Collection/GetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class GetCest { diff --git a/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php b/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php index 96ba7560273..daf1e06487e 100644 --- a/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php +++ b/tests/integration/Mvc/Micro/Collection/GetHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php b/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php index fc66a1eae76..ac364645343 100644 --- a/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php +++ b/tests/integration/Mvc/Micro/Collection/GetHandlersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php b/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php index 76d1cc37afe..ceb4513695b 100644 --- a/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php +++ b/tests/integration/Mvc/Micro/Collection/GetPrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/Collection/HeadCest.php b/tests/integration/Mvc/Micro/Collection/HeadCest.php index edb40c35654..860530b6a14 100644 --- a/tests/integration/Mvc/Micro/Collection/HeadCest.php +++ b/tests/integration/Mvc/Micro/Collection/HeadCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class HeadCest { diff --git a/tests/integration/Mvc/Micro/Collection/IsLazyCest.php b/tests/integration/Mvc/Micro/Collection/IsLazyCest.php index 8eadb62c26b..3c8f8c50c54 100644 --- a/tests/integration/Mvc/Micro/Collection/IsLazyCest.php +++ b/tests/integration/Mvc/Micro/Collection/IsLazyCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class IsLazyCest { diff --git a/tests/integration/Mvc/Micro/Collection/MapCest.php b/tests/integration/Mvc/Micro/Collection/MapCest.php index ce215258d2b..623de2a4914 100644 --- a/tests/integration/Mvc/Micro/Collection/MapCest.php +++ b/tests/integration/Mvc/Micro/Collection/MapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/Collection/MapViaCest.php b/tests/integration/Mvc/Micro/Collection/MapViaCest.php index 905839917b9..78b5d17d14d 100644 --- a/tests/integration/Mvc/Micro/Collection/MapViaCest.php +++ b/tests/integration/Mvc/Micro/Collection/MapViaCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Controllers\MicroController; +use Phalcon\Tests\Controllers\MicroController; /** * Class MapViaCest diff --git a/tests/integration/Mvc/Micro/Collection/OptionsCest.php b/tests/integration/Mvc/Micro/Collection/OptionsCest.php index fd4a74f1967..c3bbe99ade4 100644 --- a/tests/integration/Mvc/Micro/Collection/OptionsCest.php +++ b/tests/integration/Mvc/Micro/Collection/OptionsCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class OptionsCest { diff --git a/tests/integration/Mvc/Micro/Collection/PatchCest.php b/tests/integration/Mvc/Micro/Collection/PatchCest.php index 64c8b838c2c..026744b0540 100644 --- a/tests/integration/Mvc/Micro/Collection/PatchCest.php +++ b/tests/integration/Mvc/Micro/Collection/PatchCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class PatchCest { diff --git a/tests/integration/Mvc/Micro/Collection/PostCest.php b/tests/integration/Mvc/Micro/Collection/PostCest.php index 18cd76bd459..61ed1e6a4c7 100644 --- a/tests/integration/Mvc/Micro/Collection/PostCest.php +++ b/tests/integration/Mvc/Micro/Collection/PostCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class PostCest { diff --git a/tests/integration/Mvc/Micro/Collection/PutCest.php b/tests/integration/Mvc/Micro/Collection/PutCest.php index 412be8cf294..de94bd57841 100644 --- a/tests/integration/Mvc/Micro/Collection/PutCest.php +++ b/tests/integration/Mvc/Micro/Collection/PutCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Fixtures\Micro\HttpMethodHandler; +use Phalcon\Tests\Fixtures\Micro\HttpMethodHandler; class PutCest { diff --git a/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php b/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php index e71730aed81..2e8f429cec1 100644 --- a/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php +++ b/tests/integration/Mvc/Micro/Collection/SetHandlerCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Controllers\Micro\Collections\PersonasLazyController; +use Phalcon\Tests\Controllers\Micro\Collections\PersonasLazyController; /** * Class SetHandlerCest diff --git a/tests/integration/Mvc/Micro/Collection/SetLazyCest.php b/tests/integration/Mvc/Micro/Collection/SetLazyCest.php index baca4192ef7..def4c789f4c 100644 --- a/tests/integration/Mvc/Micro/Collection/SetLazyCest.php +++ b/tests/integration/Mvc/Micro/Collection/SetLazyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php b/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php index f327fb2b7ca..990f9a6a785 100644 --- a/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php +++ b/tests/integration/Mvc/Micro/Collection/SetPrefixCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\Collection; +namespace Phalcon\Tests\Integration\Mvc\Micro\Collection; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Controllers\Micro\Collections\PersonasController; +use Phalcon\Tests\Controllers\Micro\Collections\PersonasController; /** * Class SetPrefixCest diff --git a/tests/integration/Mvc/Micro/ConstructCest.php b/tests/integration/Mvc/Micro/ConstructCest.php index dd4c5aa3813..aa467147e68 100644 --- a/tests/integration/Mvc/Micro/ConstructCest.php +++ b/tests/integration/Mvc/Micro/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/DeleteCest.php b/tests/integration/Mvc/Micro/DeleteCest.php index 13b8fbef199..f404a372e3a 100644 --- a/tests/integration/Mvc/Micro/DeleteCest.php +++ b/tests/integration/Mvc/Micro/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/ErrorCest.php b/tests/integration/Mvc/Micro/ErrorCest.php index ff79a0bed80..467e1a962cb 100644 --- a/tests/integration/Mvc/Micro/ErrorCest.php +++ b/tests/integration/Mvc/Micro/ErrorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use Exception; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/FinishCest.php b/tests/integration/Mvc/Micro/FinishCest.php index d0ae44fdecf..8805bbe00ff 100644 --- a/tests/integration/Mvc/Micro/FinishCest.php +++ b/tests/integration/Mvc/Micro/FinishCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/GetActiveHandlerCest.php b/tests/integration/Mvc/Micro/GetActiveHandlerCest.php index 34baa1ce715..97667e61274 100644 --- a/tests/integration/Mvc/Micro/GetActiveHandlerCest.php +++ b/tests/integration/Mvc/Micro/GetActiveHandlerCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; use Phalcon\Mvc\Micro\LazyLoader; -use Phalcon\Test\Fixtures\Micro\RestHandler; +use Phalcon\Tests\Fixtures\Micro\RestHandler; use function is_array; diff --git a/tests/integration/Mvc/Micro/GetBoundModelsCest.php b/tests/integration/Mvc/Micro/GetBoundModelsCest.php index b7f88638af5..869fc3994cb 100644 --- a/tests/integration/Mvc/Micro/GetBoundModelsCest.php +++ b/tests/integration/Mvc/Micro/GetBoundModelsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/GetCest.php b/tests/integration/Mvc/Micro/GetCest.php index 9b7e169409e..a344b3a6dd5 100644 --- a/tests/integration/Mvc/Micro/GetCest.php +++ b/tests/integration/Mvc/Micro/GetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/GetEventsManagerCest.php b/tests/integration/Mvc/Micro/GetEventsManagerCest.php index 199196358c2..9d0cf3eb5cf 100644 --- a/tests/integration/Mvc/Micro/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Micro/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/GetHandlersCest.php b/tests/integration/Mvc/Micro/GetHandlersCest.php index f0c2c2539c6..1fed7ab3329 100644 --- a/tests/integration/Mvc/Micro/GetHandlersCest.php +++ b/tests/integration/Mvc/Micro/GetHandlersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/GetModelBinderCest.php b/tests/integration/Mvc/Micro/GetModelBinderCest.php index bf5b61b4937..7822d7bff2e 100644 --- a/tests/integration/Mvc/Micro/GetModelBinderCest.php +++ b/tests/integration/Mvc/Micro/GetModelBinderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/GetReturnedValueCest.php b/tests/integration/Mvc/Micro/GetReturnedValueCest.php index 38ed0389f7b..0815fbbcebd 100644 --- a/tests/integration/Mvc/Micro/GetReturnedValueCest.php +++ b/tests/integration/Mvc/Micro/GetReturnedValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/GetRouterCest.php b/tests/integration/Mvc/Micro/GetRouterCest.php index a282da3fd8c..60a2e9903e1 100644 --- a/tests/integration/Mvc/Micro/GetRouterCest.php +++ b/tests/integration/Mvc/Micro/GetRouterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/GetServiceCest.php b/tests/integration/Mvc/Micro/GetServiceCest.php index e8551755129..e155e50d99c 100644 --- a/tests/integration/Mvc/Micro/GetServiceCest.php +++ b/tests/integration/Mvc/Micro/GetServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/GetSetDICest.php b/tests/integration/Mvc/Micro/GetSetDICest.php index 3385b9e07c5..21560c08955 100644 --- a/tests/integration/Mvc/Micro/GetSetDICest.php +++ b/tests/integration/Mvc/Micro/GetSetDICest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; use Phalcon\Mvc\Micro; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/integration/Mvc/Micro/GetSharedServiceCest.php b/tests/integration/Mvc/Micro/GetSharedServiceCest.php index b06501770c1..1db59dd30c7 100644 --- a/tests/integration/Mvc/Micro/GetSharedServiceCest.php +++ b/tests/integration/Mvc/Micro/GetSharedServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/HandleCest.php b/tests/integration/Mvc/Micro/HandleCest.php index 63a48d3d8fe..c2702ff7363 100644 --- a/tests/integration/Mvc/Micro/HandleCest.php +++ b/tests/integration/Mvc/Micro/HandleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/HasServiceCest.php b/tests/integration/Mvc/Micro/HasServiceCest.php index d21bda2d440..fe47b067dea 100644 --- a/tests/integration/Mvc/Micro/HasServiceCest.php +++ b/tests/integration/Mvc/Micro/HasServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/HeadCest.php b/tests/integration/Mvc/Micro/HeadCest.php index 181967d4dcc..a3a0a1a03ee 100644 --- a/tests/integration/Mvc/Micro/HeadCest.php +++ b/tests/integration/Mvc/Micro/HeadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php b/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php index 0fedb07190e..c25bc9285bb 100644 --- a/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php +++ b/tests/integration/Mvc/Micro/LazyLoader/CallMethodCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; +namespace Phalcon\Tests\Integration\Mvc\Micro\LazyLoader; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php b/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php index de3edca9a94..9a9d6feffc1 100644 --- a/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php +++ b/tests/integration/Mvc/Micro/LazyLoader/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; +namespace Phalcon\Tests\Integration\Mvc\Micro\LazyLoader; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php b/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php index 5cd7c7c0c04..45ac0536272 100644 --- a/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php +++ b/tests/integration/Mvc/Micro/LazyLoader/GetDefinitionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; +namespace Phalcon\Tests\Integration\Mvc\Micro\LazyLoader; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/LazyLoader/GetHandlerCest.php b/tests/integration/Mvc/Micro/LazyLoader/GetHandlerCest.php index bbd08cc4ada..301209fa7f2 100644 --- a/tests/integration/Mvc/Micro/LazyLoader/GetHandlerCest.php +++ b/tests/integration/Mvc/Micro/LazyLoader/GetHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro\LazyLoader; +namespace Phalcon\Tests\Integration\Mvc\Micro\LazyLoader; use IntegrationTester; use Phalcon\Assets\Manager; diff --git a/tests/integration/Mvc/Micro/MapCest.php b/tests/integration/Mvc/Micro/MapCest.php index 800a9a7cd43..a2fbcfe6d6a 100644 --- a/tests/integration/Mvc/Micro/MapCest.php +++ b/tests/integration/Mvc/Micro/MapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/MountCest.php b/tests/integration/Mvc/Micro/MountCest.php index cc5308659fc..9080367903c 100644 --- a/tests/integration/Mvc/Micro/MountCest.php +++ b/tests/integration/Mvc/Micro/MountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/NotFoundCest.php b/tests/integration/Mvc/Micro/NotFoundCest.php index ac5fd981cf7..d4d5d43fae9 100644 --- a/tests/integration/Mvc/Micro/NotFoundCest.php +++ b/tests/integration/Mvc/Micro/NotFoundCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; -use Phalcon\Test\Fixtures\Micro\RestHandler; +use Phalcon\Tests\Fixtures\Micro\RestHandler; /** * Class NotFoundCest diff --git a/tests/integration/Mvc/Micro/OffsetExistsCest.php b/tests/integration/Mvc/Micro/OffsetExistsCest.php index c2be895f718..da514529d1f 100644 --- a/tests/integration/Mvc/Micro/OffsetExistsCest.php +++ b/tests/integration/Mvc/Micro/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/OffsetGetCest.php b/tests/integration/Mvc/Micro/OffsetGetCest.php index 35c562cabb8..a5e01384490 100644 --- a/tests/integration/Mvc/Micro/OffsetGetCest.php +++ b/tests/integration/Mvc/Micro/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/OffsetSetCest.php b/tests/integration/Mvc/Micro/OffsetSetCest.php index b90d676a2fb..3fb2eafa49f 100644 --- a/tests/integration/Mvc/Micro/OffsetSetCest.php +++ b/tests/integration/Mvc/Micro/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/OffsetUnsetCest.php b/tests/integration/Mvc/Micro/OffsetUnsetCest.php index 54df3c807b2..3deb7a93f38 100644 --- a/tests/integration/Mvc/Micro/OffsetUnsetCest.php +++ b/tests/integration/Mvc/Micro/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/Micro/OptionsCest.php b/tests/integration/Mvc/Micro/OptionsCest.php index 2ccfc9aa39d..2fabd50b7e0 100644 --- a/tests/integration/Mvc/Micro/OptionsCest.php +++ b/tests/integration/Mvc/Micro/OptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/PatchCest.php b/tests/integration/Mvc/Micro/PatchCest.php index 68ce19d6f16..c629a300142 100644 --- a/tests/integration/Mvc/Micro/PatchCest.php +++ b/tests/integration/Mvc/Micro/PatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/PostCest.php b/tests/integration/Mvc/Micro/PostCest.php index 82eb0841818..f2d72a9a10b 100644 --- a/tests/integration/Mvc/Micro/PostCest.php +++ b/tests/integration/Mvc/Micro/PostCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/PutCest.php b/tests/integration/Mvc/Micro/PutCest.php index dd79ea3a7af..47399e9f501 100644 --- a/tests/integration/Mvc/Micro/PutCest.php +++ b/tests/integration/Mvc/Micro/PutCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/Refactor/MicroMvcCollectionsCest.php b/tests/integration/Mvc/Micro/Refactor/MicroMvcCollectionsCest.php index f9bcaa2879c..55e9bb0f708 100644 --- a/tests/integration/Mvc/Micro/Refactor/MicroMvcCollectionsCest.php +++ b/tests/integration/Mvc/Micro/Refactor/MicroMvcCollectionsCest.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Micro\Refactor; +namespace Phalcon\Tests\Integration\Mvc\Micro\Refactor; use IntegrationTester; use Phalcon\Mvc\Micro; use Phalcon\Mvc\Micro\Collection; -use Phalcon\Test\Controllers\Micro\Collections\PersonasController; +use Phalcon\Tests\Controllers\Micro\Collections\PersonasController; class MicroMvcCollectionsCest { diff --git a/tests/integration/Mvc/Micro/SetActiveHandlerCest.php b/tests/integration/Mvc/Micro/SetActiveHandlerCest.php index 7290b85fa1f..785aee281f2 100644 --- a/tests/integration/Mvc/Micro/SetActiveHandlerCest.php +++ b/tests/integration/Mvc/Micro/SetActiveHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/SetEventsManagerCest.php b/tests/integration/Mvc/Micro/SetEventsManagerCest.php index 1f807a08cfe..0d5f0f8fb7d 100644 --- a/tests/integration/Mvc/Micro/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Micro/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/SetModelBinderCest.php b/tests/integration/Mvc/Micro/SetModelBinderCest.php index 796b345d979..9275b8b658c 100644 --- a/tests/integration/Mvc/Micro/SetModelBinderCest.php +++ b/tests/integration/Mvc/Micro/SetModelBinderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/SetResponseHandlerCest.php b/tests/integration/Mvc/Micro/SetResponseHandlerCest.php index 4646264767c..7632aa0a325 100644 --- a/tests/integration/Mvc/Micro/SetResponseHandlerCest.php +++ b/tests/integration/Mvc/Micro/SetResponseHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; use Phalcon\Mvc\Micro; diff --git a/tests/integration/Mvc/Micro/SetServiceCest.php b/tests/integration/Mvc/Micro/SetServiceCest.php index 013cdc6a9e0..a89a22e175c 100644 --- a/tests/integration/Mvc/Micro/SetServiceCest.php +++ b/tests/integration/Mvc/Micro/SetServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/StopCest.php b/tests/integration/Mvc/Micro/StopCest.php index c186b21ba75..1052e87525c 100644 --- a/tests/integration/Mvc/Micro/StopCest.php +++ b/tests/integration/Mvc/Micro/StopCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Micro/UnderscoreGetCest.php b/tests/integration/Mvc/Micro/UnderscoreGetCest.php index 04ca0733884..e75480d1bc8 100644 --- a/tests/integration/Mvc/Micro/UnderscoreGetCest.php +++ b/tests/integration/Mvc/Micro/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Micro; +namespace Phalcon\Tests\Integration\Mvc\Micro; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/AddCest.php b/tests/integration/Mvc/Router/AddCest.php index d5e4611f8ff..dc4196d65c3 100644 --- a/tests/integration/Mvc/Router/AddCest.php +++ b/tests/integration/Mvc/Router/AddCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddCest { diff --git a/tests/integration/Mvc/Router/AddConnectCest.php b/tests/integration/Mvc/Router/AddConnectCest.php index c4972f4003e..b33658da507 100644 --- a/tests/integration/Mvc/Router/AddConnectCest.php +++ b/tests/integration/Mvc/Router/AddConnectCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddConnectCest { diff --git a/tests/integration/Mvc/Router/AddDeleteCest.php b/tests/integration/Mvc/Router/AddDeleteCest.php index aa1234d896e..262a117e6a3 100644 --- a/tests/integration/Mvc/Router/AddDeleteCest.php +++ b/tests/integration/Mvc/Router/AddDeleteCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddDeleteCest { diff --git a/tests/integration/Mvc/Router/AddGetCest.php b/tests/integration/Mvc/Router/AddGetCest.php index 9960097534d..418b751947a 100644 --- a/tests/integration/Mvc/Router/AddGetCest.php +++ b/tests/integration/Mvc/Router/AddGetCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddGetCest { diff --git a/tests/integration/Mvc/Router/AddHeadCest.php b/tests/integration/Mvc/Router/AddHeadCest.php index ac1002ca842..40594924ac2 100644 --- a/tests/integration/Mvc/Router/AddHeadCest.php +++ b/tests/integration/Mvc/Router/AddHeadCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddHeadCest { diff --git a/tests/integration/Mvc/Router/AddOptionsCest.php b/tests/integration/Mvc/Router/AddOptionsCest.php index 099fecefd45..3436743b898 100644 --- a/tests/integration/Mvc/Router/AddOptionsCest.php +++ b/tests/integration/Mvc/Router/AddOptionsCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddOptionsCest { diff --git a/tests/integration/Mvc/Router/AddPatchCest.php b/tests/integration/Mvc/Router/AddPatchCest.php index 8b9590ef182..d5a1c563140 100644 --- a/tests/integration/Mvc/Router/AddPatchCest.php +++ b/tests/integration/Mvc/Router/AddPatchCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPatchCest { diff --git a/tests/integration/Mvc/Router/AddPostCest.php b/tests/integration/Mvc/Router/AddPostCest.php index 20cab202a05..35297781d42 100644 --- a/tests/integration/Mvc/Router/AddPostCest.php +++ b/tests/integration/Mvc/Router/AddPostCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPostCest { diff --git a/tests/integration/Mvc/Router/AddPurgeCest.php b/tests/integration/Mvc/Router/AddPurgeCest.php index 6fc46057acb..d65f0dc831f 100644 --- a/tests/integration/Mvc/Router/AddPurgeCest.php +++ b/tests/integration/Mvc/Router/AddPurgeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPurgeCest { diff --git a/tests/integration/Mvc/Router/AddPutCest.php b/tests/integration/Mvc/Router/AddPutCest.php index 3c4e74c0920..b3fed33a5d8 100644 --- a/tests/integration/Mvc/Router/AddPutCest.php +++ b/tests/integration/Mvc/Router/AddPutCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPutCest { diff --git a/tests/integration/Mvc/Router/AddTraceCest.php b/tests/integration/Mvc/Router/AddTraceCest.php index ba8dade6c62..c69abb81bb2 100644 --- a/tests/integration/Mvc/Router/AddTraceCest.php +++ b/tests/integration/Mvc/Router/AddTraceCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddTraceCest { diff --git a/tests/integration/Mvc/Router/Annotations/AddCest.php b/tests/integration/Mvc/Router/Annotations/AddCest.php index 95966d57e96..8fe7dbe7e24 100644 --- a/tests/integration/Mvc/Router/Annotations/AddCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddConnectCest.php b/tests/integration/Mvc/Router/Annotations/AddConnectCest.php index f9e2cbad936..8cc6800e650 100644 --- a/tests/integration/Mvc/Router/Annotations/AddConnectCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddConnectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddDeleteCest.php b/tests/integration/Mvc/Router/Annotations/AddDeleteCest.php index 553e88fc081..b84ecd067cc 100644 --- a/tests/integration/Mvc/Router/Annotations/AddDeleteCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddDeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddGetCest.php b/tests/integration/Mvc/Router/Annotations/AddGetCest.php index b373733a59f..afbe044f59a 100644 --- a/tests/integration/Mvc/Router/Annotations/AddGetCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddHeadCest.php b/tests/integration/Mvc/Router/Annotations/AddHeadCest.php index 05a2023c9af..86890dede6e 100644 --- a/tests/integration/Mvc/Router/Annotations/AddHeadCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddHeadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddModuleResourceCest.php b/tests/integration/Mvc/Router/Annotations/AddModuleResourceCest.php index c28456d834a..0957a0ceff2 100644 --- a/tests/integration/Mvc/Router/Annotations/AddModuleResourceCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddModuleResourceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddOptionsCest.php b/tests/integration/Mvc/Router/Annotations/AddOptionsCest.php index 8102c6e92b1..e1af33dfaa2 100644 --- a/tests/integration/Mvc/Router/Annotations/AddOptionsCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddPatchCest.php b/tests/integration/Mvc/Router/Annotations/AddPatchCest.php index 49954042e76..a8f27edcbae 100644 --- a/tests/integration/Mvc/Router/Annotations/AddPatchCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddPatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddPostCest.php b/tests/integration/Mvc/Router/Annotations/AddPostCest.php index 713a953746f..1ba2b545b31 100644 --- a/tests/integration/Mvc/Router/Annotations/AddPostCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddPostCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddPurgeCest.php b/tests/integration/Mvc/Router/Annotations/AddPurgeCest.php index 0a072bd50dc..17fc3bed419 100644 --- a/tests/integration/Mvc/Router/Annotations/AddPurgeCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddPurgeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddPutCest.php b/tests/integration/Mvc/Router/Annotations/AddPutCest.php index 931043ba434..a7ad596037d 100644 --- a/tests/integration/Mvc/Router/Annotations/AddPutCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddPutCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddResourceCest.php b/tests/integration/Mvc/Router/Annotations/AddResourceCest.php index eff977848b6..4fed6ce5c09 100644 --- a/tests/integration/Mvc/Router/Annotations/AddResourceCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddResourceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AddTraceCest.php b/tests/integration/Mvc/Router/Annotations/AddTraceCest.php index c7996d58655..24398c32bb3 100644 --- a/tests/integration/Mvc/Router/Annotations/AddTraceCest.php +++ b/tests/integration/Mvc/Router/Annotations/AddTraceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/AttachCest.php b/tests/integration/Mvc/Router/Annotations/AttachCest.php index 5475a983caf..f6b45c53b13 100644 --- a/tests/integration/Mvc/Router/Annotations/AttachCest.php +++ b/tests/integration/Mvc/Router/Annotations/AttachCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/ClearCest.php b/tests/integration/Mvc/Router/Annotations/ClearCest.php index b5925cd9f3f..75d4bc43b37 100644 --- a/tests/integration/Mvc/Router/Annotations/ClearCest.php +++ b/tests/integration/Mvc/Router/Annotations/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/ConstructCest.php b/tests/integration/Mvc/Router/Annotations/ConstructCest.php index 1b6d96c4eac..953ad18782c 100644 --- a/tests/integration/Mvc/Router/Annotations/ConstructCest.php +++ b/tests/integration/Mvc/Router/Annotations/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetActionNameCest.php b/tests/integration/Mvc/Router/Annotations/GetActionNameCest.php index c78ab415b73..66d9b633fcc 100644 --- a/tests/integration/Mvc/Router/Annotations/GetActionNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetControllerNameCest.php b/tests/integration/Mvc/Router/Annotations/GetControllerNameCest.php index 2201cdf7c4c..e91d94cb253 100644 --- a/tests/integration/Mvc/Router/Annotations/GetControllerNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetDefaultsCest.php b/tests/integration/Mvc/Router/Annotations/GetDefaultsCest.php index 6d3b7915cae..988399a80dd 100644 --- a/tests/integration/Mvc/Router/Annotations/GetDefaultsCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetDefaultsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetEventsManagerCest.php b/tests/integration/Mvc/Router/Annotations/GetEventsManagerCest.php index 45e431b696a..5b82c8225d8 100644 --- a/tests/integration/Mvc/Router/Annotations/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetKeyRouteIdsCest.php b/tests/integration/Mvc/Router/Annotations/GetKeyRouteIdsCest.php index 7c4d8d02675..b2f410fb6e1 100644 --- a/tests/integration/Mvc/Router/Annotations/GetKeyRouteIdsCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetKeyRouteIdsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetKeyRouteNamesCest.php b/tests/integration/Mvc/Router/Annotations/GetKeyRouteNamesCest.php index 5123459dab4..9abc1ce03fe 100644 --- a/tests/integration/Mvc/Router/Annotations/GetKeyRouteNamesCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetKeyRouteNamesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetMatchedRouteCest.php b/tests/integration/Mvc/Router/Annotations/GetMatchedRouteCest.php index 381dcd19a55..c7314def446 100644 --- a/tests/integration/Mvc/Router/Annotations/GetMatchedRouteCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetMatchedRouteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetMatchesCest.php b/tests/integration/Mvc/Router/Annotations/GetMatchesCest.php index 519b5b7fa46..5d8318bbe55 100644 --- a/tests/integration/Mvc/Router/Annotations/GetMatchesCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetMatchesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetModuleNameCest.php b/tests/integration/Mvc/Router/Annotations/GetModuleNameCest.php index 0f64a716e8d..a49cb698c39 100644 --- a/tests/integration/Mvc/Router/Annotations/GetModuleNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetNamespaceNameCest.php b/tests/integration/Mvc/Router/Annotations/GetNamespaceNameCest.php index 29f670ecbbc..2d4783c90cb 100644 --- a/tests/integration/Mvc/Router/Annotations/GetNamespaceNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetParamsCest.php b/tests/integration/Mvc/Router/Annotations/GetParamsCest.php index 3b6d799dbda..cd5d6cc57c0 100644 --- a/tests/integration/Mvc/Router/Annotations/GetParamsCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetResourcesCest.php b/tests/integration/Mvc/Router/Annotations/GetResourcesCest.php index 104068debef..31e5e4529d7 100644 --- a/tests/integration/Mvc/Router/Annotations/GetResourcesCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetResourcesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetRouteByIdCest.php b/tests/integration/Mvc/Router/Annotations/GetRouteByIdCest.php index 19c3d52d770..dd88e9a9401 100644 --- a/tests/integration/Mvc/Router/Annotations/GetRouteByIdCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetRouteByIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetRouteByNameCest.php b/tests/integration/Mvc/Router/Annotations/GetRouteByNameCest.php index 972e02c4e66..088ca30742d 100644 --- a/tests/integration/Mvc/Router/Annotations/GetRouteByNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetRouteByNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetRoutesCest.php b/tests/integration/Mvc/Router/Annotations/GetRoutesCest.php index bb140fee538..5dcdf5d0a59 100644 --- a/tests/integration/Mvc/Router/Annotations/GetRoutesCest.php +++ b/tests/integration/Mvc/Router/Annotations/GetRoutesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/GetSetDICest.php b/tests/integration/Mvc/Router/Annotations/GetSetDICest.php index 8f8f293993b..12678e1a852 100644 --- a/tests/integration/Mvc/Router/Annotations/GetSetDICest.php +++ b/tests/integration/Mvc/Router/Annotations/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/HandleCest.php b/tests/integration/Mvc/Router/Annotations/HandleCest.php index ec4dceed0df..ea528aaf6a0 100644 --- a/tests/integration/Mvc/Router/Annotations/HandleCest.php +++ b/tests/integration/Mvc/Router/Annotations/HandleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/IsExactControllerNameCest.php b/tests/integration/Mvc/Router/Annotations/IsExactControllerNameCest.php index b29c6dbfdb1..65635e2e8c1 100644 --- a/tests/integration/Mvc/Router/Annotations/IsExactControllerNameCest.php +++ b/tests/integration/Mvc/Router/Annotations/IsExactControllerNameCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; use Phalcon\Mvc\Router\Annotations; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class IsExactControllerNameCest { diff --git a/tests/integration/Mvc/Router/Annotations/MountCest.php b/tests/integration/Mvc/Router/Annotations/MountCest.php index c47562e448a..1b7ec81ee89 100644 --- a/tests/integration/Mvc/Router/Annotations/MountCest.php +++ b/tests/integration/Mvc/Router/Annotations/MountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/NotFoundCest.php b/tests/integration/Mvc/Router/Annotations/NotFoundCest.php index ee050dfebea..c43a56f274c 100644 --- a/tests/integration/Mvc/Router/Annotations/NotFoundCest.php +++ b/tests/integration/Mvc/Router/Annotations/NotFoundCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/ProcessActionAnnotationCest.php b/tests/integration/Mvc/Router/Annotations/ProcessActionAnnotationCest.php index ef59bf832aa..9783c67df77 100644 --- a/tests/integration/Mvc/Router/Annotations/ProcessActionAnnotationCest.php +++ b/tests/integration/Mvc/Router/Annotations/ProcessActionAnnotationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php b/tests/integration/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php index 7116aee7819..8d4768af212 100644 --- a/tests/integration/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php +++ b/tests/integration/Mvc/Router/Annotations/ProcessControllerAnnotationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/RemoveExtraSlashesCest.php b/tests/integration/Mvc/Router/Annotations/RemoveExtraSlashesCest.php index 1e4aa67d5c5..6dd60e03d07 100644 --- a/tests/integration/Mvc/Router/Annotations/RemoveExtraSlashesCest.php +++ b/tests/integration/Mvc/Router/Annotations/RemoveExtraSlashesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetActionPreformatCallbackCest.php b/tests/integration/Mvc/Router/Annotations/SetActionPreformatCallbackCest.php index 9393f54ba5f..7b35cfd56c8 100644 --- a/tests/integration/Mvc/Router/Annotations/SetActionPreformatCallbackCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetActionPreformatCallbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; use Phalcon\Mvc\Router\Annotations; diff --git a/tests/integration/Mvc/Router/Annotations/SetActionSuffixCest.php b/tests/integration/Mvc/Router/Annotations/SetActionSuffixCest.php index d09ac10f0c8..d5645374dd2 100644 --- a/tests/integration/Mvc/Router/Annotations/SetActionSuffixCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetActionSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetControllerSuffixCest.php b/tests/integration/Mvc/Router/Annotations/SetControllerSuffixCest.php index 50740913664..fc6d77590e1 100644 --- a/tests/integration/Mvc/Router/Annotations/SetControllerSuffixCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetControllerSuffixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetDefaultActionCest.php b/tests/integration/Mvc/Router/Annotations/SetDefaultActionCest.php index 0956c3bb35b..89a65800044 100644 --- a/tests/integration/Mvc/Router/Annotations/SetDefaultActionCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetDefaultActionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetDefaultControllerCest.php b/tests/integration/Mvc/Router/Annotations/SetDefaultControllerCest.php index 0d63cca050c..0702aca1a59 100644 --- a/tests/integration/Mvc/Router/Annotations/SetDefaultControllerCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetDefaultControllerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetDefaultModuleCest.php b/tests/integration/Mvc/Router/Annotations/SetDefaultModuleCest.php index 23f5d480362..96b19f89ad9 100644 --- a/tests/integration/Mvc/Router/Annotations/SetDefaultModuleCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetDefaultModuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetDefaultNamespaceCest.php b/tests/integration/Mvc/Router/Annotations/SetDefaultNamespaceCest.php index 36cb64fe434..a4cabf05a35 100644 --- a/tests/integration/Mvc/Router/Annotations/SetDefaultNamespaceCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetDefaultNamespaceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetDefaultsCest.php b/tests/integration/Mvc/Router/Annotations/SetDefaultsCest.php index 256f58bbb45..695315aa78f 100644 --- a/tests/integration/Mvc/Router/Annotations/SetDefaultsCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetDefaultsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetEventsManagerCest.php b/tests/integration/Mvc/Router/Annotations/SetEventsManagerCest.php index 7a70e77783b..4ff5e7d52ad 100644 --- a/tests/integration/Mvc/Router/Annotations/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetKeyRouteIdsCest.php b/tests/integration/Mvc/Router/Annotations/SetKeyRouteIdsCest.php index f651b445040..7a3b979438d 100644 --- a/tests/integration/Mvc/Router/Annotations/SetKeyRouteIdsCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetKeyRouteIdsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/SetKeyRouteNamesCest.php b/tests/integration/Mvc/Router/Annotations/SetKeyRouteNamesCest.php index e47e4d296e3..edbe0be83fa 100644 --- a/tests/integration/Mvc/Router/Annotations/SetKeyRouteNamesCest.php +++ b/tests/integration/Mvc/Router/Annotations/SetKeyRouteNamesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Annotations/WasMatchedCest.php b/tests/integration/Mvc/Router/Annotations/WasMatchedCest.php index 01660d65595..b4eb1167564 100644 --- a/tests/integration/Mvc/Router/Annotations/WasMatchedCest.php +++ b/tests/integration/Mvc/Router/Annotations/WasMatchedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Router\Annotations; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/AttachCest.php b/tests/integration/Mvc/Router/AttachCest.php index 6af04744373..55d25a55973 100644 --- a/tests/integration/Mvc/Router/AttachCest.php +++ b/tests/integration/Mvc/Router/AttachCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; use Phalcon\Mvc\Router\Route; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AttachCest { diff --git a/tests/integration/Mvc/Router/ClearCest.php b/tests/integration/Mvc/Router/ClearCest.php index 59da7854419..0f21e579f70 100644 --- a/tests/integration/Mvc/Router/ClearCest.php +++ b/tests/integration/Mvc/Router/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/ConstructCest.php b/tests/integration/Mvc/Router/ConstructCest.php index 9e851f961dc..77178726ed6 100644 --- a/tests/integration/Mvc/Router/ConstructCest.php +++ b/tests/integration/Mvc/Router/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetActionNameCest.php b/tests/integration/Mvc/Router/GetActionNameCest.php index be558109ada..43cb52baec6 100644 --- a/tests/integration/Mvc/Router/GetActionNameCest.php +++ b/tests/integration/Mvc/Router/GetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetControllerNameCest.php b/tests/integration/Mvc/Router/GetControllerNameCest.php index c4d6787c34d..c1ead390ee5 100644 --- a/tests/integration/Mvc/Router/GetControllerNameCest.php +++ b/tests/integration/Mvc/Router/GetControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetEventsManagerCest.php b/tests/integration/Mvc/Router/GetEventsManagerCest.php index c8d22af74dd..e35b5b92497 100644 --- a/tests/integration/Mvc/Router/GetEventsManagerCest.php +++ b/tests/integration/Mvc/Router/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetKeyRouteIdsCest.php b/tests/integration/Mvc/Router/GetKeyRouteIdsCest.php index cfb1eb1e51c..f576cf1d936 100644 --- a/tests/integration/Mvc/Router/GetKeyRouteIdsCest.php +++ b/tests/integration/Mvc/Router/GetKeyRouteIdsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetKeyRouteNamesCest.php b/tests/integration/Mvc/Router/GetKeyRouteNamesCest.php index d5b2ed46551..686ad5fa2f4 100644 --- a/tests/integration/Mvc/Router/GetKeyRouteNamesCest.php +++ b/tests/integration/Mvc/Router/GetKeyRouteNamesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetMatchedRouteCest.php b/tests/integration/Mvc/Router/GetMatchedRouteCest.php index 365231a3d2c..1fa4a3dc04f 100644 --- a/tests/integration/Mvc/Router/GetMatchedRouteCest.php +++ b/tests/integration/Mvc/Router/GetMatchedRouteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetMatchesCest.php b/tests/integration/Mvc/Router/GetMatchesCest.php index 9ecc3301802..4fae4617769 100644 --- a/tests/integration/Mvc/Router/GetMatchesCest.php +++ b/tests/integration/Mvc/Router/GetMatchesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetModuleNameCest.php b/tests/integration/Mvc/Router/GetModuleNameCest.php index 47d518104fa..0c7043a4dcb 100644 --- a/tests/integration/Mvc/Router/GetModuleNameCest.php +++ b/tests/integration/Mvc/Router/GetModuleNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetNamespaceNameCest.php b/tests/integration/Mvc/Router/GetNamespaceNameCest.php index 47c72cce835..ebc7acffb54 100644 --- a/tests/integration/Mvc/Router/GetNamespaceNameCest.php +++ b/tests/integration/Mvc/Router/GetNamespaceNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetParamsCest.php b/tests/integration/Mvc/Router/GetParamsCest.php index 217835b45d0..e6385fb212d 100644 --- a/tests/integration/Mvc/Router/GetParamsCest.php +++ b/tests/integration/Mvc/Router/GetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/GetRouteByIdCest.php b/tests/integration/Mvc/Router/GetRouteByIdCest.php index 791ac185699..ae9e7fd6566 100644 --- a/tests/integration/Mvc/Router/GetRouteByIdCest.php +++ b/tests/integration/Mvc/Router/GetRouteByIdCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router\Route; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class GetRouteByIdCest { diff --git a/tests/integration/Mvc/Router/GetRouteByNameCest.php b/tests/integration/Mvc/Router/GetRouteByNameCest.php index 698cea049e7..9180902cc3b 100644 --- a/tests/integration/Mvc/Router/GetRouteByNameCest.php +++ b/tests/integration/Mvc/Router/GetRouteByNameCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class GetRouteByNameCest { diff --git a/tests/integration/Mvc/Router/GetRoutesCest.php b/tests/integration/Mvc/Router/GetRoutesCest.php index 6bf6667ac35..85602715bf0 100644 --- a/tests/integration/Mvc/Router/GetRoutesCest.php +++ b/tests/integration/Mvc/Router/GetRoutesCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class GetRoutesCest { diff --git a/tests/integration/Mvc/Router/GetSetDICest.php b/tests/integration/Mvc/Router/GetSetDICest.php index faf7ba20053..ee74eb39a46 100644 --- a/tests/integration/Mvc/Router/GetSetDICest.php +++ b/tests/integration/Mvc/Router/GetSetDICest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Di\FactoryDefault; use Phalcon\Mvc\Router; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetDICest { diff --git a/tests/integration/Mvc/Router/GetSetDefaultsCest.php b/tests/integration/Mvc/Router/GetSetDefaultsCest.php index 4ecee5b4e2b..a66f8b32e48 100644 --- a/tests/integration/Mvc/Router/GetSetDefaultsCest.php +++ b/tests/integration/Mvc/Router/GetSetDefaultsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/Group/AddCest.php b/tests/integration/Mvc/Router/Group/AddCest.php index 2ff6051e8af..f783778f5d0 100644 --- a/tests/integration/Mvc/Router/Group/AddCest.php +++ b/tests/integration/Mvc/Router/Group/AddCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddCest { diff --git a/tests/integration/Mvc/Router/Group/AddConnectCest.php b/tests/integration/Mvc/Router/Group/AddConnectCest.php index 1868e6368d0..1af4e3d60df 100644 --- a/tests/integration/Mvc/Router/Group/AddConnectCest.php +++ b/tests/integration/Mvc/Router/Group/AddConnectCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddConnectCest { diff --git a/tests/integration/Mvc/Router/Group/AddDeleteCest.php b/tests/integration/Mvc/Router/Group/AddDeleteCest.php index 080f1a3664e..0a3fc2da6da 100644 --- a/tests/integration/Mvc/Router/Group/AddDeleteCest.php +++ b/tests/integration/Mvc/Router/Group/AddDeleteCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddDeleteCest { diff --git a/tests/integration/Mvc/Router/Group/AddGetCest.php b/tests/integration/Mvc/Router/Group/AddGetCest.php index 90c8e1e3a97..9a5f83cc771 100644 --- a/tests/integration/Mvc/Router/Group/AddGetCest.php +++ b/tests/integration/Mvc/Router/Group/AddGetCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddGetCest { diff --git a/tests/integration/Mvc/Router/Group/AddHeadCest.php b/tests/integration/Mvc/Router/Group/AddHeadCest.php index a3b4069c87f..2126df912ad 100644 --- a/tests/integration/Mvc/Router/Group/AddHeadCest.php +++ b/tests/integration/Mvc/Router/Group/AddHeadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddHeadCest { diff --git a/tests/integration/Mvc/Router/Group/AddOptionsCest.php b/tests/integration/Mvc/Router/Group/AddOptionsCest.php index ba61703edae..6cf7fdbbc72 100644 --- a/tests/integration/Mvc/Router/Group/AddOptionsCest.php +++ b/tests/integration/Mvc/Router/Group/AddOptionsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddOptionsCest { diff --git a/tests/integration/Mvc/Router/Group/AddPatchCest.php b/tests/integration/Mvc/Router/Group/AddPatchCest.php index 647cfb277f3..c7b9e6e0fab 100644 --- a/tests/integration/Mvc/Router/Group/AddPatchCest.php +++ b/tests/integration/Mvc/Router/Group/AddPatchCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPatchCest { diff --git a/tests/integration/Mvc/Router/Group/AddPostCest.php b/tests/integration/Mvc/Router/Group/AddPostCest.php index ae1807ef56e..3ff7ed99c65 100644 --- a/tests/integration/Mvc/Router/Group/AddPostCest.php +++ b/tests/integration/Mvc/Router/Group/AddPostCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPostCest { diff --git a/tests/integration/Mvc/Router/Group/AddPurgeCest.php b/tests/integration/Mvc/Router/Group/AddPurgeCest.php index 44fc28eb4a8..bfdf6382421 100644 --- a/tests/integration/Mvc/Router/Group/AddPurgeCest.php +++ b/tests/integration/Mvc/Router/Group/AddPurgeCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPurgeCest { diff --git a/tests/integration/Mvc/Router/Group/AddPutCest.php b/tests/integration/Mvc/Router/Group/AddPutCest.php index 78249c2638c..143c00b8b24 100644 --- a/tests/integration/Mvc/Router/Group/AddPutCest.php +++ b/tests/integration/Mvc/Router/Group/AddPutCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddPutCest { diff --git a/tests/integration/Mvc/Router/Group/AddTraceCest.php b/tests/integration/Mvc/Router/Group/AddTraceCest.php index bccc8c6ddf1..e42ab4df0ba 100644 --- a/tests/integration/Mvc/Router/Group/AddTraceCest.php +++ b/tests/integration/Mvc/Router/Group/AddTraceCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class AddTraceCest { diff --git a/tests/integration/Mvc/Router/Group/BeforeMatchCest.php b/tests/integration/Mvc/Router/Group/BeforeMatchCest.php index d2b50b4e673..6b182f3fa08 100644 --- a/tests/integration/Mvc/Router/Group/BeforeMatchCest.php +++ b/tests/integration/Mvc/Router/Group/BeforeMatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/ClearCest.php b/tests/integration/Mvc/Router/Group/ClearCest.php index c804ff94c6f..c2cbc08b545 100644 --- a/tests/integration/Mvc/Router/Group/ClearCest.php +++ b/tests/integration/Mvc/Router/Group/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; diff --git a/tests/integration/Mvc/Router/Group/ConstructCest.php b/tests/integration/Mvc/Router/Group/ConstructCest.php index 8f7fdc12c27..b199c2e219a 100644 --- a/tests/integration/Mvc/Router/Group/ConstructCest.php +++ b/tests/integration/Mvc/Router/Group/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/GetBeforeMatchCest.php b/tests/integration/Mvc/Router/Group/GetBeforeMatchCest.php index 7cfaede7a03..c779a868de6 100644 --- a/tests/integration/Mvc/Router/Group/GetBeforeMatchCest.php +++ b/tests/integration/Mvc/Router/Group/GetBeforeMatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/GetHostnameCest.php b/tests/integration/Mvc/Router/Group/GetHostnameCest.php index ab0a18e33b7..26331b8ac9c 100644 --- a/tests/integration/Mvc/Router/Group/GetHostnameCest.php +++ b/tests/integration/Mvc/Router/Group/GetHostnameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/GetPathsCest.php b/tests/integration/Mvc/Router/Group/GetPathsCest.php index e5e32763e47..21d17caf0bc 100644 --- a/tests/integration/Mvc/Router/Group/GetPathsCest.php +++ b/tests/integration/Mvc/Router/Group/GetPathsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/GetRoutesCest.php b/tests/integration/Mvc/Router/Group/GetRoutesCest.php index 04ce8c5fd3f..7cf14911a79 100644 --- a/tests/integration/Mvc/Router/Group/GetRoutesCest.php +++ b/tests/integration/Mvc/Router/Group/GetRoutesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; diff --git a/tests/integration/Mvc/Router/Group/GetSetPrefixCest.php b/tests/integration/Mvc/Router/Group/GetSetPrefixCest.php index 910d0599410..bf5552eb94b 100644 --- a/tests/integration/Mvc/Router/Group/GetSetPrefixCest.php +++ b/tests/integration/Mvc/Router/Group/GetSetPrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; use Phalcon\Mvc\Router\Group; diff --git a/tests/integration/Mvc/Router/Group/SetHostnameCest.php b/tests/integration/Mvc/Router/Group/SetHostnameCest.php index 068036d44bb..bcce0a6e488 100644 --- a/tests/integration/Mvc/Router/Group/SetHostnameCest.php +++ b/tests/integration/Mvc/Router/Group/SetHostnameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Group/SetPathsCest.php b/tests/integration/Mvc/Router/Group/SetPathsCest.php index d61e51a3acf..dce7296d1e9 100644 --- a/tests/integration/Mvc/Router/Group/SetPathsCest.php +++ b/tests/integration/Mvc/Router/Group/SetPathsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Group; +namespace Phalcon\Tests\Integration\Mvc\Router\Group; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/HandleCest.php b/tests/integration/Mvc/Router/HandleCest.php index 2f8c423a4ee..c363bbb5014 100644 --- a/tests/integration/Mvc/Router/HandleCest.php +++ b/tests/integration/Mvc/Router/HandleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Di\FactoryDefault; diff --git a/tests/integration/Mvc/Router/IsExactControllerNameCest.php b/tests/integration/Mvc/Router/IsExactControllerNameCest.php index a564cd052d5..3d7fbe2afd9 100644 --- a/tests/integration/Mvc/Router/IsExactControllerNameCest.php +++ b/tests/integration/Mvc/Router/IsExactControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/MountCest.php b/tests/integration/Mvc/Router/MountCest.php index 747714e8e26..acbf35117b1 100644 --- a/tests/integration/Mvc/Router/MountCest.php +++ b/tests/integration/Mvc/Router/MountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/NotFoundCest.php b/tests/integration/Mvc/Router/NotFoundCest.php index 74f7e6e2bfd..d0e6603f2de 100644 --- a/tests/integration/Mvc/Router/NotFoundCest.php +++ b/tests/integration/Mvc/Router/NotFoundCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class NotFoundCest { diff --git a/tests/integration/Mvc/Router/Refactor/AnnotationsCest.php b/tests/integration/Mvc/Router/Refactor/AnnotationsCest.php index 128f21601b7..3d9123bbcf7 100644 --- a/tests/integration/Mvc/Router/Refactor/AnnotationsCest.php +++ b/tests/integration/Mvc/Router/Refactor/AnnotationsCest.php @@ -11,20 +11,20 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Refactor; +namespace Phalcon\Tests\Integration\Mvc\Router\Refactor; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Router\Annotations; use Phalcon\Mvc\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function is_object; /** * Class AnnotationsCest * - * @package Phalcon\Test\Integration\Mvc\Router\Refactor + * @package Phalcon\Tests\Integration\Mvc\Router\Refactor * @todo: refactor */ class AnnotationsCest @@ -45,9 +45,9 @@ public function testRouterFullResources1(IntegrationTester $I) $router->setDI($container); - $router->addResource("Phalcon\Test\Controllers\Robots", '/'); - $router->addResource("Phalcon\Test\Controllers\Products", '/products'); - $router->addResource("Phalcon\Test\Controllers\About", '/about'); + $router->addResource("Phalcon\Tests\Controllers\Robots", '/'); + $router->addResource("Phalcon\Tests\Controllers\Products", '/products'); + $router->addResource("Phalcon\Tests\Controllers\About", '/about'); $router->handle('/products'); @@ -61,9 +61,9 @@ public function testRouterFullResources1(IntegrationTester $I) $router->setDI($container); - $router->addResource("Phalcon\Test\Controllers\Robots", '/'); - $router->addResource("Phalcon\Test\Controllers\Products", '/products'); - $router->addResource("Phalcon\Test\Controllers\About", '/about'); + $router->addResource("Phalcon\Tests\Controllers\Robots", '/'); + $router->addResource("Phalcon\Tests\Controllers\Products", '/products'); + $router->addResource("Phalcon\Tests\Controllers\About", '/about'); $router->handle('/about'); @@ -125,10 +125,10 @@ public function testRouterFullResources2(IntegrationTester $I, Example $example) $router->setDI($container); - $router->addResource("Phalcon\Test\Controllers\Robots"); - $router->addResource("Phalcon\Test\Controllers\Products"); - $router->addResource("Phalcon\Test\Controllers\About"); - $router->addResource("Phalcon\Test\Controllers\Main"); + $router->addResource("Phalcon\Tests\Controllers\Robots"); + $router->addResource("Phalcon\Tests\Controllers\Products"); + $router->addResource("Phalcon\Tests\Controllers\About"); + $router->addResource("Phalcon\Tests\Controllers\Main"); $router->handle('/'); diff --git a/tests/integration/Mvc/Router/Refactor/GroupCest.php b/tests/integration/Mvc/Router/Refactor/GroupCest.php index 52413054e2e..2ecf383b5d0 100644 --- a/tests/integration/Mvc/Router/Refactor/GroupCest.php +++ b/tests/integration/Mvc/Router/Refactor/GroupCest.php @@ -11,19 +11,19 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Refactor; +namespace Phalcon\Tests\Integration\Mvc\Router\Refactor; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Router; use Phalcon\Mvc\Router\Group; use Phalcon\Mvc\Router\Route; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GroupCest * - * @package Phalcon\Test\Integration\Mvc\Router + * @package Phalcon\Tests\Integration\Mvc\Router * @todo: refactor */ class GroupCest diff --git a/tests/integration/Mvc/Router/RemoveExtraSlashesCest.php b/tests/integration/Mvc/Router/RemoveExtraSlashesCest.php index 0386eb6f0a8..ee419fd19c7 100644 --- a/tests/integration/Mvc/Router/RemoveExtraSlashesCest.php +++ b/tests/integration/Mvc/Router/RemoveExtraSlashesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class RemoveExtraSlashesCest { diff --git a/tests/integration/Mvc/Router/Route/BeforeMatchCest.php b/tests/integration/Mvc/Router/Route/BeforeMatchCest.php index d8a9f5a5615..ef9077c51f4 100644 --- a/tests/integration/Mvc/Router/Route/BeforeMatchCest.php +++ b/tests/integration/Mvc/Router/Route/BeforeMatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/CompilePatternCest.php b/tests/integration/Mvc/Router/Route/CompilePatternCest.php index 5477f18d3e1..0b4049563b5 100644 --- a/tests/integration/Mvc/Router/Route/CompilePatternCest.php +++ b/tests/integration/Mvc/Router/Route/CompilePatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; use Phalcon\Mvc\Router\Route; diff --git a/tests/integration/Mvc/Router/Route/ConstructCest.php b/tests/integration/Mvc/Router/Route/ConstructCest.php index 192f50a4cae..6c5837b6038 100644 --- a/tests/integration/Mvc/Router/Route/ConstructCest.php +++ b/tests/integration/Mvc/Router/Route/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/ConvertCest.php b/tests/integration/Mvc/Router/Route/ConvertCest.php index ca2e1fafe17..b2f97e259b9 100644 --- a/tests/integration/Mvc/Router/Route/ConvertCest.php +++ b/tests/integration/Mvc/Router/Route/ConvertCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/ExtractNamedParamsCest.php b/tests/integration/Mvc/Router/Route/ExtractNamedParamsCest.php index f6e8d359483..977d9893035 100644 --- a/tests/integration/Mvc/Router/Route/ExtractNamedParamsCest.php +++ b/tests/integration/Mvc/Router/Route/ExtractNamedParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetBeforeMatchCest.php b/tests/integration/Mvc/Router/Route/GetBeforeMatchCest.php index f283145ee48..9e17ebc127f 100644 --- a/tests/integration/Mvc/Router/Route/GetBeforeMatchCest.php +++ b/tests/integration/Mvc/Router/Route/GetBeforeMatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetCompiledPatternCest.php b/tests/integration/Mvc/Router/Route/GetCompiledPatternCest.php index ee3dc8e51f5..f0196167509 100644 --- a/tests/integration/Mvc/Router/Route/GetCompiledPatternCest.php +++ b/tests/integration/Mvc/Router/Route/GetCompiledPatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetConvertersCest.php b/tests/integration/Mvc/Router/Route/GetConvertersCest.php index bf44a3628d9..36c8cfc0acb 100644 --- a/tests/integration/Mvc/Router/Route/GetConvertersCest.php +++ b/tests/integration/Mvc/Router/Route/GetConvertersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetGroupCest.php b/tests/integration/Mvc/Router/Route/GetGroupCest.php index 91447cd08b2..9930e49cd61 100644 --- a/tests/integration/Mvc/Router/Route/GetGroupCest.php +++ b/tests/integration/Mvc/Router/Route/GetGroupCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetHostnameCest.php b/tests/integration/Mvc/Router/Route/GetHostnameCest.php index da52bfca73e..86c527e013f 100644 --- a/tests/integration/Mvc/Router/Route/GetHostnameCest.php +++ b/tests/integration/Mvc/Router/Route/GetHostnameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetHttpMethodsCest.php b/tests/integration/Mvc/Router/Route/GetHttpMethodsCest.php index 4e933cca755..3300f1d79be 100644 --- a/tests/integration/Mvc/Router/Route/GetHttpMethodsCest.php +++ b/tests/integration/Mvc/Router/Route/GetHttpMethodsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetIdCest.php b/tests/integration/Mvc/Router/Route/GetIdCest.php index 8c20554dbe2..a70d462f00c 100644 --- a/tests/integration/Mvc/Router/Route/GetIdCest.php +++ b/tests/integration/Mvc/Router/Route/GetIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetMatchCest.php b/tests/integration/Mvc/Router/Route/GetMatchCest.php index 1c19c1d03a3..c00c12e1046 100644 --- a/tests/integration/Mvc/Router/Route/GetMatchCest.php +++ b/tests/integration/Mvc/Router/Route/GetMatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetNameCest.php b/tests/integration/Mvc/Router/Route/GetNameCest.php index a2e44088c36..d876fc5afaa 100644 --- a/tests/integration/Mvc/Router/Route/GetNameCest.php +++ b/tests/integration/Mvc/Router/Route/GetNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetPathsCest.php b/tests/integration/Mvc/Router/Route/GetPathsCest.php index df671e2ac7c..ae0cebf724e 100644 --- a/tests/integration/Mvc/Router/Route/GetPathsCest.php +++ b/tests/integration/Mvc/Router/Route/GetPathsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetPatternCest.php b/tests/integration/Mvc/Router/Route/GetPatternCest.php index 8630cfc51ba..8f2db6c16bf 100644 --- a/tests/integration/Mvc/Router/Route/GetPatternCest.php +++ b/tests/integration/Mvc/Router/Route/GetPatternCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetReversedPathsCest.php b/tests/integration/Mvc/Router/Route/GetReversedPathsCest.php index 6c70bcb4e87..31dce80eca9 100644 --- a/tests/integration/Mvc/Router/Route/GetReversedPathsCest.php +++ b/tests/integration/Mvc/Router/Route/GetReversedPathsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetRouteIdCest.php b/tests/integration/Mvc/Router/Route/GetRouteIdCest.php index 2d153fa656c..100da21a0af 100644 --- a/tests/integration/Mvc/Router/Route/GetRouteIdCest.php +++ b/tests/integration/Mvc/Router/Route/GetRouteIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/GetRoutePathsCest.php b/tests/integration/Mvc/Router/Route/GetRoutePathsCest.php index 90607b82e94..3e4e2318144 100644 --- a/tests/integration/Mvc/Router/Route/GetRoutePathsCest.php +++ b/tests/integration/Mvc/Router/Route/GetRoutePathsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/MatchCest.php b/tests/integration/Mvc/Router/Route/MatchCest.php index a7508d93fe2..01b67b9e35d 100644 --- a/tests/integration/Mvc/Router/Route/MatchCest.php +++ b/tests/integration/Mvc/Router/Route/MatchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/ReConfigureCest.php b/tests/integration/Mvc/Router/Route/ReConfigureCest.php index d0e1419fdfd..08b5975af09 100644 --- a/tests/integration/Mvc/Router/Route/ReConfigureCest.php +++ b/tests/integration/Mvc/Router/Route/ReConfigureCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/ResetCest.php b/tests/integration/Mvc/Router/Route/ResetCest.php index 14e3a19407f..341f12be9c1 100644 --- a/tests/integration/Mvc/Router/Route/ResetCest.php +++ b/tests/integration/Mvc/Router/Route/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/SetGroupCest.php b/tests/integration/Mvc/Router/Route/SetGroupCest.php index 88404d70560..dd414392c59 100644 --- a/tests/integration/Mvc/Router/Route/SetGroupCest.php +++ b/tests/integration/Mvc/Router/Route/SetGroupCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/SetHostnameCest.php b/tests/integration/Mvc/Router/Route/SetHostnameCest.php index 1d2e1dcc578..f6a11f0d350 100644 --- a/tests/integration/Mvc/Router/Route/SetHostnameCest.php +++ b/tests/integration/Mvc/Router/Route/SetHostnameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/SetHttpMethodsCest.php b/tests/integration/Mvc/Router/Route/SetHttpMethodsCest.php index 5e51e1d3b00..7dedf06d184 100644 --- a/tests/integration/Mvc/Router/Route/SetHttpMethodsCest.php +++ b/tests/integration/Mvc/Router/Route/SetHttpMethodsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/SetNameCest.php b/tests/integration/Mvc/Router/Route/SetNameCest.php index 1af4eda60dd..fff7ec01e7f 100644 --- a/tests/integration/Mvc/Router/Route/SetNameCest.php +++ b/tests/integration/Mvc/Router/Route/SetNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/Route/ViaCest.php b/tests/integration/Mvc/Router/Route/ViaCest.php index 27e74458bec..abc3c16cd4e 100644 --- a/tests/integration/Mvc/Router/Route/ViaCest.php +++ b/tests/integration/Mvc/Router/Route/ViaCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router\Route; +namespace Phalcon\Tests\Integration\Mvc\Router\Route; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/SetDICest.php b/tests/integration/Mvc/Router/SetDICest.php index 4f37498ce6a..7ab041a2612 100644 --- a/tests/integration/Mvc/Router/SetDICest.php +++ b/tests/integration/Mvc/Router/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/SetDefaultActionCest.php b/tests/integration/Mvc/Router/SetDefaultActionCest.php index 7dc042600a6..4262bf05be6 100644 --- a/tests/integration/Mvc/Router/SetDefaultActionCest.php +++ b/tests/integration/Mvc/Router/SetDefaultActionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/SetDefaultControllerCest.php b/tests/integration/Mvc/Router/SetDefaultControllerCest.php index 7706b6a69cf..6338e95e249 100644 --- a/tests/integration/Mvc/Router/SetDefaultControllerCest.php +++ b/tests/integration/Mvc/Router/SetDefaultControllerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/SetDefaultModuleCest.php b/tests/integration/Mvc/Router/SetDefaultModuleCest.php index 0eac8e4be75..ff630bac30e 100644 --- a/tests/integration/Mvc/Router/SetDefaultModuleCest.php +++ b/tests/integration/Mvc/Router/SetDefaultModuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/SetDefaultNamespaceCest.php b/tests/integration/Mvc/Router/SetDefaultNamespaceCest.php index 5c875283439..60702203c28 100644 --- a/tests/integration/Mvc/Router/SetDefaultNamespaceCest.php +++ b/tests/integration/Mvc/Router/SetDefaultNamespaceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; use Phalcon\Mvc\Router; diff --git a/tests/integration/Mvc/Router/SetEventsManagerCest.php b/tests/integration/Mvc/Router/SetEventsManagerCest.php index eb83b3a38b0..d5401d67192 100644 --- a/tests/integration/Mvc/Router/SetEventsManagerCest.php +++ b/tests/integration/Mvc/Router/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/SetKeyRouteIdsCest.php b/tests/integration/Mvc/Router/SetKeyRouteIdsCest.php index b4dc2314d5b..589c2884c81 100644 --- a/tests/integration/Mvc/Router/SetKeyRouteIdsCest.php +++ b/tests/integration/Mvc/Router/SetKeyRouteIdsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/SetKeyRouteNamesCest.php b/tests/integration/Mvc/Router/SetKeyRouteNamesCest.php index 4413212b72c..0945ad84847 100644 --- a/tests/integration/Mvc/Router/SetKeyRouteNamesCest.php +++ b/tests/integration/Mvc/Router/SetKeyRouteNamesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/Router/WasMatchedCest.php b/tests/integration/Mvc/Router/WasMatchedCest.php index 5a3ef77dc73..f5f761e6e52 100644 --- a/tests/integration/Mvc/Router/WasMatchedCest.php +++ b/tests/integration/Mvc/Router/WasMatchedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Router; +namespace Phalcon\Tests\Integration\Mvc\Router; use IntegrationTester; diff --git a/tests/integration/Mvc/View/CleanTemplateAfterCest.php b/tests/integration/Mvc/View/CleanTemplateAfterCest.php index f1bd4d814fd..17889a9ead6 100644 --- a/tests/integration/Mvc/View/CleanTemplateAfterCest.php +++ b/tests/integration/Mvc/View/CleanTemplateAfterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/CleanTemplateBeforeCest.php b/tests/integration/Mvc/View/CleanTemplateBeforeCest.php index fbfd6bac453..5e5acd4a29e 100644 --- a/tests/integration/Mvc/View/CleanTemplateBeforeCest.php +++ b/tests/integration/Mvc/View/CleanTemplateBeforeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/ConstructCest.php b/tests/integration/Mvc/View/ConstructCest.php index 4dc34f68751..88f3cc512d1 100644 --- a/tests/integration/Mvc/View/ConstructCest.php +++ b/tests/integration/Mvc/View/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/DisableCest.php b/tests/integration/Mvc/View/DisableCest.php index 7e23739e536..2c46e6a0058 100644 --- a/tests/integration/Mvc/View/DisableCest.php +++ b/tests/integration/Mvc/View/DisableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/DisableLevelCest.php b/tests/integration/Mvc/View/DisableLevelCest.php index 2bca6702d42..a16d030659a 100644 --- a/tests/integration/Mvc/View/DisableLevelCest.php +++ b/tests/integration/Mvc/View/DisableLevelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/EnableCest.php b/tests/integration/Mvc/View/EnableCest.php index b48b74681cd..97cdb1f3f61 100644 --- a/tests/integration/Mvc/View/EnableCest.php +++ b/tests/integration/Mvc/View/EnableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/ConstructCest.php b/tests/integration/Mvc/View/Engine/Php/ConstructCest.php index 5d36d66d00c..f7fd8414a14 100644 --- a/tests/integration/Mvc/View/Engine/Php/ConstructCest.php +++ b/tests/integration/Mvc/View/Engine/Php/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/GetContentCest.php b/tests/integration/Mvc/View/Engine/Php/GetContentCest.php index 5ebd3ed01e3..fb60c36ffdb 100644 --- a/tests/integration/Mvc/View/Engine/Php/GetContentCest.php +++ b/tests/integration/Mvc/View/Engine/Php/GetContentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Php/GetEventsManagerCest.php b/tests/integration/Mvc/View/Engine/Php/GetEventsManagerCest.php index 470d2fd7139..2fec06d82b1 100644 --- a/tests/integration/Mvc/View/Engine/Php/GetEventsManagerCest.php +++ b/tests/integration/Mvc/View/Engine/Php/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/GetSetDICest.php b/tests/integration/Mvc/View/Engine/Php/GetSetDICest.php index 1395ad0c898..33a9aa56919 100644 --- a/tests/integration/Mvc/View/Engine/Php/GetSetDICest.php +++ b/tests/integration/Mvc/View/Engine/Php/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/Engine/Php/GetViewCest.php b/tests/integration/Mvc/View/Engine/Php/GetViewCest.php index ab5f62b645d..4e94139d8db 100644 --- a/tests/integration/Mvc/View/Engine/Php/GetViewCest.php +++ b/tests/integration/Mvc/View/Engine/Php/GetViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Php/PartialCest.php b/tests/integration/Mvc/View/Engine/Php/PartialCest.php index a9cea1bc212..8057bb15b7f 100644 --- a/tests/integration/Mvc/View/Engine/Php/PartialCest.php +++ b/tests/integration/Mvc/View/Engine/Php/PartialCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/RenderCest.php b/tests/integration/Mvc/View/Engine/Php/RenderCest.php index b4a4146d2de..0cca2e86d5e 100644 --- a/tests/integration/Mvc/View/Engine/Php/RenderCest.php +++ b/tests/integration/Mvc/View/Engine/Php/RenderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/SetEventsManagerCest.php b/tests/integration/Mvc/View/Engine/Php/SetEventsManagerCest.php index 4ef8da51bea..5fca664bce6 100644 --- a/tests/integration/Mvc/View/Engine/Php/SetEventsManagerCest.php +++ b/tests/integration/Mvc/View/Engine/Php/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Php/UnderscoreGetCest.php b/tests/integration/Mvc/View/Engine/Php/UnderscoreGetCest.php index ee6ce7ef605..fc3e0fff875 100644 --- a/tests/integration/Mvc/View/Engine/Php/UnderscoreGetCest.php +++ b/tests/integration/Mvc/View/Engine/Php/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Php; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Php; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/CallMacroCest.php b/tests/integration/Mvc/View/Engine/Volt/CallMacroCest.php index 31247df82b3..dbb865c0291 100644 --- a/tests/integration/Mvc/View/Engine/Volt/CallMacroCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/CallMacroCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php index 8d1d203ec77..2033b0a10c2 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddExtensionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php index 4dd479f6e18..f2f2dde529a 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php index 334b3925034..87028bd6276 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/AddFunctionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php index 6ffe86e30c8..0cb3bc2d835 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/AttributeReaderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php index ebdb85bee6d..c4b564066ec 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileAutoEscapeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php index f7a599fc2a3..f8d90f1b2fb 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCallCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php index 28f49bff25c..cabc7931266 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCaseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCest.php index c205dd73770..335c9e96de8 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php index 3b59d81244a..fc20f9db921 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileDoCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php index d6ee2d04c0f..7fa53612a91 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileEchoCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php index e582fdd331d..009561485f8 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileElseIfCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt\Compiler; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php index de8b6e1a4b8..0981044559b 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileFileCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php index 8b210abeabb..6de50d6e8fa 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForElseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php index e27bbeee980..4f52aecd93b 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileForeachCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php index e3556f60ef2..3adce0d3b66 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIfCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt\Compiler; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php index de58e78b17d..81952bbf486 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileIncludeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php index 8421f199cef..a2edd26734e 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileMacroCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php index bcc1cb2ace9..c5f34776e45 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileReturnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php index f320afe55fa..e805561d9cc 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php index 162d87e29ae..3b073c50b46 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php index b91c92b0c72..72b1ffba285 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/CompileSwitchCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/ConstructCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/ConstructCest.php index 27ab33294ac..27b5122aa3e 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/ConstructCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php index bb62def714a..6dabd7ddc25 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/ExpressionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php index b72ebdb08b8..ee9b11baeeb 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/FireExtensionEventCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php index 5f6ba6c3540..2370cee0c2f 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/FunctionCallCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt\Compiler; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class FunctionCallCest diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php index 981c2b1e767..15e6234a9b0 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetCompiledTemplatePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php index ef9c86b5ded..02e7c187a33 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetExtensionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php index dfec4e2de34..0ae085e8dff 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php index 6f7b96179ed..42ae6c7de1f 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetFunctionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php index 5b12b80a21c..9063401aeee 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php index 40acb99e32d..1847a248671 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetSetDICest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetSetDICest.php index 87314320aa9..4af04750aa0 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetSetDICest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php index 67db482cc68..027b2afc5b3 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetTemplatePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php index 1f823787208..1bc6f723ec1 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/GetUniquePrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/ParseCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/ParseCest.php index 6bed7c545d9..069e4dbd91a 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/ParseCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/ParseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php index 9d7b932e592..a568852d831 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/ResolveTestCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php index 97bf914a709..e83f86fa427 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php index 76204328651..24ca85e21e5 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php index ed87462758b..d784a48431f 100644 --- a/tests/integration/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/Compiler/SetUniquePrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt\Compiler; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt\Compiler; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php b/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php index f1f8e48dc8a..31a8657bf1a 100644 --- a/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/CompilerCest.php @@ -15,7 +15,7 @@ +------------------------------------------------------------------------+ */ -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use DateTime; use IntegrationTester; @@ -31,7 +31,7 @@ use stdClass; /** - * Phalcon\Test\Integration\Mvc\View\Engine\Volt\CompilerCest + * Phalcon\Tests\Integration\Mvc\View\Engine\Volt\CompilerCest * * Test Compiler template engine */ diff --git a/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php b/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php index 85cdf2c2095..beebf2b9cfe 100644 --- a/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/CompilerFilesCest.php @@ -15,7 +15,7 @@ +------------------------------------------------------------------------+ */ -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View; @@ -27,7 +27,7 @@ use const PHP_EOL; /** - * Phalcon\Test\Integration\Mvc\View\Engine\Volt\CompilerFilesCest + * Phalcon\Tests\Integration\Mvc\View\Engine\Volt\CompilerFilesCest * * Test working Compiler with files */ diff --git a/tests/integration/Mvc/View/Engine/Volt/ConstructCest.php b/tests/integration/Mvc/View/Engine/Volt/ConstructCest.php index 31b1d4389ab..439161d86ee 100644 --- a/tests/integration/Mvc/View/Engine/Volt/ConstructCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/ConvertEncodingCest.php b/tests/integration/Mvc/View/Engine/Volt/ConvertEncodingCest.php index 28523ac1107..a884ba29f88 100644 --- a/tests/integration/Mvc/View/Engine/Volt/ConvertEncodingCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/ConvertEncodingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Volt/GetCompilerCest.php b/tests/integration/Mvc/View/Engine/Volt/GetCompilerCest.php index e9747a363cc..29b248485fb 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetCompilerCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetCompilerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/GetContentCest.php b/tests/integration/Mvc/View/Engine/Volt/GetContentCest.php index 8bc92a7b1e0..e863fbc4e22 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetContentCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetContentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Volt/GetSetDICest.php b/tests/integration/Mvc/View/Engine/Volt/GetSetDICest.php index d1cace4e785..baa9c867dfc 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetSetDICest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/Engine/Volt/GetSetEventsManagerCest.php b/tests/integration/Mvc/View/Engine/Volt/GetSetEventsManagerCest.php index 83f6e1e2c65..c1e45dbb855 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetSetEventsManagerCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetSetEventsManagerCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetEventsManagerCest { diff --git a/tests/integration/Mvc/View/Engine/Volt/GetSetOptionsCest.php b/tests/integration/Mvc/View/Engine/Volt/GetSetOptionsCest.php index a9fddac281a..006b8239186 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetSetOptionsCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetSetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Volt/GetViewCest.php b/tests/integration/Mvc/View/Engine/Volt/GetViewCest.php index 3c4c739e911..b629817c74e 100644 --- a/tests/integration/Mvc/View/Engine/Volt/GetViewCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/GetViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/Engine/Volt/IsIncludedCest.php b/tests/integration/Mvc/View/Engine/Volt/IsIncludedCest.php index efb427fb9a5..3659f0f2daa 100644 --- a/tests/integration/Mvc/View/Engine/Volt/IsIncludedCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/IsIncludedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/LengthCest.php b/tests/integration/Mvc/View/Engine/Volt/LengthCest.php index 0ad440249e7..feeb6e79cf2 100644 --- a/tests/integration/Mvc/View/Engine/Volt/LengthCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/LengthCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/PartialCest.php b/tests/integration/Mvc/View/Engine/Volt/PartialCest.php index 85d65c63739..4581a8f3864 100644 --- a/tests/integration/Mvc/View/Engine/Volt/PartialCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/PartialCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/RenderCest.php b/tests/integration/Mvc/View/Engine/Volt/RenderCest.php index 4821cd1ffc4..e1a35225952 100644 --- a/tests/integration/Mvc/View/Engine/Volt/RenderCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/RenderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt; -use Phalcon\Test\Fixtures\Listener\ViewCompileListener; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Listener\ViewCompileListener; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RenderCest { diff --git a/tests/integration/Mvc/View/Engine/Volt/SliceCest.php b/tests/integration/Mvc/View/Engine/Volt/SliceCest.php index b124f1615d6..76741fc2e7a 100644 --- a/tests/integration/Mvc/View/Engine/Volt/SliceCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/SliceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/SortCest.php b/tests/integration/Mvc/View/Engine/Volt/SortCest.php index 26ede481ed2..fecefdf09c3 100644 --- a/tests/integration/Mvc/View/Engine/Volt/SortCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/SortCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Engine/Volt/UnderscoreGetCest.php b/tests/integration/Mvc/View/Engine/Volt/UnderscoreGetCest.php index 610fd03636d..d5cc1e4cbff 100644 --- a/tests/integration/Mvc/View/Engine/Volt/UnderscoreGetCest.php +++ b/tests/integration/Mvc/View/Engine/Volt/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Engine\Volt; +namespace Phalcon\Tests\Integration\Mvc\View\Engine\Volt; use IntegrationTester; diff --git a/tests/integration/Mvc/View/ExistsCest.php b/tests/integration/Mvc/View/ExistsCest.php index 3708dc50489..fe8d12bd12e 100644 --- a/tests/integration/Mvc/View/ExistsCest.php +++ b/tests/integration/Mvc/View/ExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/FinishCest.php b/tests/integration/Mvc/View/FinishCest.php index 3c0515d745d..3dbdb8d8236 100644 --- a/tests/integration/Mvc/View/FinishCest.php +++ b/tests/integration/Mvc/View/FinishCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/GetActionNameCest.php b/tests/integration/Mvc/View/GetActionNameCest.php index d365691f03e..ec2067dedc2 100644 --- a/tests/integration/Mvc/View/GetActionNameCest.php +++ b/tests/integration/Mvc/View/GetActionNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/GetActiveRenderPathCest.php b/tests/integration/Mvc/View/GetActiveRenderPathCest.php index dfbbfb937cd..710e5c2c699 100644 --- a/tests/integration/Mvc/View/GetActiveRenderPathCest.php +++ b/tests/integration/Mvc/View/GetActiveRenderPathCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Events\Manager; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Mvc\View\AfterRenderListener; +use Phalcon\Tests\Fixtures\Mvc\View\AfterRenderListener; use function dataDir; diff --git a/tests/integration/Mvc/View/GetBasePathCest.php b/tests/integration/Mvc/View/GetBasePathCest.php index 4895fe9b430..c767cbb5680 100644 --- a/tests/integration/Mvc/View/GetBasePathCest.php +++ b/tests/integration/Mvc/View/GetBasePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/GetControllerNameCest.php b/tests/integration/Mvc/View/GetControllerNameCest.php index 6856c5f9d8f..bc37fd4d123 100644 --- a/tests/integration/Mvc/View/GetControllerNameCest.php +++ b/tests/integration/Mvc/View/GetControllerNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/GetParamsToViewCest.php b/tests/integration/Mvc/View/GetParamsToViewCest.php index ee6c367e4eb..310113eee87 100644 --- a/tests/integration/Mvc/View/GetParamsToViewCest.php +++ b/tests/integration/Mvc/View/GetParamsToViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/GetPartialCest.php b/tests/integration/Mvc/View/GetPartialCest.php index 9db3c35dfe2..b6008817f85 100644 --- a/tests/integration/Mvc/View/GetPartialCest.php +++ b/tests/integration/Mvc/View/GetPartialCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/GetRegisteredEnginesCest.php b/tests/integration/Mvc/View/GetRegisteredEnginesCest.php index c28ddd148e9..f51d31898d1 100644 --- a/tests/integration/Mvc/View/GetRegisteredEnginesCest.php +++ b/tests/integration/Mvc/View/GetRegisteredEnginesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/GetRenderCest.php b/tests/integration/Mvc/View/GetRenderCest.php index 1c7a44a5d48..23b89091d4e 100644 --- a/tests/integration/Mvc/View/GetRenderCest.php +++ b/tests/integration/Mvc/View/GetRenderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/GetRenderLevelCest.php b/tests/integration/Mvc/View/GetRenderLevelCest.php index f00ce85a977..0764fffb658 100644 --- a/tests/integration/Mvc/View/GetRenderLevelCest.php +++ b/tests/integration/Mvc/View/GetRenderLevelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/GetSetContentCest.php b/tests/integration/Mvc/View/GetSetContentCest.php index 6ad5670039c..07b652a03e3 100644 --- a/tests/integration/Mvc/View/GetSetContentCest.php +++ b/tests/integration/Mvc/View/GetSetContentCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class GetSetContentCest { diff --git a/tests/integration/Mvc/View/GetSetDICest.php b/tests/integration/Mvc/View/GetSetDICest.php index 6f9fd2bae61..90f6c2f2006 100644 --- a/tests/integration/Mvc/View/GetSetDICest.php +++ b/tests/integration/Mvc/View/GetSetDICest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetSetDICest diff --git a/tests/integration/Mvc/View/GetSetEventsManagerCest.php b/tests/integration/Mvc/View/GetSetEventsManagerCest.php index d30115d44a9..702afa7f5c8 100644 --- a/tests/integration/Mvc/View/GetSetEventsManagerCest.php +++ b/tests/integration/Mvc/View/GetSetEventsManagerCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetSetEventsManagerCest diff --git a/tests/integration/Mvc/View/GetSetLayoutCest.php b/tests/integration/Mvc/View/GetSetLayoutCest.php index c34fd248188..df2dcdc5be1 100644 --- a/tests/integration/Mvc/View/GetSetLayoutCest.php +++ b/tests/integration/Mvc/View/GetSetLayoutCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/GetSetLayoutsDirCest.php b/tests/integration/Mvc/View/GetSetLayoutsDirCest.php index 2823186c8de..ef41fc3c471 100644 --- a/tests/integration/Mvc/View/GetSetLayoutsDirCest.php +++ b/tests/integration/Mvc/View/GetSetLayoutsDirCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class GetSetLayoutsDirCest { diff --git a/tests/integration/Mvc/View/GetSetMainViewCest.php b/tests/integration/Mvc/View/GetSetMainViewCest.php index 16f549aa9cf..3d7847b5b07 100644 --- a/tests/integration/Mvc/View/GetSetMainViewCest.php +++ b/tests/integration/Mvc/View/GetSetMainViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/GetSetPartialsDirCest.php b/tests/integration/Mvc/View/GetSetPartialsDirCest.php index a887507554f..59502d4ff53 100644 --- a/tests/integration/Mvc/View/GetSetPartialsDirCest.php +++ b/tests/integration/Mvc/View/GetSetPartialsDirCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class GetSetPartialsDirCest { diff --git a/tests/integration/Mvc/View/GetSetRenderLevelCest.php b/tests/integration/Mvc/View/GetSetRenderLevelCest.php index dd3847f1c5b..77f3c84140d 100644 --- a/tests/integration/Mvc/View/GetSetRenderLevelCest.php +++ b/tests/integration/Mvc/View/GetSetRenderLevelCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Events\Manager; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Mvc\View\AfterRenderListener; +use Phalcon\Tests\Fixtures\Mvc\View\AfterRenderListener; use function dataDir; diff --git a/tests/integration/Mvc/View/GetSetVarCest.php b/tests/integration/Mvc/View/GetSetVarCest.php index a74cbe64d9d..ada2c02d395 100644 --- a/tests/integration/Mvc/View/GetSetVarCest.php +++ b/tests/integration/Mvc/View/GetSetVarCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class GetSetVarCest { diff --git a/tests/integration/Mvc/View/GetSetViewsDirCest.php b/tests/integration/Mvc/View/GetSetViewsDirCest.php index aaca678ccca..878ce175b23 100644 --- a/tests/integration/Mvc/View/GetSetViewsDirCest.php +++ b/tests/integration/Mvc/View/GetSetViewsDirCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class GetSetViewsDirCest { diff --git a/tests/integration/Mvc/View/IsDisabledCest.php b/tests/integration/Mvc/View/IsDisabledCest.php index 2fbf80b5323..c1ecef1ff9a 100644 --- a/tests/integration/Mvc/View/IsDisabledCest.php +++ b/tests/integration/Mvc/View/IsDisabledCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; diff --git a/tests/integration/Mvc/View/PartialCest.php b/tests/integration/Mvc/View/PartialCest.php index dfbe3042011..65506987fa9 100644 --- a/tests/integration/Mvc/View/PartialCest.php +++ b/tests/integration/Mvc/View/PartialCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/PickCest.php b/tests/integration/Mvc/View/PickCest.php index 4b6668ddea0..5a247d57afa 100644 --- a/tests/integration/Mvc/View/PickCest.php +++ b/tests/integration/Mvc/View/PickCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; use Phalcon\Helper\Str; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function dataDir; diff --git a/tests/integration/Mvc/View/RegisterEnginesCest.php b/tests/integration/Mvc/View/RegisterEnginesCest.php index c633cae921d..d5b4f6a6bc4 100644 --- a/tests/integration/Mvc/View/RegisterEnginesCest.php +++ b/tests/integration/Mvc/View/RegisterEnginesCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class RegisterEnginesCest { diff --git a/tests/integration/Mvc/View/RenderCest.php b/tests/integration/Mvc/View/RenderCest.php index fbaeb58f305..c9159ae082b 100644 --- a/tests/integration/Mvc/View/RenderCest.php +++ b/tests/integration/Mvc/View/RenderCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class RenderCest { diff --git a/tests/integration/Mvc/View/ResetCest.php b/tests/integration/Mvc/View/ResetCest.php index 75b3e9ec261..e47d0d45882 100644 --- a/tests/integration/Mvc/View/ResetCest.php +++ b/tests/integration/Mvc/View/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/SetBasePathCest.php b/tests/integration/Mvc/View/SetBasePathCest.php index c26c1d4adca..42103911b1b 100644 --- a/tests/integration/Mvc/View/SetBasePathCest.php +++ b/tests/integration/Mvc/View/SetBasePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/SetParamToViewCest.php b/tests/integration/Mvc/View/SetParamToViewCest.php index e0450b9bf1a..49329e283ec 100644 --- a/tests/integration/Mvc/View/SetParamToViewCest.php +++ b/tests/integration/Mvc/View/SetParamToViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/SetTemplateAfterCest.php b/tests/integration/Mvc/View/SetTemplateAfterCest.php index a61c419baaf..bd9e2f25799 100644 --- a/tests/integration/Mvc/View/SetTemplateAfterCest.php +++ b/tests/integration/Mvc/View/SetTemplateAfterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/SetTemplateBeforeCest.php b/tests/integration/Mvc/View/SetTemplateBeforeCest.php index 0e46feb7028..3c6863a864e 100644 --- a/tests/integration/Mvc/View/SetTemplateBeforeCest.php +++ b/tests/integration/Mvc/View/SetTemplateBeforeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/SetVarsCest.php b/tests/integration/Mvc/View/SetVarsCest.php index 6010e7c6f91..7f46480d736 100644 --- a/tests/integration/Mvc/View/SetVarsCest.php +++ b/tests/integration/Mvc/View/SetVarsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Simple/ConstructCest.php b/tests/integration/Mvc/View/Simple/ConstructCest.php index ec7245264f4..e541d852f6d 100644 --- a/tests/integration/Mvc/View/Simple/ConstructCest.php +++ b/tests/integration/Mvc/View/Simple/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/GetActiveRenderPathCest.php b/tests/integration/Mvc/View/Simple/GetActiveRenderPathCest.php index ee9194e5b11..3ddab5a8f50 100644 --- a/tests/integration/Mvc/View/Simple/GetActiveRenderPathCest.php +++ b/tests/integration/Mvc/View/Simple/GetActiveRenderPathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Simple/GetRegisteredEnginesCest.php b/tests/integration/Mvc/View/Simple/GetRegisteredEnginesCest.php index fc555e76d4c..d4628e77ea2 100644 --- a/tests/integration/Mvc/View/Simple/GetRegisteredEnginesCest.php +++ b/tests/integration/Mvc/View/Simple/GetRegisteredEnginesCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Engine\Php; use Phalcon\Mvc\View\Engine\Volt; -use Phalcon\Test\Fixtures\Mvc\View\Engine\Mustache; -use Phalcon\Test\Fixtures\Mvc\View\Engine\Twig; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Mvc\View\Engine\Mustache; +use Phalcon\Tests\Fixtures\Mvc\View\Engine\Twig; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetRegisteredEnginesCest { diff --git a/tests/integration/Mvc/View/Simple/GetSetContentCest.php b/tests/integration/Mvc/View/Simple/GetSetContentCest.php index adf4ee2a431..7fe850f8ce2 100644 --- a/tests/integration/Mvc/View/Simple/GetSetContentCest.php +++ b/tests/integration/Mvc/View/Simple/GetSetContentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/GetSetDICest.php b/tests/integration/Mvc/View/Simple/GetSetDICest.php index dc07a84cfe7..bb8a365132e 100644 --- a/tests/integration/Mvc/View/Simple/GetSetDICest.php +++ b/tests/integration/Mvc/View/Simple/GetSetDICest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Di; use Phalcon\Mvc\View\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetDICest diff --git a/tests/integration/Mvc/View/Simple/GetSetEventsManagerCest.php b/tests/integration/Mvc/View/Simple/GetSetEventsManagerCest.php index 8f7784986fc..6323f74baa5 100644 --- a/tests/integration/Mvc/View/Simple/GetSetEventsManagerCest.php +++ b/tests/integration/Mvc/View/Simple/GetSetEventsManagerCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetSetEventsManagerCest diff --git a/tests/integration/Mvc/View/Simple/GetSetParamsToViewCest.php b/tests/integration/Mvc/View/Simple/GetSetParamsToViewCest.php index 76b3f922130..fe85d23851e 100644 --- a/tests/integration/Mvc/View/Simple/GetSetParamsToViewCest.php +++ b/tests/integration/Mvc/View/Simple/GetSetParamsToViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/GetSetVarCest.php b/tests/integration/Mvc/View/Simple/GetSetVarCest.php index f0882e05ef7..c564ba9b1af 100644 --- a/tests/integration/Mvc/View/Simple/GetSetVarCest.php +++ b/tests/integration/Mvc/View/Simple/GetSetVarCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/GetSetViewsDirCest.php b/tests/integration/Mvc/View/Simple/GetSetViewsDirCest.php index bd2f1c519f8..f7895e1fb68 100644 --- a/tests/integration/Mvc/View/Simple/GetSetViewsDirCest.php +++ b/tests/integration/Mvc/View/Simple/GetSetViewsDirCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/PartialCest.php b/tests/integration/Mvc/View/Simple/PartialCest.php index 8813812e5fd..410940d36cb 100644 --- a/tests/integration/Mvc/View/Simple/PartialCest.php +++ b/tests/integration/Mvc/View/Simple/PartialCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function ob_end_clean; use function ob_start; diff --git a/tests/integration/Mvc/View/Simple/RegisterEnginesCest.php b/tests/integration/Mvc/View/Simple/RegisterEnginesCest.php index 1d046ddcb0b..5dfa896541a 100644 --- a/tests/integration/Mvc/View/Simple/RegisterEnginesCest.php +++ b/tests/integration/Mvc/View/Simple/RegisterEnginesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; diff --git a/tests/integration/Mvc/View/Simple/RenderCest.php b/tests/integration/Mvc/View/Simple/RenderCest.php index 7325604be3b..8d4aec5880c 100644 --- a/tests/integration/Mvc/View/Simple/RenderCest.php +++ b/tests/integration/Mvc/View/Simple/RenderCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Engine\Volt; use Phalcon\Mvc\View\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; use function dataDir; use function ob_end_clean; diff --git a/tests/integration/Mvc/View/Simple/SetVarsCest.php b/tests/integration/Mvc/View/Simple/SetVarsCest.php index dce172f24c9..333239bef30 100644 --- a/tests/integration/Mvc/View/Simple/SetVarsCest.php +++ b/tests/integration/Mvc/View/Simple/SetVarsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/Simple/UnderscoreGetSetCest.php b/tests/integration/Mvc/View/Simple/UnderscoreGetSetCest.php index 228199b4bc2..07938212892 100644 --- a/tests/integration/Mvc/View/Simple/UnderscoreGetSetCest.php +++ b/tests/integration/Mvc/View/Simple/UnderscoreGetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View\Simple; +namespace Phalcon\Tests\Integration\Mvc\View\Simple; use IntegrationTester; use Phalcon\Mvc\View\Simple; diff --git a/tests/integration/Mvc/View/StartCest.php b/tests/integration/Mvc/View/StartCest.php index 3ce68e071a0..5fc345dfe81 100644 --- a/tests/integration/Mvc/View/StartCest.php +++ b/tests/integration/Mvc/View/StartCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; diff --git a/tests/integration/Mvc/View/ToStringCest.php b/tests/integration/Mvc/View/ToStringCest.php index 7f666ef74ec..8f1bfc4bb90 100644 --- a/tests/integration/Mvc/View/ToStringCest.php +++ b/tests/integration/Mvc/View/ToStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Mvc/View/UnderscoreGetSetCest.php b/tests/integration/Mvc/View/UnderscoreGetSetCest.php index c07c1c2ec50..8f4f1b27a57 100644 --- a/tests/integration/Mvc/View/UnderscoreGetSetCest.php +++ b/tests/integration/Mvc/View/UnderscoreGetSetCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class UnderscoreGetSetCest { diff --git a/tests/integration/Mvc/View/UnderscoreIssetCest.php b/tests/integration/Mvc/View/UnderscoreIssetCest.php index 4a7ddaeed77..4c5007f871a 100644 --- a/tests/integration/Mvc/View/UnderscoreIssetCest.php +++ b/tests/integration/Mvc/View/UnderscoreIssetCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\View; +namespace Phalcon\Tests\Integration\Mvc\View; use IntegrationTester; use Phalcon\Mvc\View; -use Phalcon\Test\Fixtures\Traits\ViewTrait; +use Phalcon\Tests\Fixtures\Traits\ViewTrait; class UnderscoreIssetCest { diff --git a/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php b/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php index 4401dceb854..7937927c0d7 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use ArgumentCountError; use BadMethodCallException; diff --git a/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php b/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php index c74a07d5c4c..f40b8fdb177 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/GetLimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; diff --git a/tests/integration/Paginator/Adapter/NativeArray/GetSetRepositoryCest.php b/tests/integration/Paginator/Adapter/NativeArray/GetSetRepositoryCest.php index 4698ff417ef..68c8c09a940 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/GetSetRepositoryCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/GetSetRepositoryCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; use Phalcon\Paginator\Repository; -use Phalcon\Test\Fixtures\Paginator\Store; +use Phalcon\Tests\Fixtures\Paginator\Store; use function array_fill; diff --git a/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php b/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php index 47d6f699ec7..85caafef4e5 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/PaginateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; diff --git a/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php b/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php index 435c1a53a36..74d61fb6405 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/SetCurrentPageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; diff --git a/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php b/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php index b5dbe1f49e7..53ee94f14ff 100644 --- a/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php +++ b/tests/integration/Paginator/Adapter/NativeArray/SetLimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Adapter\NativeArray; +namespace Phalcon\Tests\Integration\Paginator\Adapter\NativeArray; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; diff --git a/tests/integration/Paginator/PaginatorFactory/LoadCest.php b/tests/integration/Paginator/PaginatorFactory/LoadCest.php index b6da13ec144..902b2afc233 100644 --- a/tests/integration/Paginator/PaginatorFactory/LoadCest.php +++ b/tests/integration/Paginator/PaginatorFactory/LoadCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\PaginatorFactory; +namespace Phalcon\Tests\Integration\Paginator\PaginatorFactory; use IntegrationTester; use Phalcon\Paginator\Adapter\QueryBuilder; use Phalcon\Paginator\PaginatorFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; class LoadCest { diff --git a/tests/integration/Paginator/PaginatorFactory/NewInstanceCest.php b/tests/integration/Paginator/PaginatorFactory/NewInstanceCest.php index 7d426c9d37e..c1c488bd982 100644 --- a/tests/integration/Paginator/PaginatorFactory/NewInstanceCest.php +++ b/tests/integration/Paginator/PaginatorFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\PaginatorFactory; +namespace Phalcon\Tests\Integration\Paginator\PaginatorFactory; use IntegrationTester; use Phalcon\Paginator\Adapter\AdapterInterface; diff --git a/tests/integration/Paginator/Repository/GetAliasesCest.php b/tests/integration/Paginator/Repository/GetAliasesCest.php index b7f1f66ff28..60d6540e8f1 100644 --- a/tests/integration/Paginator/Repository/GetAliasesCest.php +++ b/tests/integration/Paginator/Repository/GetAliasesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetCurrentCest.php b/tests/integration/Paginator/Repository/GetCurrentCest.php index 5974a353290..f3a91367ece 100644 --- a/tests/integration/Paginator/Repository/GetCurrentCest.php +++ b/tests/integration/Paginator/Repository/GetCurrentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetFirstCest.php b/tests/integration/Paginator/Repository/GetFirstCest.php index 1d968e039ff..d53781ec30f 100644 --- a/tests/integration/Paginator/Repository/GetFirstCest.php +++ b/tests/integration/Paginator/Repository/GetFirstCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetItemsCest.php b/tests/integration/Paginator/Repository/GetItemsCest.php index 7542fba1820..1994be9b462 100644 --- a/tests/integration/Paginator/Repository/GetItemsCest.php +++ b/tests/integration/Paginator/Repository/GetItemsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetLastCest.php b/tests/integration/Paginator/Repository/GetLastCest.php index 5e370a82698..342c1374526 100644 --- a/tests/integration/Paginator/Repository/GetLastCest.php +++ b/tests/integration/Paginator/Repository/GetLastCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetLimitCest.php b/tests/integration/Paginator/Repository/GetLimitCest.php index 4877ef1fd9c..919dc6bf914 100644 --- a/tests/integration/Paginator/Repository/GetLimitCest.php +++ b/tests/integration/Paginator/Repository/GetLimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetNextCest.php b/tests/integration/Paginator/Repository/GetNextCest.php index c3e6e8d1bfe..975c92fa7d5 100644 --- a/tests/integration/Paginator/Repository/GetNextCest.php +++ b/tests/integration/Paginator/Repository/GetNextCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetPreviousCest.php b/tests/integration/Paginator/Repository/GetPreviousCest.php index b461c1d3980..24d24d8e346 100644 --- a/tests/integration/Paginator/Repository/GetPreviousCest.php +++ b/tests/integration/Paginator/Repository/GetPreviousCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/GetTotalItemsCest.php b/tests/integration/Paginator/Repository/GetTotalItemsCest.php index d9da5f45ed5..41971df1cf3 100644 --- a/tests/integration/Paginator/Repository/GetTotalItemsCest.php +++ b/tests/integration/Paginator/Repository/GetTotalItemsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/JsonSerializeCest.php b/tests/integration/Paginator/Repository/JsonSerializeCest.php index a5f923c024a..84b9fd45e66 100644 --- a/tests/integration/Paginator/Repository/JsonSerializeCest.php +++ b/tests/integration/Paginator/Repository/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; use Phalcon\Paginator\Adapter\NativeArray; diff --git a/tests/integration/Paginator/Repository/SetAliasesCest.php b/tests/integration/Paginator/Repository/SetAliasesCest.php index 146677ffcd9..5e7ec007009 100644 --- a/tests/integration/Paginator/Repository/SetAliasesCest.php +++ b/tests/integration/Paginator/Repository/SetAliasesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/SetPropertiesCest.php b/tests/integration/Paginator/Repository/SetPropertiesCest.php index c34a8a35e50..90a59136ab7 100644 --- a/tests/integration/Paginator/Repository/SetPropertiesCest.php +++ b/tests/integration/Paginator/Repository/SetPropertiesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Paginator/Repository/UnderscoreGetCest.php b/tests/integration/Paginator/Repository/UnderscoreGetCest.php index 8c92fd34b7d..129495defdd 100644 --- a/tests/integration/Paginator/Repository/UnderscoreGetCest.php +++ b/tests/integration/Paginator/Repository/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Paginator\Repository; +namespace Phalcon\Tests\Integration\Paginator\Repository; use IntegrationTester; diff --git a/tests/integration/Plugin/GetDICest.php b/tests/integration/Plugin/GetDICest.php index 1d31f190d4a..02c3bf4748f 100644 --- a/tests/integration/Plugin/GetDICest.php +++ b/tests/integration/Plugin/GetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Plugin; +namespace Phalcon\Tests\Integration\Plugin; use IntegrationTester; diff --git a/tests/integration/Plugin/GetEventsManagerCest.php b/tests/integration/Plugin/GetEventsManagerCest.php index c5323ac592d..5c1d1376e3f 100644 --- a/tests/integration/Plugin/GetEventsManagerCest.php +++ b/tests/integration/Plugin/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Plugin; +namespace Phalcon\Tests\Integration\Plugin; use IntegrationTester; diff --git a/tests/integration/Plugin/SetDICest.php b/tests/integration/Plugin/SetDICest.php index 0e1b3418024..1d6560a5df4 100644 --- a/tests/integration/Plugin/SetDICest.php +++ b/tests/integration/Plugin/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Plugin; +namespace Phalcon\Tests\Integration\Plugin; use IntegrationTester; diff --git a/tests/integration/Plugin/SetEventsManagerCest.php b/tests/integration/Plugin/SetEventsManagerCest.php index e0788e0700d..2ca88961c7f 100644 --- a/tests/integration/Plugin/SetEventsManagerCest.php +++ b/tests/integration/Plugin/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Plugin; +namespace Phalcon\Tests\Integration\Plugin; use IntegrationTester; diff --git a/tests/integration/Plugin/UnderscoreGetCest.php b/tests/integration/Plugin/UnderscoreGetCest.php index e7a65549011..63c1f7a18bc 100644 --- a/tests/integration/Plugin/UnderscoreGetCest.php +++ b/tests/integration/Plugin/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Plugin; +namespace Phalcon\Tests\Integration\Plugin; use IntegrationTester; diff --git a/tests/integration/Session/Adapter/Libmemcached/CloseCest.php b/tests/integration/Session/Adapter/Libmemcached/CloseCest.php index 83353784c0d..1c035ec83e8 100644 --- a/tests/integration/Session/Adapter/Libmemcached/CloseCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/CloseCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class CloseCest { diff --git a/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php b/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php index a0c10e84742..ab04f037f8e 100644 --- a/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; use Phalcon\Session\Adapter\Libmemcached; use Phalcon\Storage\AdapterFactory; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use SessionHandlerInterface; class ConstructCest diff --git a/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php b/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php index ce4a0dbdd31..41fdb36ce0c 100644 --- a/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/DestroyCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Libmemcached/GcCest.php b/tests/integration/Session/Adapter/Libmemcached/GcCest.php index ab3363a6227..9131bb7cd50 100644 --- a/tests/integration/Session/Adapter/Libmemcached/GcCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/GcCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function sleep; use function uniqid; diff --git a/tests/integration/Session/Adapter/Libmemcached/OpenCest.php b/tests/integration/Session/Adapter/Libmemcached/OpenCest.php index 3fdd548e048..3abed6a85f8 100644 --- a/tests/integration/Session/Adapter/Libmemcached/OpenCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/OpenCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class OpenCest { diff --git a/tests/integration/Session/Adapter/Libmemcached/ReadCest.php b/tests/integration/Session/Adapter/Libmemcached/ReadCest.php index 14b25f8ecba..2091db6a1a1 100644 --- a/tests/integration/Session/Adapter/Libmemcached/ReadCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/ReadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Libmemcached/WriteCest.php b/tests/integration/Session/Adapter/Libmemcached/WriteCest.php index 4590a1c1d2f..fb2e1d528f3 100644 --- a/tests/integration/Session/Adapter/Libmemcached/WriteCest.php +++ b/tests/integration/Session/Adapter/Libmemcached/WriteCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Session\Adapter\Libmemcached; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Noop/CloseCest.php b/tests/integration/Session/Adapter/Noop/CloseCest.php index 88d1d41af67..03b49df3299 100644 --- a/tests/integration/Session/Adapter/Noop/CloseCest.php +++ b/tests/integration/Session/Adapter/Noop/CloseCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class CloseCest { diff --git a/tests/integration/Session/Adapter/Noop/ConstructCest.php b/tests/integration/Session/Adapter/Noop/ConstructCest.php index 8c9c1ad903d..6c671032acb 100644 --- a/tests/integration/Session/Adapter/Noop/ConstructCest.php +++ b/tests/integration/Session/Adapter/Noop/ConstructCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use SessionHandlerInterface; class ConstructCest diff --git a/tests/integration/Session/Adapter/Noop/DestroyCest.php b/tests/integration/Session/Adapter/Noop/DestroyCest.php index 79d0f9b636a..2da2b62b3b6 100644 --- a/tests/integration/Session/Adapter/Noop/DestroyCest.php +++ b/tests/integration/Session/Adapter/Noop/DestroyCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class DestroyCest { diff --git a/tests/integration/Session/Adapter/Noop/GcCest.php b/tests/integration/Session/Adapter/Noop/GcCest.php index 18ecdb022b2..93934ea75f9 100644 --- a/tests/integration/Session/Adapter/Noop/GcCest.php +++ b/tests/integration/Session/Adapter/Noop/GcCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class GcCest { diff --git a/tests/integration/Session/Adapter/Noop/OpenCest.php b/tests/integration/Session/Adapter/Noop/OpenCest.php index bd8a74d12e9..cd943fa6b11 100644 --- a/tests/integration/Session/Adapter/Noop/OpenCest.php +++ b/tests/integration/Session/Adapter/Noop/OpenCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class OpenCest { diff --git a/tests/integration/Session/Adapter/Noop/ReadCest.php b/tests/integration/Session/Adapter/Noop/ReadCest.php index eb153dd9c2e..c366ab9cb34 100644 --- a/tests/integration/Session/Adapter/Noop/ReadCest.php +++ b/tests/integration/Session/Adapter/Noop/ReadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Noop/WriteCest.php b/tests/integration/Session/Adapter/Noop/WriteCest.php index 9064fe50bfd..8bd21c5a031 100644 --- a/tests/integration/Session/Adapter/Noop/WriteCest.php +++ b/tests/integration/Session/Adapter/Noop/WriteCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Noop; +namespace Phalcon\Tests\Integration\Session\Adapter\Noop; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Redis/CloseCest.php b/tests/integration/Session/Adapter/Redis/CloseCest.php index 11113f6f89a..30039a78cd8 100644 --- a/tests/integration/Session/Adapter/Redis/CloseCest.php +++ b/tests/integration/Session/Adapter/Redis/CloseCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class CloseCest { diff --git a/tests/integration/Session/Adapter/Redis/ConstructCest.php b/tests/integration/Session/Adapter/Redis/ConstructCest.php index cce80ce2fee..54ef2b4d5e9 100644 --- a/tests/integration/Session/Adapter/Redis/ConstructCest.php +++ b/tests/integration/Session/Adapter/Redis/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; use Phalcon\Session\Adapter\Redis; use Phalcon\Storage\AdapterFactory; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use SessionHandlerInterface; class ConstructCest diff --git a/tests/integration/Session/Adapter/Redis/DestroyCest.php b/tests/integration/Session/Adapter/Redis/DestroyCest.php index e3a1ac09dc3..7a00094f0f1 100644 --- a/tests/integration/Session/Adapter/Redis/DestroyCest.php +++ b/tests/integration/Session/Adapter/Redis/DestroyCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Redis/GcCest.php b/tests/integration/Session/Adapter/Redis/GcCest.php index a9029f21e3b..29e7c6e054c 100644 --- a/tests/integration/Session/Adapter/Redis/GcCest.php +++ b/tests/integration/Session/Adapter/Redis/GcCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class GcCest { diff --git a/tests/integration/Session/Adapter/Redis/OpenCest.php b/tests/integration/Session/Adapter/Redis/OpenCest.php index 7303142446c..a7295f691f4 100644 --- a/tests/integration/Session/Adapter/Redis/OpenCest.php +++ b/tests/integration/Session/Adapter/Redis/OpenCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class OpenCest { diff --git a/tests/integration/Session/Adapter/Redis/ReadCest.php b/tests/integration/Session/Adapter/Redis/ReadCest.php index 169fa989a99..20d456d0127 100644 --- a/tests/integration/Session/Adapter/Redis/ReadCest.php +++ b/tests/integration/Session/Adapter/Redis/ReadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Redis/WriteCest.php b/tests/integration/Session/Adapter/Redis/WriteCest.php index ca12f7580fb..f3a3633bb5e 100644 --- a/tests/integration/Session/Adapter/Redis/WriteCest.php +++ b/tests/integration/Session/Adapter/Redis/WriteCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Redis; +namespace Phalcon\Tests\Integration\Session\Adapter\Redis; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Adapter/Stream/CloseCest.php b/tests/integration/Session/Adapter/Stream/CloseCest.php index 901a5bcee36..1a8f7a5a611 100644 --- a/tests/integration/Session/Adapter/Stream/CloseCest.php +++ b/tests/integration/Session/Adapter/Stream/CloseCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class CloseCest { diff --git a/tests/integration/Session/Adapter/Stream/ConstructCest.php b/tests/integration/Session/Adapter/Stream/ConstructCest.php index 38d95eb8b68..141e66793b5 100644 --- a/tests/integration/Session/Adapter/Stream/ConstructCest.php +++ b/tests/integration/Session/Adapter/Stream/ConstructCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use SessionHandlerInterface; class ConstructCest diff --git a/tests/integration/Session/Adapter/Stream/DestroyCest.php b/tests/integration/Session/Adapter/Stream/DestroyCest.php index 588230b4b47..eb103fb235f 100644 --- a/tests/integration/Session/Adapter/Stream/DestroyCest.php +++ b/tests/integration/Session/Adapter/Stream/DestroyCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function cacheDir; use function uniqid; diff --git a/tests/integration/Session/Adapter/Stream/GcCest.php b/tests/integration/Session/Adapter/Stream/GcCest.php index c3b89c0f66b..776f95d0e19 100644 --- a/tests/integration/Session/Adapter/Stream/GcCest.php +++ b/tests/integration/Session/Adapter/Stream/GcCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function cacheDir; use function file_put_contents; diff --git a/tests/integration/Session/Adapter/Stream/OpenCest.php b/tests/integration/Session/Adapter/Stream/OpenCest.php index 22c2d6d0c97..b56574151c4 100644 --- a/tests/integration/Session/Adapter/Stream/OpenCest.php +++ b/tests/integration/Session/Adapter/Stream/OpenCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class OpenCest { diff --git a/tests/integration/Session/Adapter/Stream/ReadCest.php b/tests/integration/Session/Adapter/Stream/ReadCest.php index 1f82d55507b..f10f858814b 100644 --- a/tests/integration/Session/Adapter/Stream/ReadCest.php +++ b/tests/integration/Session/Adapter/Stream/ReadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function cacheDir; use function uniqid; diff --git a/tests/integration/Session/Adapter/Stream/WriteCest.php b/tests/integration/Session/Adapter/Stream/WriteCest.php index a0d301a7012..cc0b4577dbb 100644 --- a/tests/integration/Session/Adapter/Stream/WriteCest.php +++ b/tests/integration/Session/Adapter/Stream/WriteCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Adapter\Stream; +namespace Phalcon\Tests\Integration\Session\Adapter\Stream; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function cacheDir; use function uniqid; diff --git a/tests/integration/Session/Bag/ClearCest.php b/tests/integration/Session/Bag/ClearCest.php index ffdf690b991..02b0809b1be 100644 --- a/tests/integration/Session/Bag/ClearCest.php +++ b/tests/integration/Session/Bag/ClearCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class ClearCest { diff --git a/tests/integration/Session/Bag/ConstructCest.php b/tests/integration/Session/Bag/ConstructCest.php index a83ad9a6f54..ac7699f798a 100644 --- a/tests/integration/Session/Bag/ConstructCest.php +++ b/tests/integration/Session/Bag/ConstructCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class ConstructCest { diff --git a/tests/integration/Session/Bag/CountCest.php b/tests/integration/Session/Bag/CountCest.php index 2c4008c81d5..dfb09cb2c89 100644 --- a/tests/integration/Session/Bag/CountCest.php +++ b/tests/integration/Session/Bag/CountCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class CountCest { diff --git a/tests/integration/Session/Bag/GetCest.php b/tests/integration/Session/Bag/GetCest.php index b393a6a805a..37a353e6c3d 100644 --- a/tests/integration/Session/Bag/GetCest.php +++ b/tests/integration/Session/Bag/GetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class GetCest { diff --git a/tests/integration/Session/Bag/GetIteratorCest.php b/tests/integration/Session/Bag/GetIteratorCest.php index fccf4b2802c..c2aea7cb718 100644 --- a/tests/integration/Session/Bag/GetIteratorCest.php +++ b/tests/integration/Session/Bag/GetIteratorCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class GetIteratorCest { diff --git a/tests/integration/Session/Bag/GetSetDICest.php b/tests/integration/Session/Bag/GetSetDICest.php index 5198dde6a7c..7db09bbf748 100644 --- a/tests/integration/Session/Bag/GetSetDICest.php +++ b/tests/integration/Session/Bag/GetSetDICest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Di\FactoryDefault; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class GetSetDICest { diff --git a/tests/integration/Session/Bag/HasCest.php b/tests/integration/Session/Bag/HasCest.php index d9baaf8f537..f68c57bf222 100644 --- a/tests/integration/Session/Bag/HasCest.php +++ b/tests/integration/Session/Bag/HasCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class HasCest { diff --git a/tests/integration/Session/Bag/InitCest.php b/tests/integration/Session/Bag/InitCest.php index 56e6fc9869b..2e05ab29f69 100644 --- a/tests/integration/Session/Bag/InitCest.php +++ b/tests/integration/Session/Bag/InitCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class InitCest { diff --git a/tests/integration/Session/Bag/JsonSerializeCest.php b/tests/integration/Session/Bag/JsonSerializeCest.php index 64adbc61317..70c135ca2aa 100644 --- a/tests/integration/Session/Bag/JsonSerializeCest.php +++ b/tests/integration/Session/Bag/JsonSerializeCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class JsonSerializeCest { diff --git a/tests/integration/Session/Bag/RemoveCest.php b/tests/integration/Session/Bag/RemoveCest.php index 049c9726eb5..b593f055e77 100644 --- a/tests/integration/Session/Bag/RemoveCest.php +++ b/tests/integration/Session/Bag/RemoveCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class RemoveCest { diff --git a/tests/integration/Session/Bag/SerializeCest.php b/tests/integration/Session/Bag/SerializeCest.php index 76eaade820a..a8a69e01e09 100644 --- a/tests/integration/Session/Bag/SerializeCest.php +++ b/tests/integration/Session/Bag/SerializeCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class SerializeCest { diff --git a/tests/integration/Session/Bag/SetCest.php b/tests/integration/Session/Bag/SetCest.php index 86fa3e5dadb..be33b92c781 100644 --- a/tests/integration/Session/Bag/SetCest.php +++ b/tests/integration/Session/Bag/SetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class SetCest { diff --git a/tests/integration/Session/Bag/ToArrayCest.php b/tests/integration/Session/Bag/ToArrayCest.php index 7e1936985b5..8697485308f 100644 --- a/tests/integration/Session/Bag/ToArrayCest.php +++ b/tests/integration/Session/Bag/ToArrayCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class ToArrayCest { diff --git a/tests/integration/Session/Bag/ToJsonCest.php b/tests/integration/Session/Bag/ToJsonCest.php index 9608f9a996b..952d4f4b68a 100644 --- a/tests/integration/Session/Bag/ToJsonCest.php +++ b/tests/integration/Session/Bag/ToJsonCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class ToJsonCest { diff --git a/tests/integration/Session/Bag/UnserializeCest.php b/tests/integration/Session/Bag/UnserializeCest.php index bc01e883a64..1bbe2f03caa 100644 --- a/tests/integration/Session/Bag/UnserializeCest.php +++ b/tests/integration/Session/Bag/UnserializeCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Bag; +namespace Phalcon\Tests\Integration\Session\Bag; use IntegrationTester; use Phalcon\Session\Bag; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionBagTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionBagTrait; class UnserializeCest { diff --git a/tests/integration/Session/Factory/LoadCest.php b/tests/integration/Session/Factory/LoadCest.php index 05aa6c66784..8897564e6eb 100644 --- a/tests/integration/Session/Factory/LoadCest.php +++ b/tests/integration/Session/Factory/LoadCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Factory; +namespace Phalcon\Tests\Integration\Session\Factory; use IntegrationTester; use Phalcon\Session\Adapter\Files; use Phalcon\Session\Factory; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; class LoadCest { diff --git a/tests/integration/Session/Manager/ConstructCest.php b/tests/integration/Session/Manager/ConstructCest.php index 737adcedd11..569f7eb78ad 100644 --- a/tests/integration/Session/Manager/ConstructCest.php +++ b/tests/integration/Session/Manager/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Adapter\Noop; use Phalcon\Session\Manager; use Phalcon\Session\ManagerInterface; -use Phalcon\Test\Fixtures\Session\ExtendedManager; +use Phalcon\Tests\Fixtures\Session\ExtendedManager; use SessionHandlerInterface; class ConstructCest diff --git a/tests/integration/Session/Manager/ExistsDestroyCest.php b/tests/integration/Session/Manager/ExistsDestroyCest.php index 4f166aa4d5a..70b20aa54a1 100644 --- a/tests/integration/Session/Manager/ExistsDestroyCest.php +++ b/tests/integration/Session/Manager/ExistsDestroyCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use Codeception\Example; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ExistsDestroyCest { diff --git a/tests/integration/Session/Manager/GetSetAdapterCest.php b/tests/integration/Session/Manager/GetSetAdapterCest.php index a20c62114c7..ef4daf5a246 100644 --- a/tests/integration/Session/Manager/GetSetAdapterCest.php +++ b/tests/integration/Session/Manager/GetSetAdapterCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use SessionHandlerInterface; class GetSetAdapterCest diff --git a/tests/integration/Session/Manager/GetSetCest.php b/tests/integration/Session/Manager/GetSetCest.php index b6ce7d73860..0512f66f715 100644 --- a/tests/integration/Session/Manager/GetSetCest.php +++ b/tests/integration/Session/Manager/GetSetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class GetSetCest { diff --git a/tests/integration/Session/Manager/GetSetDICest.php b/tests/integration/Session/Manager/GetSetDICest.php index 0477ee6ad5e..f991826f64b 100644 --- a/tests/integration/Session/Manager/GetSetDICest.php +++ b/tests/integration/Session/Manager/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Di\FactoryDefault; diff --git a/tests/integration/Session/Manager/GetSetIdCest.php b/tests/integration/Session/Manager/GetSetIdCest.php index 5753748318f..dfb652b8f20 100644 --- a/tests/integration/Session/Manager/GetSetIdCest.php +++ b/tests/integration/Session/Manager/GetSetIdCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; use function uniqid; diff --git a/tests/integration/Session/Manager/GetSetNameCest.php b/tests/integration/Session/Manager/GetSetNameCest.php index c0d6c7dc323..376a28da010 100644 --- a/tests/integration/Session/Manager/GetSetNameCest.php +++ b/tests/integration/Session/Manager/GetSetNameCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use InvalidArgumentException; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; /** * Class GetSetNameCest diff --git a/tests/integration/Session/Manager/GetSetOptionsCest.php b/tests/integration/Session/Manager/GetSetOptionsCest.php index 3cff30ce800..c9458531295 100644 --- a/tests/integration/Session/Manager/GetSetOptionsCest.php +++ b/tests/integration/Session/Manager/GetSetOptionsCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class GetSetOptionsCest { diff --git a/tests/integration/Session/Manager/HasCest.php b/tests/integration/Session/Manager/HasCest.php index a3bed9288e5..5464d67f074 100644 --- a/tests/integration/Session/Manager/HasCest.php +++ b/tests/integration/Session/Manager/HasCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class HasCest { diff --git a/tests/integration/Session/Manager/RegenerateIdCest.php b/tests/integration/Session/Manager/RegenerateIdCest.php index 9cde7fa9d9d..9d0da11db24 100644 --- a/tests/integration/Session/Manager/RegenerateIdCest.php +++ b/tests/integration/Session/Manager/RegenerateIdCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class RegenerateIdCest { diff --git a/tests/integration/Session/Manager/RemoveCest.php b/tests/integration/Session/Manager/RemoveCest.php index 4f91b79c689..06414ea6932 100644 --- a/tests/integration/Session/Manager/RemoveCest.php +++ b/tests/integration/Session/Manager/RemoveCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class RemoveCest { diff --git a/tests/integration/Session/Manager/StatusCest.php b/tests/integration/Session/Manager/StatusCest.php index cbb27b03440..66298c2e1d0 100644 --- a/tests/integration/Session/Manager/StatusCest.php +++ b/tests/integration/Session/Manager/StatusCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class StatusCest { diff --git a/tests/integration/Session/Manager/UnderscoreGetSetCest.php b/tests/integration/Session/Manager/UnderscoreGetSetCest.php index 1a2b080b001..83cec84ec7a 100644 --- a/tests/integration/Session/Manager/UnderscoreGetSetCest.php +++ b/tests/integration/Session/Manager/UnderscoreGetSetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class UnderscoreGetSetCest { diff --git a/tests/integration/Session/Manager/UnderscoreIssetCest.php b/tests/integration/Session/Manager/UnderscoreIssetCest.php index 0e6112cdc0e..26fed8193d1 100644 --- a/tests/integration/Session/Manager/UnderscoreIssetCest.php +++ b/tests/integration/Session/Manager/UnderscoreIssetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class UnderscoreIssetCest { diff --git a/tests/integration/Session/Manager/UnderscoreUnsetCest.php b/tests/integration/Session/Manager/UnderscoreUnsetCest.php index 45a80563aec..855e7e3019d 100644 --- a/tests/integration/Session/Manager/UnderscoreUnsetCest.php +++ b/tests/integration/Session/Manager/UnderscoreUnsetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Session\Manager; +namespace Phalcon\Tests\Integration\Session\Manager; use IntegrationTester; use Phalcon\Session\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\SessionTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\SessionTrait; class UnderscoreUnsetCest { diff --git a/tests/integration/Storage/Adapter/Apcu/DecrementCest.php b/tests/integration/Storage/Adapter/Apcu/DecrementCest.php index 4b54de9fa43..5f2fcc1ca85 100644 --- a/tests/integration/Storage/Adapter/Apcu/DecrementCest.php +++ b/tests/integration/Storage/Adapter/Apcu/DecrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Storage\Adapter\Apcu; use Exception; use Phalcon\Storage\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; use IntegrationTester; class DecrementCest diff --git a/tests/integration/Storage/Adapter/Apcu/GetKeysCest.php b/tests/integration/Storage/Adapter/Apcu/GetKeysCest.php index f5f26e27b75..98329ce4961 100644 --- a/tests/integration/Storage/Adapter/Apcu/GetKeysCest.php +++ b/tests/integration/Storage/Adapter/Apcu/GetKeysCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Storage\Adapter\Apcu; use Phalcon\Storage\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; use IntegrationTester; class GetKeysCest diff --git a/tests/integration/Storage/Adapter/Apcu/GetSetCest.php b/tests/integration/Storage/Adapter/Apcu/GetSetCest.php index e45274b84ce..912830775b2 100644 --- a/tests/integration/Storage/Adapter/Apcu/GetSetCest.php +++ b/tests/integration/Storage/Adapter/Apcu/GetSetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Storage\Adapter\Apcu; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; use stdClass; use IntegrationTester; diff --git a/tests/integration/Storage/Adapter/Apcu/IncrementCest.php b/tests/integration/Storage/Adapter/Apcu/IncrementCest.php index b4a84b2c799..ef2fc4f84ef 100644 --- a/tests/integration/Storage/Adapter/Apcu/IncrementCest.php +++ b/tests/integration/Storage/Adapter/Apcu/IncrementCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Apcu; +namespace Phalcon\Tests\Integration\Storage\Adapter\Apcu; use Phalcon\Storage\Adapter\Apcu; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\ApcuTrait; +use Phalcon\Tests\Fixtures\Traits\ApcuTrait; use IntegrationTester; class IncrementCest diff --git a/tests/integration/Storage/Adapter/ClearCest.php b/tests/integration/Storage/Adapter/ClearCest.php index 39931d0e70d..c50f834d49c 100644 --- a/tests/integration/Storage/Adapter/ClearCest.php +++ b/tests/integration/Storage/Adapter/ClearCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; diff --git a/tests/integration/Storage/Adapter/ConstructCest.php b/tests/integration/Storage/Adapter/ConstructCest.php index d4a8ff48aa6..a28aa2b8642 100644 --- a/tests/integration/Storage/Adapter/ConstructCest.php +++ b/tests/integration/Storage/Adapter/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\AdapterInterface; diff --git a/tests/integration/Storage/Adapter/DeleteCest.php b/tests/integration/Storage/Adapter/DeleteCest.php index 17ce5050ede..6a71b8c8c20 100644 --- a/tests/integration/Storage/Adapter/DeleteCest.php +++ b/tests/integration/Storage/Adapter/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; diff --git a/tests/integration/Storage/Adapter/GetAdapterCest.php b/tests/integration/Storage/Adapter/GetAdapterCest.php index c4c6c897dc0..abb7f436d71 100644 --- a/tests/integration/Storage/Adapter/GetAdapterCest.php +++ b/tests/integration/Storage/Adapter/GetAdapterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Memcached as NativeMemcached; diff --git a/tests/integration/Storage/Adapter/GetPrefixCest.php b/tests/integration/Storage/Adapter/GetPrefixCest.php index cf16248b352..c4370f246ee 100644 --- a/tests/integration/Storage/Adapter/GetPrefixCest.php +++ b/tests/integration/Storage/Adapter/GetPrefixCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; diff --git a/tests/integration/Storage/Adapter/GetSetDefaultSerializerCest.php b/tests/integration/Storage/Adapter/GetSetDefaultSerializerCest.php index cafe2b7879a..6ece10b8e3e 100644 --- a/tests/integration/Storage/Adapter/GetSetDefaultSerializerCest.php +++ b/tests/integration/Storage/Adapter/GetSetDefaultSerializerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; diff --git a/tests/integration/Storage/Adapter/HasCest.php b/tests/integration/Storage/Adapter/HasCest.php index 66bae102c06..ccc815fceb7 100644 --- a/tests/integration/Storage/Adapter/HasCest.php +++ b/tests/integration/Storage/Adapter/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter; +namespace Phalcon\Tests\Integration\Storage\Adapter; use Codeception\Example; use Phalcon\Storage\Adapter\Apcu; diff --git a/tests/integration/Storage/Adapter/Libmemcached/DecrementCest.php b/tests/integration/Storage/Adapter/Libmemcached/DecrementCest.php index 7b316e862a7..149987079f3 100644 --- a/tests/integration/Storage/Adapter/Libmemcached/DecrementCest.php +++ b/tests/integration/Storage/Adapter/Libmemcached/DecrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Storage\Adapter\Libmemcached; use Phalcon\Storage\Adapter\Libmemcached; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use IntegrationTester; use function getOptionsLibmemcached; diff --git a/tests/integration/Storage/Adapter/Libmemcached/GetKeysCest.php b/tests/integration/Storage/Adapter/Libmemcached/GetKeysCest.php index 49e898af84b..c5ffd2abeda 100644 --- a/tests/integration/Storage/Adapter/Libmemcached/GetKeysCest.php +++ b/tests/integration/Storage/Adapter/Libmemcached/GetKeysCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Storage\Adapter\Libmemcached; use Phalcon\Storage\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use IntegrationTester; use function getOptionsLibmemcached; diff --git a/tests/integration/Storage/Adapter/Libmemcached/GetSetCest.php b/tests/integration/Storage/Adapter/Libmemcached/GetSetCest.php index 987f8e547d2..d913714a08c 100644 --- a/tests/integration/Storage/Adapter/Libmemcached/GetSetCest.php +++ b/tests/integration/Storage/Adapter/Libmemcached/GetSetCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Storage\Adapter\Libmemcached; use Codeception\Example; use Phalcon\Storage\Adapter\Libmemcached; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use stdClass; use IntegrationTester; diff --git a/tests/integration/Storage/Adapter/Libmemcached/IncrementCest.php b/tests/integration/Storage/Adapter/Libmemcached/IncrementCest.php index 68dda02f00b..6719f653f84 100644 --- a/tests/integration/Storage/Adapter/Libmemcached/IncrementCest.php +++ b/tests/integration/Storage/Adapter/Libmemcached/IncrementCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Libmemcached; +namespace Phalcon\Tests\Integration\Storage\Adapter\Libmemcached; use Phalcon\Storage\Adapter\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\LibmemcachedTrait; +use Phalcon\Tests\Fixtures\Traits\LibmemcachedTrait; use IntegrationTester; use function getOptionsLibmemcached; diff --git a/tests/integration/Storage/Adapter/Memory/DecrementCest.php b/tests/integration/Storage/Adapter/Memory/DecrementCest.php index c127a637434..194a343367a 100644 --- a/tests/integration/Storage/Adapter/Memory/DecrementCest.php +++ b/tests/integration/Storage/Adapter/Memory/DecrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Memory; +namespace Phalcon\Tests\Integration\Storage\Adapter\Memory; use Phalcon\Storage\Adapter\Memory; use Phalcon\Storage\SerializerFactory; diff --git a/tests/integration/Storage/Adapter/Memory/GetKeysCest.php b/tests/integration/Storage/Adapter/Memory/GetKeysCest.php index f6ad9faa7d3..0bd21bda6fa 100644 --- a/tests/integration/Storage/Adapter/Memory/GetKeysCest.php +++ b/tests/integration/Storage/Adapter/Memory/GetKeysCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Memory; +namespace Phalcon\Tests\Integration\Storage\Adapter\Memory; use Phalcon\Storage\Adapter\Memory; use Phalcon\Storage\SerializerFactory; diff --git a/tests/integration/Storage/Adapter/Memory/GetSetCest.php b/tests/integration/Storage/Adapter/Memory/GetSetCest.php index a3bef5f1536..6351d57d392 100644 --- a/tests/integration/Storage/Adapter/Memory/GetSetCest.php +++ b/tests/integration/Storage/Adapter/Memory/GetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Memory; +namespace Phalcon\Tests\Integration\Storage\Adapter\Memory; use Codeception\Example; use Phalcon\Storage\Adapter\Memory; diff --git a/tests/integration/Storage/Adapter/Memory/IncrementCest.php b/tests/integration/Storage/Adapter/Memory/IncrementCest.php index 00be25e5181..3e7c68b0fad 100644 --- a/tests/integration/Storage/Adapter/Memory/IncrementCest.php +++ b/tests/integration/Storage/Adapter/Memory/IncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Memory; +namespace Phalcon\Tests\Integration\Storage\Adapter\Memory; use Phalcon\Storage\Adapter\Memory; use Phalcon\Storage\SerializerFactory; diff --git a/tests/integration/Storage/Adapter/Redis/DecrementCest.php b/tests/integration/Storage/Adapter/Redis/DecrementCest.php index 8b3201d6da0..ab8d331b901 100644 --- a/tests/integration/Storage/Adapter/Redis/DecrementCest.php +++ b/tests/integration/Storage/Adapter/Redis/DecrementCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Redis; +namespace Phalcon\Tests\Integration\Storage\Adapter\Redis; use Phalcon\Storage\Adapter\Redis; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use IntegrationTester; use function getOptionsRedis; diff --git a/tests/integration/Storage/Adapter/Redis/GetKeysCest.php b/tests/integration/Storage/Adapter/Redis/GetKeysCest.php index b72fa242f3e..a4f302c1edf 100644 --- a/tests/integration/Storage/Adapter/Redis/GetKeysCest.php +++ b/tests/integration/Storage/Adapter/Redis/GetKeysCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Redis; +namespace Phalcon\Tests\Integration\Storage\Adapter\Redis; use Phalcon\Storage\Adapter\Redis; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use IntegrationTester; use function getOptionsRedis; diff --git a/tests/integration/Storage/Adapter/Redis/GetSetCest.php b/tests/integration/Storage/Adapter/Redis/GetSetCest.php index 81b8eeee50f..a6a6e76c981 100644 --- a/tests/integration/Storage/Adapter/Redis/GetSetCest.php +++ b/tests/integration/Storage/Adapter/Redis/GetSetCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Redis; +namespace Phalcon\Tests\Integration\Storage\Adapter\Redis; use Codeception\Example; use Phalcon\Storage\Adapter\Redis; use Phalcon\Storage\Exception; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use stdClass; use IntegrationTester; diff --git a/tests/integration/Storage/Adapter/Redis/IncrementCest.php b/tests/integration/Storage/Adapter/Redis/IncrementCest.php index 1794db8be15..404b511108f 100644 --- a/tests/integration/Storage/Adapter/Redis/IncrementCest.php +++ b/tests/integration/Storage/Adapter/Redis/IncrementCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Redis; +namespace Phalcon\Tests\Integration\Storage\Adapter\Redis; use Phalcon\Storage\Adapter\Redis; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\RedisTrait; +use Phalcon\Tests\Fixtures\Traits\RedisTrait; use IntegrationTester; use function getOptionsRedis; diff --git a/tests/integration/Storage/Adapter/Stream/DecrementCest.php b/tests/integration/Storage/Adapter/Stream/DecrementCest.php index 9897d0e7f87..083474439dd 100644 --- a/tests/integration/Storage/Adapter/Stream/DecrementCest.php +++ b/tests/integration/Storage/Adapter/Stream/DecrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Stream; +namespace Phalcon\Tests\Integration\Storage\Adapter\Stream; use Phalcon\Storage\Adapter\Stream; use Phalcon\Storage\Exception; diff --git a/tests/integration/Storage/Adapter/Stream/GetKeysCest.php b/tests/integration/Storage/Adapter/Stream/GetKeysCest.php index 31437a645e5..5ea17c67130 100644 --- a/tests/integration/Storage/Adapter/Stream/GetKeysCest.php +++ b/tests/integration/Storage/Adapter/Stream/GetKeysCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Stream; +namespace Phalcon\Tests\Integration\Storage\Adapter\Stream; use Phalcon\Storage\Adapter\Stream; use Phalcon\Storage\SerializerFactory; diff --git a/tests/integration/Storage/Adapter/Stream/GetSetCest.php b/tests/integration/Storage/Adapter/Stream/GetSetCest.php index c8acbc6f156..e143fe6c7d8 100644 --- a/tests/integration/Storage/Adapter/Stream/GetSetCest.php +++ b/tests/integration/Storage/Adapter/Stream/GetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Stream; +namespace Phalcon\Tests\Integration\Storage\Adapter\Stream; use Phalcon\Storage\Adapter\Stream; use Phalcon\Storage\Exception; diff --git a/tests/integration/Storage/Adapter/Stream/IncrementCest.php b/tests/integration/Storage/Adapter/Stream/IncrementCest.php index a53b932184c..53bc9cf2da4 100644 --- a/tests/integration/Storage/Adapter/Stream/IncrementCest.php +++ b/tests/integration/Storage/Adapter/Stream/IncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Adapter\Stream; +namespace Phalcon\Tests\Integration\Storage\Adapter\Stream; use Phalcon\Storage\Adapter\Stream; use Phalcon\Storage\Exception; diff --git a/tests/integration/Storage/AdapterFactory/NewInstanceCest.php b/tests/integration/Storage/AdapterFactory/NewInstanceCest.php index ab731912f39..2c73437df14 100644 --- a/tests/integration/Storage/AdapterFactory/NewInstanceCest.php +++ b/tests/integration/Storage/AdapterFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\AdapterFactory; +namespace Phalcon\Tests\Integration\Storage\AdapterFactory; use Codeception\Example; use Phalcon\Storage\Exception; diff --git a/tests/integration/Storage/Serializer/Base64/GetDataCest.php b/tests/integration/Storage/Serializer/Base64/GetDataCest.php index 104fe4e12dd..ec0d9af93d3 100644 --- a/tests/integration/Storage/Serializer/Base64/GetDataCest.php +++ b/tests/integration/Storage/Serializer/Base64/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Base64; +namespace Phalcon\Tests\Integration\Storage\Serializer\Base64; use Phalcon\Storage\Serializer\Base64; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Base64/SerializeCest.php b/tests/integration/Storage/Serializer/Base64/SerializeCest.php index 9d41be02eb3..611b0cbd9bb 100644 --- a/tests/integration/Storage/Serializer/Base64/SerializeCest.php +++ b/tests/integration/Storage/Serializer/Base64/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Base64; +namespace Phalcon\Tests\Integration\Storage\Serializer\Base64; use InvalidArgumentException; use Phalcon\Storage\Serializer\Base64; diff --git a/tests/integration/Storage/Serializer/Base64/SetDataCest.php b/tests/integration/Storage/Serializer/Base64/SetDataCest.php index 0e20edaa051..ead22857899 100644 --- a/tests/integration/Storage/Serializer/Base64/SetDataCest.php +++ b/tests/integration/Storage/Serializer/Base64/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Base64; +namespace Phalcon\Tests\Integration\Storage\Serializer\Base64; use Phalcon\Storage\Serializer\Base64; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Base64/UnserializeCest.php b/tests/integration/Storage/Serializer/Base64/UnserializeCest.php index 73afb778d8e..6823ff833b0 100644 --- a/tests/integration/Storage/Serializer/Base64/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/Base64/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Base64; +namespace Phalcon\Tests\Integration\Storage\Serializer\Base64; use InvalidArgumentException; use Phalcon\Storage\Serializer\Base64; diff --git a/tests/integration/Storage/Serializer/Igbinary/GetDataCest.php b/tests/integration/Storage/Serializer/Igbinary/GetDataCest.php index 63f38a0bcc6..4286322012f 100644 --- a/tests/integration/Storage/Serializer/Igbinary/GetDataCest.php +++ b/tests/integration/Storage/Serializer/Igbinary/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Igbinary; +namespace Phalcon\Tests\Integration\Storage\Serializer\Igbinary; use Phalcon\Storage\Serializer\Igbinary; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Igbinary/SerializeCest.php b/tests/integration/Storage/Serializer/Igbinary/SerializeCest.php index 4afc6596364..ee935af0c5c 100644 --- a/tests/integration/Storage/Serializer/Igbinary/SerializeCest.php +++ b/tests/integration/Storage/Serializer/Igbinary/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Igbinary; +namespace Phalcon\Tests\Integration\Storage\Serializer\Igbinary; use Codeception\Example; use Phalcon\Storage\Serializer\Igbinary; diff --git a/tests/integration/Storage/Serializer/Igbinary/SetDataCest.php b/tests/integration/Storage/Serializer/Igbinary/SetDataCest.php index 7588edd4e62..d7e13b5423f 100644 --- a/tests/integration/Storage/Serializer/Igbinary/SetDataCest.php +++ b/tests/integration/Storage/Serializer/Igbinary/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Igbinary; +namespace Phalcon\Tests\Integration\Storage\Serializer\Igbinary; use Phalcon\Storage\Serializer\Igbinary; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Igbinary/UnserializeCest.php b/tests/integration/Storage/Serializer/Igbinary/UnserializeCest.php index 92251c12479..4318dbe2fc8 100644 --- a/tests/integration/Storage/Serializer/Igbinary/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/Igbinary/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Igbinary; +namespace Phalcon\Tests\Integration\Storage\Serializer\Igbinary; use Codeception\Example; use Phalcon\Storage\Serializer\Igbinary; diff --git a/tests/integration/Storage/Serializer/Json/GetDataCest.php b/tests/integration/Storage/Serializer/Json/GetDataCest.php index 9444e0f36f3..65782b50710 100644 --- a/tests/integration/Storage/Serializer/Json/GetDataCest.php +++ b/tests/integration/Storage/Serializer/Json/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Json; +namespace Phalcon\Tests\Integration\Storage\Serializer\Json; use Phalcon\Storage\Serializer\Json; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Json/SerializeCest.php b/tests/integration/Storage/Serializer/Json/SerializeCest.php index f929c77c8af..5bb1142500b 100644 --- a/tests/integration/Storage/Serializer/Json/SerializeCest.php +++ b/tests/integration/Storage/Serializer/Json/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Json; +namespace Phalcon\Tests\Integration\Storage\Serializer\Json; use Codeception\Example; use InvalidArgumentException; diff --git a/tests/integration/Storage/Serializer/Json/SetDataCest.php b/tests/integration/Storage/Serializer/Json/SetDataCest.php index 744ed7e080d..ce58c143a67 100644 --- a/tests/integration/Storage/Serializer/Json/SetDataCest.php +++ b/tests/integration/Storage/Serializer/Json/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Json; +namespace Phalcon\Tests\Integration\Storage\Serializer\Json; use Phalcon\Storage\Serializer\Json; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Json/UnserializeCest.php b/tests/integration/Storage/Serializer/Json/UnserializeCest.php index af952c8a093..c13e644c259 100644 --- a/tests/integration/Storage/Serializer/Json/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/Json/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Json; +namespace Phalcon\Tests\Integration\Storage\Serializer\Json; use Codeception\Example; use Phalcon\Storage\Serializer\Json; diff --git a/tests/integration/Storage/Serializer/Msgpack/GetDataCest.php b/tests/integration/Storage/Serializer/Msgpack/GetDataCest.php index 73f6c010a3e..cb6203de223 100644 --- a/tests/integration/Storage/Serializer/Msgpack/GetDataCest.php +++ b/tests/integration/Storage/Serializer/Msgpack/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Msgpack; +namespace Phalcon\Tests\Integration\Storage\Serializer\Msgpack; use Phalcon\Storage\Serializer\Msgpack; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Msgpack/SerializeCest.php b/tests/integration/Storage/Serializer/Msgpack/SerializeCest.php index f92272f57ba..d9c4f54a8c9 100644 --- a/tests/integration/Storage/Serializer/Msgpack/SerializeCest.php +++ b/tests/integration/Storage/Serializer/Msgpack/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Msgpack; +namespace Phalcon\Tests\Integration\Storage\Serializer\Msgpack; use Codeception\Example; use Phalcon\Storage\Serializer\Msgpack; diff --git a/tests/integration/Storage/Serializer/Msgpack/SetDataCest.php b/tests/integration/Storage/Serializer/Msgpack/SetDataCest.php index f8116487896..18daa933ed3 100644 --- a/tests/integration/Storage/Serializer/Msgpack/SetDataCest.php +++ b/tests/integration/Storage/Serializer/Msgpack/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Msgpack; +namespace Phalcon\Tests\Integration\Storage\Serializer\Msgpack; use Phalcon\Storage\Serializer\Msgpack; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Msgpack/UnserializeCest.php b/tests/integration/Storage/Serializer/Msgpack/UnserializeCest.php index e1833444165..016a56a854b 100644 --- a/tests/integration/Storage/Serializer/Msgpack/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/Msgpack/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Msgpack; +namespace Phalcon\Tests\Integration\Storage\Serializer\Msgpack; use Codeception\Example; use Phalcon\Storage\Serializer\Msgpack; diff --git a/tests/integration/Storage/Serializer/None/GetDataCest.php b/tests/integration/Storage/Serializer/None/GetDataCest.php index a48456efd72..d59147be408 100644 --- a/tests/integration/Storage/Serializer/None/GetDataCest.php +++ b/tests/integration/Storage/Serializer/None/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\None; +namespace Phalcon\Tests\Integration\Storage\Serializer\None; use Phalcon\Storage\Serializer\None; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/None/SerializeCest.php b/tests/integration/Storage/Serializer/None/SerializeCest.php index eb5546e5874..1c440c5e6a2 100644 --- a/tests/integration/Storage/Serializer/None/SerializeCest.php +++ b/tests/integration/Storage/Serializer/None/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\None; +namespace Phalcon\Tests\Integration\Storage\Serializer\None; use Codeception\Example; use Phalcon\Storage\Serializer\None; diff --git a/tests/integration/Storage/Serializer/None/SetDataCest.php b/tests/integration/Storage/Serializer/None/SetDataCest.php index 7a95c6b510b..9c59c00278f 100644 --- a/tests/integration/Storage/Serializer/None/SetDataCest.php +++ b/tests/integration/Storage/Serializer/None/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\None; +namespace Phalcon\Tests\Integration\Storage\Serializer\None; use Phalcon\Storage\Serializer\None; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/None/UnserializeCest.php b/tests/integration/Storage/Serializer/None/UnserializeCest.php index fa0fb412b3c..06e900c3f13 100644 --- a/tests/integration/Storage/Serializer/None/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/None/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\None; +namespace Phalcon\Tests\Integration\Storage\Serializer\None; use Codeception\Example; use Phalcon\Storage\Serializer\None; diff --git a/tests/integration/Storage/Serializer/Php/GetDataCest.php b/tests/integration/Storage/Serializer/Php/GetDataCest.php index 099dd422c39..4a781f203b7 100644 --- a/tests/integration/Storage/Serializer/Php/GetDataCest.php +++ b/tests/integration/Storage/Serializer/Php/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Php; +namespace Phalcon\Tests\Integration\Storage\Serializer\Php; use Phalcon\Storage\Serializer\Php; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Php/SerializeCest.php b/tests/integration/Storage/Serializer/Php/SerializeCest.php index 49a4352a85d..74ec24d4db2 100644 --- a/tests/integration/Storage/Serializer/Php/SerializeCest.php +++ b/tests/integration/Storage/Serializer/Php/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Php; +namespace Phalcon\Tests\Integration\Storage\Serializer\Php; use Codeception\Example; use Phalcon\Storage\Serializer\Php; diff --git a/tests/integration/Storage/Serializer/Php/SetDataCest.php b/tests/integration/Storage/Serializer/Php/SetDataCest.php index 355bf932ffa..e29e3f35784 100644 --- a/tests/integration/Storage/Serializer/Php/SetDataCest.php +++ b/tests/integration/Storage/Serializer/Php/SetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Php; +namespace Phalcon\Tests\Integration\Storage\Serializer\Php; use Phalcon\Storage\Serializer\Php; use IntegrationTester; diff --git a/tests/integration/Storage/Serializer/Php/UnserializeCest.php b/tests/integration/Storage/Serializer/Php/UnserializeCest.php index d5ddc34094f..f322a806f3b 100644 --- a/tests/integration/Storage/Serializer/Php/UnserializeCest.php +++ b/tests/integration/Storage/Serializer/Php/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\Serializer\Php; +namespace Phalcon\Tests\Integration\Storage\Serializer\Php; use Codeception\Example; use InvalidArgumentException; diff --git a/tests/integration/Storage/SerializerFactory/NewInstanceCest.php b/tests/integration/Storage/SerializerFactory/NewInstanceCest.php index 279987194f4..1e864615c68 100644 --- a/tests/integration/Storage/SerializerFactory/NewInstanceCest.php +++ b/tests/integration/Storage/SerializerFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Storage\SerializerFactory; +namespace Phalcon\Tests\Integration\Storage\SerializerFactory; use Codeception\Example; use Phalcon\Storage\Exception; diff --git a/tests/integration/Url/GetCest.php b/tests/integration/Url/GetCest.php index e5b8b7feee5..db5a01fdb07 100644 --- a/tests/integration/Url/GetCest.php +++ b/tests/integration/Url/GetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/GetSetBasePathCest.php b/tests/integration/Url/GetSetBasePathCest.php index ec7910d11ba..f6a6cebc9e1 100644 --- a/tests/integration/Url/GetSetBasePathCest.php +++ b/tests/integration/Url/GetSetBasePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/GetSetBaseUriCest.php b/tests/integration/Url/GetSetBaseUriCest.php index f1c2cf6ed24..1b31f26d8b0 100644 --- a/tests/integration/Url/GetSetBaseUriCest.php +++ b/tests/integration/Url/GetSetBaseUriCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/GetSetDICest.php b/tests/integration/Url/GetSetDICest.php index 7ef6c69dd02..0a5f96803b9 100644 --- a/tests/integration/Url/GetSetDICest.php +++ b/tests/integration/Url/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Di; diff --git a/tests/integration/Url/GetSetStaticBaseUriCest.php b/tests/integration/Url/GetSetStaticBaseUriCest.php index e6775efec91..467c3e70bee 100644 --- a/tests/integration/Url/GetSetStaticBaseUriCest.php +++ b/tests/integration/Url/GetSetStaticBaseUriCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/GetStaticBaseUriCest.php b/tests/integration/Url/GetStaticBaseUriCest.php index 1dbf5a3fe2f..e7f8d689c4f 100644 --- a/tests/integration/Url/GetStaticBaseUriCest.php +++ b/tests/integration/Url/GetStaticBaseUriCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; diff --git a/tests/integration/Url/GetStaticCest.php b/tests/integration/Url/GetStaticCest.php index d6ea09743f3..7f0a3228f85 100644 --- a/tests/integration/Url/GetStaticCest.php +++ b/tests/integration/Url/GetStaticCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/PathCest.php b/tests/integration/Url/PathCest.php index e31fce3b966..bce00bc163e 100644 --- a/tests/integration/Url/PathCest.php +++ b/tests/integration/Url/PathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; use Phalcon\Url; diff --git a/tests/integration/Url/Refactor-UrlCest.php b/tests/integration/Url/Refactor-UrlCest.php index cf78ef0d74b..e64b1d4ca21 100644 --- a/tests/integration/Url/Refactor-UrlCest.php +++ b/tests/integration/Url/Refactor-UrlCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Url; +namespace Phalcon\Tests\Url; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Router; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class UrlCest { diff --git a/tests/integration/Url/SetBasePathCest.php b/tests/integration/Url/SetBasePathCest.php index f79b262f911..88d805d0093 100644 --- a/tests/integration/Url/SetBasePathCest.php +++ b/tests/integration/Url/SetBasePathCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; diff --git a/tests/integration/Url/SetBaseUriCest.php b/tests/integration/Url/SetBaseUriCest.php index 2f0f59d57b2..5d13d57badc 100644 --- a/tests/integration/Url/SetBaseUriCest.php +++ b/tests/integration/Url/SetBaseUriCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Router; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; /** * Class SetBaseUriCest diff --git a/tests/integration/Url/SetStaticBaseUriCest.php b/tests/integration/Url/SetStaticBaseUriCest.php index 7090a346d8c..f14a1fb9c15 100644 --- a/tests/integration/Url/SetStaticBaseUriCest.php +++ b/tests/integration/Url/SetStaticBaseUriCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Url; +namespace Phalcon\Tests\Integration\Url; use IntegrationTester; diff --git a/tests/integration/Validation/AddCest.php b/tests/integration/Validation/AddCest.php index d41344397ef..9d0f15c6151 100644 --- a/tests/integration/Validation/AddCest.php +++ b/tests/integration/Validation/AddCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/AppendMessageCest.php b/tests/integration/Validation/AppendMessageCest.php index 660f21afe44..c5fabc009ab 100644 --- a/tests/integration/Validation/AppendMessageCest.php +++ b/tests/integration/Validation/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/BindCest.php b/tests/integration/Validation/BindCest.php index f8c2f365b77..811c51565b0 100644 --- a/tests/integration/Validation/BindCest.php +++ b/tests/integration/Validation/BindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/ConstructCest.php b/tests/integration/Validation/ConstructCest.php index 82b75992863..fc5ce395871 100644 --- a/tests/integration/Validation/ConstructCest.php +++ b/tests/integration/Validation/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/GetDataCest.php b/tests/integration/Validation/GetDataCest.php index 8736f1282c6..3066cc18e14 100644 --- a/tests/integration/Validation/GetDataCest.php +++ b/tests/integration/Validation/GetDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/GetEntityCest.php b/tests/integration/Validation/GetEntityCest.php index db5e3573f27..8f7fe890c18 100644 --- a/tests/integration/Validation/GetEntityCest.php +++ b/tests/integration/Validation/GetEntityCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/GetEventsManagerCest.php b/tests/integration/Validation/GetEventsManagerCest.php index 8fcc9ed8b9f..3236dce9650 100644 --- a/tests/integration/Validation/GetEventsManagerCest.php +++ b/tests/integration/Validation/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/GetFiltersCest.php b/tests/integration/Validation/GetFiltersCest.php index 51952f247f0..1a4d12b1e55 100644 --- a/tests/integration/Validation/GetFiltersCest.php +++ b/tests/integration/Validation/GetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/GetLabelCest.php b/tests/integration/Validation/GetLabelCest.php index 01437eeb0f9..c5149a872c4 100644 --- a/tests/integration/Validation/GetLabelCest.php +++ b/tests/integration/Validation/GetLabelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/GetMessagesCest.php b/tests/integration/Validation/GetMessagesCest.php index bb553d8f609..64c1442cb7e 100644 --- a/tests/integration/Validation/GetMessagesCest.php +++ b/tests/integration/Validation/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/GetSetDICest.php b/tests/integration/Validation/GetSetDICest.php index e7e4f275eb4..2394d0c2acd 100644 --- a/tests/integration/Validation/GetSetDICest.php +++ b/tests/integration/Validation/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/GetValidatorsCest.php b/tests/integration/Validation/GetValidatorsCest.php index a0b1e31e3b3..a267a74b89f 100644 --- a/tests/integration/Validation/GetValidatorsCest.php +++ b/tests/integration/Validation/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/GetValueCest.php b/tests/integration/Validation/GetValueCest.php index 4cf7180206f..ebc121bdbd2 100644 --- a/tests/integration/Validation/GetValueCest.php +++ b/tests/integration/Validation/GetValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/RuleCest.php b/tests/integration/Validation/RuleCest.php index 84e0c46400a..2e3777bfc05 100644 --- a/tests/integration/Validation/RuleCest.php +++ b/tests/integration/Validation/RuleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/RulesCest.php b/tests/integration/Validation/RulesCest.php index c9e12aaab2a..a3e5159534e 100644 --- a/tests/integration/Validation/RulesCest.php +++ b/tests/integration/Validation/RulesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/SetDefaultMessagesCest.php b/tests/integration/Validation/SetDefaultMessagesCest.php index 8c2c2e54821..1132ad0320c 100644 --- a/tests/integration/Validation/SetDefaultMessagesCest.php +++ b/tests/integration/Validation/SetDefaultMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/SetEntityCest.php b/tests/integration/Validation/SetEntityCest.php index 0c9c489bc35..f2b96e6bbe3 100644 --- a/tests/integration/Validation/SetEntityCest.php +++ b/tests/integration/Validation/SetEntityCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/SetEventsManagerCest.php b/tests/integration/Validation/SetEventsManagerCest.php index 9eba6854525..caec8351e50 100644 --- a/tests/integration/Validation/SetEventsManagerCest.php +++ b/tests/integration/Validation/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/SetFiltersCest.php b/tests/integration/Validation/SetFiltersCest.php index 1c76d82ade6..ded65bf7378 100644 --- a/tests/integration/Validation/SetFiltersCest.php +++ b/tests/integration/Validation/SetFiltersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/SetLabelsCest.php b/tests/integration/Validation/SetLabelsCest.php index 8629c4258fc..49db4968aaf 100644 --- a/tests/integration/Validation/SetLabelsCest.php +++ b/tests/integration/Validation/SetLabelsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/SetValidatorsCest.php b/tests/integration/Validation/SetValidatorsCest.php index 27850750059..508dba38d40 100644 --- a/tests/integration/Validation/SetValidatorsCest.php +++ b/tests/integration/Validation/SetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/UnderscoreGetCest.php b/tests/integration/Validation/UnderscoreGetCest.php index 8a4a8e712ed..0ba4dee576a 100644 --- a/tests/integration/Validation/UnderscoreGetCest.php +++ b/tests/integration/Validation/UnderscoreGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; diff --git a/tests/integration/Validation/ValidateCest.php b/tests/integration/Validation/ValidateCest.php index 1254d06085f..6c50457dfaf 100644 --- a/tests/integration/Validation/ValidateCest.php +++ b/tests/integration/Validation/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation; +namespace Phalcon\Tests\Integration\Validation; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Alnum/ConstructCest.php b/tests/integration/Validation/Validator/Alnum/ConstructCest.php index 274bb1986ba..4f5a40b2ffd 100644 --- a/tests/integration/Validation/Validator/Alnum/ConstructCest.php +++ b/tests/integration/Validation/Validator/Alnum/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alnum; +namespace Phalcon\Tests\Integration\Validation\Validator\Alnum; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alnum; class ConstructCest diff --git a/tests/integration/Validation/Validator/Alnum/GetOptionCest.php b/tests/integration/Validation/Validator/Alnum/GetOptionCest.php index 8bf397906d3..00108a2a935 100644 --- a/tests/integration/Validation/Validator/Alnum/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Alnum/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alnum; +namespace Phalcon\Tests\Integration\Validation\Validator\Alnum; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alnum; /** diff --git a/tests/integration/Validation/Validator/Alnum/HasOptionCest.php b/tests/integration/Validation/Validator/Alnum/HasOptionCest.php index a562cd145ea..3604583632a 100644 --- a/tests/integration/Validation/Validator/Alnum/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Alnum/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alnum; +namespace Phalcon\Tests\Integration\Validation\Validator\Alnum; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alnum; class HasOptionCest diff --git a/tests/integration/Validation/Validator/Alnum/SetOptionCest.php b/tests/integration/Validation/Validator/Alnum/SetOptionCest.php index 02311bd9335..4acfce34344 100644 --- a/tests/integration/Validation/Validator/Alnum/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Alnum/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alnum; +namespace Phalcon\Tests\Integration\Validation\Validator\Alnum; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alnum; class SetOptionCest diff --git a/tests/integration/Validation/Validator/Alnum/ValidateCest.php b/tests/integration/Validation/Validator/Alnum/ValidateCest.php index 70641596fc5..fefc338474f 100644 --- a/tests/integration/Validation/Validator/Alnum/ValidateCest.php +++ b/tests/integration/Validation/Validator/Alnum/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alnum; +namespace Phalcon\Tests\Integration\Validation\Validator\Alnum; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/Validator/Alpha/ConstructCest.php b/tests/integration/Validation/Validator/Alpha/ConstructCest.php index 5a7906f9aa7..2ee22d4ada8 100644 --- a/tests/integration/Validation/Validator/Alpha/ConstructCest.php +++ b/tests/integration/Validation/Validator/Alpha/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alpha; +namespace Phalcon\Tests\Integration\Validation\Validator\Alpha; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alpha; /** diff --git a/tests/integration/Validation/Validator/Alpha/GetOptionCest.php b/tests/integration/Validation/Validator/Alpha/GetOptionCest.php index e5a5b562104..4ae96ea7bfc 100644 --- a/tests/integration/Validation/Validator/Alpha/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Alpha/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alpha; +namespace Phalcon\Tests\Integration\Validation\Validator\Alpha; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alpha; /** diff --git a/tests/integration/Validation/Validator/Alpha/HasOptionCest.php b/tests/integration/Validation/Validator/Alpha/HasOptionCest.php index 844d0a7b892..417cccb2f1d 100644 --- a/tests/integration/Validation/Validator/Alpha/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Alpha/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alpha; +namespace Phalcon\Tests\Integration\Validation\Validator\Alpha; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alpha; /** diff --git a/tests/integration/Validation/Validator/Alpha/SetOptionCest.php b/tests/integration/Validation/Validator/Alpha/SetOptionCest.php index 06aa17d6073..0d1db1c189d 100644 --- a/tests/integration/Validation/Validator/Alpha/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Alpha/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alpha; +namespace Phalcon\Tests\Integration\Validation\Validator\Alpha; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Alpha; /** diff --git a/tests/integration/Validation/Validator/Alpha/ValidateCest.php b/tests/integration/Validation/Validator/Alpha/ValidateCest.php index 1bec2c3983d..86561a23237 100644 --- a/tests/integration/Validation/Validator/Alpha/ValidateCest.php +++ b/tests/integration/Validation/Validator/Alpha/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Alpha; +namespace Phalcon\Tests\Integration\Validation\Validator\Alpha; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/Between/ConstructCest.php b/tests/integration/Validation/Validator/Between/ConstructCest.php index 7325021f5ed..1cbf2051584 100644 --- a/tests/integration/Validation/Validator/Between/ConstructCest.php +++ b/tests/integration/Validation/Validator/Between/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Between; +namespace Phalcon\Tests\Integration\Validation\Validator\Between; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Between; /** diff --git a/tests/integration/Validation/Validator/Between/GetOptionCest.php b/tests/integration/Validation/Validator/Between/GetOptionCest.php index 37ddfdd097e..250a37c9c55 100644 --- a/tests/integration/Validation/Validator/Between/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Between/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Between; +namespace Phalcon\Tests\Integration\Validation\Validator\Between; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Between; /** diff --git a/tests/integration/Validation/Validator/Between/HasOptionCest.php b/tests/integration/Validation/Validator/Between/HasOptionCest.php index 56d8ae65bd3..377e8f69027 100644 --- a/tests/integration/Validation/Validator/Between/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Between/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Between; +namespace Phalcon\Tests\Integration\Validation\Validator\Between; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Between; class HasOptionCest diff --git a/tests/integration/Validation/Validator/Between/SetOptionCest.php b/tests/integration/Validation/Validator/Between/SetOptionCest.php index e1e4d7114a2..d6009e0bc7f 100644 --- a/tests/integration/Validation/Validator/Between/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Between/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Between; +namespace Phalcon\Tests\Integration\Validation\Validator\Between; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Between; /** diff --git a/tests/integration/Validation/Validator/Between/ValidateCest.php b/tests/integration/Validation/Validator/Between/ValidateCest.php index a08c0ad78aa..b6900db5de7 100644 --- a/tests/integration/Validation/Validator/Between/ValidateCest.php +++ b/tests/integration/Validation/Validator/Between/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Between; +namespace Phalcon\Tests\Integration\Validation\Validator\Between; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Callback/ConstructCest.php b/tests/integration/Validation/Validator/Callback/ConstructCest.php index 8e14442fc63..d8a0b1b6492 100644 --- a/tests/integration/Validation/Validator/Callback/ConstructCest.php +++ b/tests/integration/Validation/Validator/Callback/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Callback; +namespace Phalcon\Tests\Integration\Validation\Validator\Callback; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Callback; /** diff --git a/tests/integration/Validation/Validator/Callback/GetOptionCest.php b/tests/integration/Validation/Validator/Callback/GetOptionCest.php index d9901a075e1..5f4c5ceb198 100644 --- a/tests/integration/Validation/Validator/Callback/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Callback/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Callback; +namespace Phalcon\Tests\Integration\Validation\Validator\Callback; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Callback; /** diff --git a/tests/integration/Validation/Validator/Callback/HasOptionCest.php b/tests/integration/Validation/Validator/Callback/HasOptionCest.php index bce97136f62..853469257d8 100644 --- a/tests/integration/Validation/Validator/Callback/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Callback/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Callback; +namespace Phalcon\Tests\Integration\Validation\Validator\Callback; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Callback; class HasOptionCest diff --git a/tests/integration/Validation/Validator/Callback/SetOptionCest.php b/tests/integration/Validation/Validator/Callback/SetOptionCest.php index 5487959feac..95bc8458a59 100644 --- a/tests/integration/Validation/Validator/Callback/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Callback/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Callback; +namespace Phalcon\Tests\Integration\Validation\Validator\Callback; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Callback; /** diff --git a/tests/integration/Validation/Validator/Callback/ValidateCest.php b/tests/integration/Validation/Validator/Callback/ValidateCest.php index 1d358be58bb..5189ddfb572 100644 --- a/tests/integration/Validation/Validator/Callback/ValidateCest.php +++ b/tests/integration/Validation/Validator/Callback/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Callback; +namespace Phalcon\Tests\Integration\Validation\Validator\Callback; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Confirmation/ConstructCest.php b/tests/integration/Validation/Validator/Confirmation/ConstructCest.php index e0c77192248..71b7409b669 100644 --- a/tests/integration/Validation/Validator/Confirmation/ConstructCest.php +++ b/tests/integration/Validation/Validator/Confirmation/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; +namespace Phalcon\Tests\Integration\Validation\Validator\Confirmation; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Confirmation; /** diff --git a/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php b/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php index a4e79fe36b6..f143a8a3091 100644 --- a/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Confirmation/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; +namespace Phalcon\Tests\Integration\Validation\Validator\Confirmation; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Confirmation; /** diff --git a/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php b/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php index 5f39d48ea63..2fd707ab0c6 100644 --- a/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Confirmation/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; +namespace Phalcon\Tests\Integration\Validation\Validator\Confirmation; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Confirmation; class HasOptionCest diff --git a/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php b/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php index ae4a8134976..f9c72305f7a 100644 --- a/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Confirmation/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; +namespace Phalcon\Tests\Integration\Validation\Validator\Confirmation; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Confirmation; /** diff --git a/tests/integration/Validation/Validator/Confirmation/ValidateCest.php b/tests/integration/Validation/Validator/Confirmation/ValidateCest.php index f44f7c04824..221223d92b6 100644 --- a/tests/integration/Validation/Validator/Confirmation/ValidateCest.php +++ b/tests/integration/Validation/Validator/Confirmation/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Confirmation; +namespace Phalcon\Tests\Integration\Validation\Validator\Confirmation; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/ConstructCest.php b/tests/integration/Validation/Validator/ConstructCest.php index 97bd5b57e3c..bdb619d7e6c 100644 --- a/tests/integration/Validation/Validator/ConstructCest.php +++ b/tests/integration/Validation/Validator/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Validation\Validator\PresenceOf; diff --git a/tests/integration/Validation/Validator/CreditCard/ConstructCest.php b/tests/integration/Validation/Validator/CreditCard/ConstructCest.php index 83173cfe88d..054cc3581d4 100644 --- a/tests/integration/Validation/Validator/CreditCard/ConstructCest.php +++ b/tests/integration/Validation/Validator/CreditCard/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; +namespace Phalcon\Tests\Integration\Validation\Validator\CreditCard; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\CreditCard; /** diff --git a/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php b/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php index b71b8d2ac9d..62ad03fecd1 100644 --- a/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php +++ b/tests/integration/Validation/Validator/CreditCard/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; +namespace Phalcon\Tests\Integration\Validation\Validator\CreditCard; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\CreditCard; /** diff --git a/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php b/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php index 31d94504314..a59e50ea9f1 100644 --- a/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php +++ b/tests/integration/Validation/Validator/CreditCard/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; +namespace Phalcon\Tests\Integration\Validation\Validator\CreditCard; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\CreditCard; /** diff --git a/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php b/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php index f994484d7ca..6efbaaa97fb 100644 --- a/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php +++ b/tests/integration/Validation/Validator/CreditCard/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; +namespace Phalcon\Tests\Integration\Validation\Validator\CreditCard; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\CreditCard; /** diff --git a/tests/integration/Validation/Validator/CreditCard/ValidateCest.php b/tests/integration/Validation/Validator/CreditCard/ValidateCest.php index 369b1d5871b..781b205005c 100644 --- a/tests/integration/Validation/Validator/CreditCard/ValidateCest.php +++ b/tests/integration/Validation/Validator/CreditCard/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\CreditCard; +namespace Phalcon\Tests\Integration\Validation\Validator\CreditCard; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Date/ConstructCest.php b/tests/integration/Validation/Validator/Date/ConstructCest.php index 81afe13752e..abc39485724 100644 --- a/tests/integration/Validation/Validator/Date/ConstructCest.php +++ b/tests/integration/Validation/Validator/Date/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Date; +namespace Phalcon\Tests\Integration\Validation\Validator\Date; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Date; /** diff --git a/tests/integration/Validation/Validator/Date/GetOptionCest.php b/tests/integration/Validation/Validator/Date/GetOptionCest.php index 8782890db2c..9264fba5634 100644 --- a/tests/integration/Validation/Validator/Date/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Date/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Date; +namespace Phalcon\Tests\Integration\Validation\Validator\Date; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Date; /** diff --git a/tests/integration/Validation/Validator/Date/HasOptionCest.php b/tests/integration/Validation/Validator/Date/HasOptionCest.php index d59e2cd5480..accbe772c07 100644 --- a/tests/integration/Validation/Validator/Date/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Date/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Date; +namespace Phalcon\Tests\Integration\Validation\Validator\Date; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Date; /** diff --git a/tests/integration/Validation/Validator/Date/SetOptionCest.php b/tests/integration/Validation/Validator/Date/SetOptionCest.php index 3bfdff2c04f..28e3c28ca64 100644 --- a/tests/integration/Validation/Validator/Date/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Date/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Date; +namespace Phalcon\Tests\Integration\Validation\Validator\Date; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Date; /** diff --git a/tests/integration/Validation/Validator/Date/ValidateCest.php b/tests/integration/Validation/Validator/Date/ValidateCest.php index 39cfab187cc..7ae6103e51a 100644 --- a/tests/integration/Validation/Validator/Date/ValidateCest.php +++ b/tests/integration/Validation/Validator/Date/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Date; +namespace Phalcon\Tests\Integration\Validation\Validator\Date; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/DateCest.php b/tests/integration/Validation/Validator/DateCest.php index 3cbf3845d86..3e7dfa5d734 100644 --- a/tests/integration/Validation/Validator/DateCest.php +++ b/tests/integration/Validation/Validator/DateCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/Digit/ConstructCest.php b/tests/integration/Validation/Validator/Digit/ConstructCest.php index 17f0bf1a8b6..ba8f5d64ad7 100644 --- a/tests/integration/Validation/Validator/Digit/ConstructCest.php +++ b/tests/integration/Validation/Validator/Digit/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Digit; +namespace Phalcon\Tests\Integration\Validation\Validator\Digit; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Digit; /** diff --git a/tests/integration/Validation/Validator/Digit/GetOptionCest.php b/tests/integration/Validation/Validator/Digit/GetOptionCest.php index f0e290df8b0..e7f290df3c2 100644 --- a/tests/integration/Validation/Validator/Digit/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Digit/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Digit; +namespace Phalcon\Tests\Integration\Validation\Validator\Digit; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Digit; /** diff --git a/tests/integration/Validation/Validator/Digit/HasOptionCest.php b/tests/integration/Validation/Validator/Digit/HasOptionCest.php index f83e5e01665..df6103a6934 100644 --- a/tests/integration/Validation/Validator/Digit/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Digit/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Digit; +namespace Phalcon\Tests\Integration\Validation\Validator\Digit; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Digit; /** diff --git a/tests/integration/Validation/Validator/Digit/SetOptionCest.php b/tests/integration/Validation/Validator/Digit/SetOptionCest.php index 51c5e4ffb68..720b6bdf0a8 100644 --- a/tests/integration/Validation/Validator/Digit/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Digit/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Digit; +namespace Phalcon\Tests\Integration\Validation\Validator\Digit; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Digit; /** diff --git a/tests/integration/Validation/Validator/Digit/ValidateCest.php b/tests/integration/Validation/Validator/Digit/ValidateCest.php index fdc5b6eb073..6c9c46e7158 100644 --- a/tests/integration/Validation/Validator/Digit/ValidateCest.php +++ b/tests/integration/Validation/Validator/Digit/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Digit; +namespace Phalcon\Tests\Integration\Validation\Validator\Digit; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/DigitCest.php b/tests/integration/Validation/Validator/DigitCest.php index 0cee32f4feb..3025499b103 100644 --- a/tests/integration/Validation/Validator/DigitCest.php +++ b/tests/integration/Validation/Validator/DigitCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/Email/ConstructCest.php b/tests/integration/Validation/Validator/Email/ConstructCest.php index daa91550086..a7eb34d5c49 100644 --- a/tests/integration/Validation/Validator/Email/ConstructCest.php +++ b/tests/integration/Validation/Validator/Email/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Email; +namespace Phalcon\Tests\Integration\Validation\Validator\Email; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Email; /** diff --git a/tests/integration/Validation/Validator/Email/GetOptionCest.php b/tests/integration/Validation/Validator/Email/GetOptionCest.php index 63cf1ca04e7..b4f15e26bc4 100644 --- a/tests/integration/Validation/Validator/Email/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Email/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Email; +namespace Phalcon\Tests\Integration\Validation\Validator\Email; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Email; /** diff --git a/tests/integration/Validation/Validator/Email/HasOptionCest.php b/tests/integration/Validation/Validator/Email/HasOptionCest.php index 2a549d91228..1f404f3393f 100644 --- a/tests/integration/Validation/Validator/Email/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Email/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Email; +namespace Phalcon\Tests\Integration\Validation\Validator\Email; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Email; /** diff --git a/tests/integration/Validation/Validator/Email/SetOptionCest.php b/tests/integration/Validation/Validator/Email/SetOptionCest.php index eb2f86562b6..5a81253cd91 100644 --- a/tests/integration/Validation/Validator/Email/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Email/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Email; +namespace Phalcon\Tests\Integration\Validation\Validator\Email; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Email; /** diff --git a/tests/integration/Validation/Validator/Email/ValidateCest.php b/tests/integration/Validation/Validator/Email/ValidateCest.php index f22e22a3d22..0a4b1dd5e91 100644 --- a/tests/integration/Validation/Validator/Email/ValidateCest.php +++ b/tests/integration/Validation/Validator/Email/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Email; +namespace Phalcon\Tests\Integration\Validation\Validator\Email; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/EmailCest.php b/tests/integration/Validation/Validator/EmailCest.php index 5da0f558e65..c478d88b82c 100644 --- a/tests/integration/Validation/Validator/EmailCest.php +++ b/tests/integration/Validation/Validator/EmailCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php b/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php index 46985ee918a..3a2f85718ae 100644 --- a/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php +++ b/tests/integration/Validation/Validator/ExclusionIn/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\ExclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\ExclusionIn; /** diff --git a/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php index 54c60737211..f8f62c5813f 100644 --- a/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php +++ b/tests/integration/Validation/Validator/ExclusionIn/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\ExclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\ExclusionIn; /** diff --git a/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php index ffdd39f0765..73a5d7193de 100644 --- a/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php +++ b/tests/integration/Validation/Validator/ExclusionIn/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\ExclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\ExclusionIn; /** diff --git a/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php b/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php index 49c9aecc8d6..c8163081926 100644 --- a/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php +++ b/tests/integration/Validation/Validator/ExclusionIn/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\ExclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\ExclusionIn; /** diff --git a/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php b/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php index 1fa20f911d8..dfda77d9be7 100644 --- a/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php +++ b/tests/integration/Validation/Validator/ExclusionIn/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\ExclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\ExclusionIn; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/ExclusionInCest.php b/tests/integration/Validation/Validator/ExclusionInCest.php index 7237b244c49..f9d973ca25f 100644 --- a/tests/integration/Validation/Validator/ExclusionInCest.php +++ b/tests/integration/Validation/Validator/ExclusionInCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/File/ConstructCest.php b/tests/integration/Validation/Validator/File/ConstructCest.php index 1c06e09ea22..a2e154c5cd1 100644 --- a/tests/integration/Validation/Validator/File/ConstructCest.php +++ b/tests/integration/Validation/Validator/File/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\File; /** diff --git a/tests/integration/Validation/Validator/File/GetOptionCest.php b/tests/integration/Validation/Validator/File/GetOptionCest.php index 1d297ec6dbc..49778fe7e9d 100644 --- a/tests/integration/Validation/Validator/File/GetOptionCest.php +++ b/tests/integration/Validation/Validator/File/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\File; /** diff --git a/tests/integration/Validation/Validator/File/HasOptionCest.php b/tests/integration/Validation/Validator/File/HasOptionCest.php index 85b430771e7..82cae360ba3 100644 --- a/tests/integration/Validation/Validator/File/HasOptionCest.php +++ b/tests/integration/Validation/Validator/File/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\File; /** diff --git a/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php b/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php index 1ddf1dfc705..8b807504fc5 100644 --- a/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php +++ b/tests/integration/Validation/Validator/File/IsAllowEmptyCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/File/SetOptionCest.php b/tests/integration/Validation/Validator/File/SetOptionCest.php index f1420af9d23..f2df18d5270 100644 --- a/tests/integration/Validation/Validator/File/SetOptionCest.php +++ b/tests/integration/Validation/Validator/File/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\File; /** diff --git a/tests/integration/Validation/Validator/File/ValidateCest.php b/tests/integration/Validation/Validator/File/ValidateCest.php index 494b160245b..1ec419dea44 100644 --- a/tests/integration/Validation/Validator/File/ValidateCest.php +++ b/tests/integration/Validation/Validator/File/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\File; +namespace Phalcon\Tests\Integration\Validation\Validator\File; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/GetOptionCest.php b/tests/integration/Validation/Validator/GetOptionCest.php index 7a00f1017a0..b57bad6e6d4 100644 --- a/tests/integration/Validation/Validator/GetOptionCest.php +++ b/tests/integration/Validation/Validator/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/HasOptionCest.php b/tests/integration/Validation/Validator/HasOptionCest.php index 95955b35fe9..745b82c01ad 100644 --- a/tests/integration/Validation/Validator/HasOptionCest.php +++ b/tests/integration/Validation/Validator/HasOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/Identical/ConstructCest.php b/tests/integration/Validation/Validator/Identical/ConstructCest.php index 7b788875573..5b83a710128 100644 --- a/tests/integration/Validation/Validator/Identical/ConstructCest.php +++ b/tests/integration/Validation/Validator/Identical/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Identical; +namespace Phalcon\Tests\Integration\Validation\Validator\Identical; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Identical; /** diff --git a/tests/integration/Validation/Validator/Identical/GetOptionCest.php b/tests/integration/Validation/Validator/Identical/GetOptionCest.php index 276ccfe97c2..f6b5e4242d9 100644 --- a/tests/integration/Validation/Validator/Identical/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Identical/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Identical; +namespace Phalcon\Tests\Integration\Validation\Validator\Identical; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Identical; /** diff --git a/tests/integration/Validation/Validator/Identical/HasOptionCest.php b/tests/integration/Validation/Validator/Identical/HasOptionCest.php index b5a21887110..55bd41ff2e9 100644 --- a/tests/integration/Validation/Validator/Identical/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Identical/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Identical; +namespace Phalcon\Tests\Integration\Validation\Validator\Identical; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Identical; /** diff --git a/tests/integration/Validation/Validator/Identical/SetOptionCest.php b/tests/integration/Validation/Validator/Identical/SetOptionCest.php index 19b08b0d437..4ede18e211d 100644 --- a/tests/integration/Validation/Validator/Identical/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Identical/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Identical; +namespace Phalcon\Tests\Integration\Validation\Validator\Identical; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Identical; /** diff --git a/tests/integration/Validation/Validator/Identical/ValidateCest.php b/tests/integration/Validation/Validator/Identical/ValidateCest.php index 650c355d7f8..7b02f9d235a 100644 --- a/tests/integration/Validation/Validator/Identical/ValidateCest.php +++ b/tests/integration/Validation/Validator/Identical/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Identical; +namespace Phalcon\Tests\Integration\Validation\Validator\Identical; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/IdenticalCest.php b/tests/integration/Validation/Validator/IdenticalCest.php index 8be57967173..ad909470b08 100644 --- a/tests/integration/Validation/Validator/IdenticalCest.php +++ b/tests/integration/Validation/Validator/IdenticalCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php b/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php index 91258dcb2b3..fccd304957e 100644 --- a/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php +++ b/tests/integration/Validation/Validator/InclusionIn/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\InclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\InclusionIn; /** diff --git a/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php index 658ce2ca845..9a1c23892a1 100644 --- a/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php +++ b/tests/integration/Validation/Validator/InclusionIn/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\InclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\InclusionIn; /** diff --git a/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php index 0cedaea1277..d74fab203ae 100644 --- a/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php +++ b/tests/integration/Validation/Validator/InclusionIn/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\InclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\InclusionIn; /** diff --git a/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php b/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php index 03abeb3039a..9fcad21cde5 100644 --- a/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php +++ b/tests/integration/Validation/Validator/InclusionIn/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\InclusionIn; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\InclusionIn; /** diff --git a/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php b/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php index c1c333ff9d3..d74fb79da87 100644 --- a/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php +++ b/tests/integration/Validation/Validator/InclusionIn/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\InclusionIn; +namespace Phalcon\Tests\Integration\Validation\Validator\InclusionIn; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/InclusionInCest.php b/tests/integration/Validation/Validator/InclusionInCest.php index 71105c03866..ef1692aeb6e 100644 --- a/tests/integration/Validation/Validator/InclusionInCest.php +++ b/tests/integration/Validation/Validator/InclusionInCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Ip/ConstructCest.php b/tests/integration/Validation/Validator/Ip/ConstructCest.php index 28466d40901..a5e91f7bba3 100644 --- a/tests/integration/Validation/Validator/Ip/ConstructCest.php +++ b/tests/integration/Validation/Validator/Ip/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Ip; +namespace Phalcon\Tests\Integration\Validation\Validator\Ip; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Ip; /** diff --git a/tests/integration/Validation/Validator/Ip/GetOptionCest.php b/tests/integration/Validation/Validator/Ip/GetOptionCest.php index 9b45f069a2b..58fa383d7e7 100644 --- a/tests/integration/Validation/Validator/Ip/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Ip/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Ip; +namespace Phalcon\Tests\Integration\Validation\Validator\Ip; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Ip; /** diff --git a/tests/integration/Validation/Validator/Ip/HasOptionCest.php b/tests/integration/Validation/Validator/Ip/HasOptionCest.php index 2581954053b..e1983a0652b 100644 --- a/tests/integration/Validation/Validator/Ip/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Ip/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Ip; +namespace Phalcon\Tests\Integration\Validation\Validator\Ip; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Ip; /** diff --git a/tests/integration/Validation/Validator/Ip/SetOptionCest.php b/tests/integration/Validation/Validator/Ip/SetOptionCest.php index 1414f25fa6b..c4bf8108bf5 100644 --- a/tests/integration/Validation/Validator/Ip/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Ip/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Ip; +namespace Phalcon\Tests\Integration\Validation\Validator\Ip; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Ip; /** diff --git a/tests/integration/Validation/Validator/Ip/ValidateCest.php b/tests/integration/Validation/Validator/Ip/ValidateCest.php index b9d9bc2d111..f43f669736b 100644 --- a/tests/integration/Validation/Validator/Ip/ValidateCest.php +++ b/tests/integration/Validation/Validator/Ip/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Ip; +namespace Phalcon\Tests\Integration\Validation\Validator\Ip; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/Validator/Numericality/ConstructCest.php b/tests/integration/Validation/Validator/Numericality/ConstructCest.php index 8977dcd2581..48faa43d199 100644 --- a/tests/integration/Validation/Validator/Numericality/ConstructCest.php +++ b/tests/integration/Validation/Validator/Numericality/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Numericality; +namespace Phalcon\Tests\Integration\Validation\Validator\Numericality; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Numericality; /** diff --git a/tests/integration/Validation/Validator/Numericality/GetOptionCest.php b/tests/integration/Validation/Validator/Numericality/GetOptionCest.php index 28355c256fd..3b66e4f4de1 100644 --- a/tests/integration/Validation/Validator/Numericality/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Numericality/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Numericality; +namespace Phalcon\Tests\Integration\Validation\Validator\Numericality; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Numericality; /** diff --git a/tests/integration/Validation/Validator/Numericality/HasOptionCest.php b/tests/integration/Validation/Validator/Numericality/HasOptionCest.php index 8b484e90108..8a3b1c9aeef 100644 --- a/tests/integration/Validation/Validator/Numericality/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Numericality/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Numericality; +namespace Phalcon\Tests\Integration\Validation\Validator\Numericality; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Numericality; /** diff --git a/tests/integration/Validation/Validator/Numericality/SetOptionCest.php b/tests/integration/Validation/Validator/Numericality/SetOptionCest.php index 55a487191d2..aaeee4939db 100644 --- a/tests/integration/Validation/Validator/Numericality/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Numericality/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Numericality; +namespace Phalcon\Tests\Integration\Validation\Validator\Numericality; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Numericality; /** diff --git a/tests/integration/Validation/Validator/Numericality/ValidateCest.php b/tests/integration/Validation/Validator/Numericality/ValidateCest.php index a349c73be61..2d43af5f451 100644 --- a/tests/integration/Validation/Validator/Numericality/ValidateCest.php +++ b/tests/integration/Validation/Validator/Numericality/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Numericality; +namespace Phalcon\Tests\Integration\Validation\Validator\Numericality; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/NumericalityCest.php b/tests/integration/Validation/Validator/NumericalityCest.php index b61e3ed310e..a128feed554 100644 --- a/tests/integration/Validation/Validator/NumericalityCest.php +++ b/tests/integration/Validation/Validator/NumericalityCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php b/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php index fe76388a99f..195e836d010 100644 --- a/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php +++ b/tests/integration/Validation/Validator/PresenceOf/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; +namespace Phalcon\Tests\Integration\Validation\Validator\PresenceOf; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\PresenceOf; class ConstructCest diff --git a/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php index 16c97b7d4fb..98c7dee5215 100644 --- a/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php +++ b/tests/integration/Validation/Validator/PresenceOf/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; +namespace Phalcon\Tests\Integration\Validation\Validator\PresenceOf; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\PresenceOf; /** diff --git a/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php index 756d4d5a719..fa391a737f8 100644 --- a/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php +++ b/tests/integration/Validation/Validator/PresenceOf/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; +namespace Phalcon\Tests\Integration\Validation\Validator\PresenceOf; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\PresenceOf; class HasOptionCest diff --git a/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php b/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php index e451e6fa624..7d88740875a 100644 --- a/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php +++ b/tests/integration/Validation/Validator/PresenceOf/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; +namespace Phalcon\Tests\Integration\Validation\Validator\PresenceOf; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\PresenceOf; /** diff --git a/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php b/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php index d8fd04de9c5..11ad5974e5d 100644 --- a/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php +++ b/tests/integration/Validation/Validator/PresenceOf/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\PresenceOf; +namespace Phalcon\Tests\Integration\Validation\Validator\PresenceOf; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/PresenceOfCest.php b/tests/integration/Validation/Validator/PresenceOfCest.php index 77953826425..13c33865183 100644 --- a/tests/integration/Validation/Validator/PresenceOfCest.php +++ b/tests/integration/Validation/Validator/PresenceOfCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/Regex/ConstructCest.php b/tests/integration/Validation/Validator/Regex/ConstructCest.php index 98d98b99c82..3444161d903 100644 --- a/tests/integration/Validation/Validator/Regex/ConstructCest.php +++ b/tests/integration/Validation/Validator/Regex/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Regex; +namespace Phalcon\Tests\Integration\Validation\Validator\Regex; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Regex; /** diff --git a/tests/integration/Validation/Validator/Regex/GetOptionCest.php b/tests/integration/Validation/Validator/Regex/GetOptionCest.php index 499a91a059a..e1a37d5b1a7 100644 --- a/tests/integration/Validation/Validator/Regex/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Regex/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Regex; +namespace Phalcon\Tests\Integration\Validation\Validator\Regex; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Regex; /** diff --git a/tests/integration/Validation/Validator/Regex/HasOptionCest.php b/tests/integration/Validation/Validator/Regex/HasOptionCest.php index 1ed918c7cfa..7246fd9cde2 100644 --- a/tests/integration/Validation/Validator/Regex/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Regex/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Regex; +namespace Phalcon\Tests\Integration\Validation\Validator\Regex; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Regex; /** diff --git a/tests/integration/Validation/Validator/Regex/SetOptionCest.php b/tests/integration/Validation/Validator/Regex/SetOptionCest.php index 54e170e3f9f..452441ef617 100644 --- a/tests/integration/Validation/Validator/Regex/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Regex/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Regex; +namespace Phalcon\Tests\Integration\Validation\Validator\Regex; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Regex; /** diff --git a/tests/integration/Validation/Validator/Regex/ValidateCest.php b/tests/integration/Validation/Validator/Regex/ValidateCest.php index 532769f12e7..d3c1913d97f 100644 --- a/tests/integration/Validation/Validator/Regex/ValidateCest.php +++ b/tests/integration/Validation/Validator/Regex/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Regex; +namespace Phalcon\Tests\Integration\Validation\Validator\Regex; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/RegexCest.php b/tests/integration/Validation/Validator/RegexCest.php index 0896af78aec..9873214c936 100644 --- a/tests/integration/Validation/Validator/RegexCest.php +++ b/tests/integration/Validation/Validator/RegexCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/SetOptionCest.php b/tests/integration/Validation/Validator/SetOptionCest.php index 7b69a52b11c..b2c0554cc01 100644 --- a/tests/integration/Validation/Validator/SetOptionCest.php +++ b/tests/integration/Validation/Validator/SetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/ConstructCest.php b/tests/integration/Validation/Validator/StringLength/ConstructCest.php index 8556c287663..b60dd1595f6 100644 --- a/tests/integration/Validation/Validator/StringLength/ConstructCest.php +++ b/tests/integration/Validation/Validator/StringLength/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; use Phalcon\Validation\ValidatorCompositeInterface; diff --git a/tests/integration/Validation/Validator/StringLength/GetOptionCest.php b/tests/integration/Validation/Validator/StringLength/GetOptionCest.php index d5f6eeae2ea..6f0e116543e 100644 --- a/tests/integration/Validation/Validator/StringLength/GetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; /** diff --git a/tests/integration/Validation/Validator/StringLength/GetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/GetTemplateCest.php index 784563de1a6..c02554eb9d8 100644 --- a/tests/integration/Validation/Validator/StringLength/GetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/GetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use Phalcon\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/GetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/GetTemplatesCest.php index 3f119443bb8..179f5537d44 100644 --- a/tests/integration/Validation/Validator/StringLength/GetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/GetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/GetValidatorsCest.php b/tests/integration/Validation/Validator/StringLength/GetValidatorsCest.php index 1fceff2cb82..b0036f41e5a 100644 --- a/tests/integration/Validation/Validator/StringLength/GetValidatorsCest.php +++ b/tests/integration/Validation/Validator/StringLength/GetValidatorsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use Phalcon\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/HasOptionCest.php b/tests/integration/Validation/Validator/StringLength/HasOptionCest.php index 58347871b91..2474821387d 100644 --- a/tests/integration/Validation/Validator/StringLength/HasOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; /** diff --git a/tests/integration/Validation/Validator/StringLength/Max/ConstructCest.php b/tests/integration/Validation/Validator/StringLength/Max/ConstructCest.php index dd4247b1652..d91e4f15675 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/ConstructCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength\Max; class ConstructCest diff --git a/tests/integration/Validation/Validator/StringLength/Max/GetOptionCest.php b/tests/integration/Validation/Validator/StringLength/Max/GetOptionCest.php index 1c140e206fd..99ce0fc9693 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/GetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/GetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/Max/GetTemplateCest.php index a546c05a0b7..30a93aabc94 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/GetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/GetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/GetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/Max/GetTemplatesCest.php index 99fdad2cbcc..7aafb0269d7 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/GetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/GetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/HasOptionCest.php b/tests/integration/Validation/Validator/StringLength/Max/HasOptionCest.php index 90e851e5de4..c4020d343fa 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/HasOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/HasOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/MessageFactoryCest.php b/tests/integration/Validation/Validator/StringLength/Max/MessageFactoryCest.php index f4933432262..b911d4c04fa 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/MessageFactoryCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/MessageFactoryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/StringLength/Max/SetOptionCest.php b/tests/integration/Validation/Validator/StringLength/Max/SetOptionCest.php index 22607173e45..caa75945177 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/SetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; class SetOptionCest diff --git a/tests/integration/Validation/Validator/StringLength/Max/SetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/Max/SetTemplateCest.php index 8c4f7326ee2..daedb77d8e2 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/SetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/SetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/SetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/Max/SetTemplatesCest.php index c32167956e1..77fb330da8a 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/SetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/SetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Max; diff --git a/tests/integration/Validation/Validator/StringLength/Max/ValidateCest.php b/tests/integration/Validation/Validator/StringLength/Max/ValidateCest.php index 8b0543a2793..1d8604f6ec5 100644 --- a/tests/integration/Validation/Validator/StringLength/Max/ValidateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Max/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Max; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Max; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/Validator/StringLength/MessageFactoryCest.php b/tests/integration/Validation/Validator/StringLength/MessageFactoryCest.php index 9870edb5ac5..6f8513500ff 100644 --- a/tests/integration/Validation/Validator/StringLength/MessageFactoryCest.php +++ b/tests/integration/Validation/Validator/StringLength/MessageFactoryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/Min/ConstructCest.php b/tests/integration/Validation/Validator/StringLength/Min/ConstructCest.php index d321c906afc..a15d2711b08 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/ConstructCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength\Min; class ConstructCest diff --git a/tests/integration/Validation/Validator/StringLength/Min/GetOptionCest.php b/tests/integration/Validation/Validator/StringLength/Min/GetOptionCest.php index 904b629d058..76b2b81c2d5 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/GetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/GetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/Min/GetTemplateCest.php index 1960027ae2c..52a1b42608f 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/GetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/GetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/GetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/Min/GetTemplatesCest.php index 25a13b169b5..d3031e824a1 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/GetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/GetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/HasOptionCest.php b/tests/integration/Validation/Validator/StringLength/Min/HasOptionCest.php index e67c5bfb97a..b6f9235a7c9 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/HasOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/HasOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/MessageFactoryCest.php b/tests/integration/Validation/Validator/StringLength/Min/MessageFactoryCest.php index 8e4d9ec4348..f95e67241e4 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/MessageFactoryCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/MessageFactoryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/StringLength/Min/SetOptionCest.php b/tests/integration/Validation/Validator/StringLength/Min/SetOptionCest.php index 7e53b0a9391..2d2098e062d 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/SetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; class SetOptionCest diff --git a/tests/integration/Validation/Validator/StringLength/Min/SetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/Min/SetTemplateCest.php index 5c072b10676..d7ff0912be0 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/SetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/SetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/SetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/Min/SetTemplatesCest.php index ea17e77ad14..176991dd46d 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/SetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/SetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation\Validator\StringLength\Min; diff --git a/tests/integration/Validation/Validator/StringLength/Min/ValidateCest.php b/tests/integration/Validation/Validator/StringLength/Min/ValidateCest.php index 05d983d6ad6..8ac1af85a31 100644 --- a/tests/integration/Validation/Validator/StringLength/Min/ValidateCest.php +++ b/tests/integration/Validation/Validator/StringLength/Min/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength\Min; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength\Min; use IntegrationTester; use Phalcon\Validation; diff --git a/tests/integration/Validation/Validator/StringLength/SetOptionCest.php b/tests/integration/Validation/Validator/StringLength/SetOptionCest.php index 80c7c10a044..14046422a4b 100644 --- a/tests/integration/Validation/Validator/StringLength/SetOptionCest.php +++ b/tests/integration/Validation/Validator/StringLength/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\StringLength; /** diff --git a/tests/integration/Validation/Validator/StringLength/SetTemplateCest.php b/tests/integration/Validation/Validator/StringLength/SetTemplateCest.php index 78b501e3eba..e8703cbfbbe 100644 --- a/tests/integration/Validation/Validator/StringLength/SetTemplateCest.php +++ b/tests/integration/Validation/Validator/StringLength/SetTemplateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use Phalcon\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/SetTemplatesCest.php b/tests/integration/Validation/Validator/StringLength/SetTemplatesCest.php index dfc7efed751..25cd34ee002 100644 --- a/tests/integration/Validation/Validator/StringLength/SetTemplatesCest.php +++ b/tests/integration/Validation/Validator/StringLength/SetTemplatesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use Phalcon\Validation\Validator\StringLength; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/StringLength/ValidateCest.php b/tests/integration/Validation/Validator/StringLength/ValidateCest.php index d3ef43d8d3a..6ab44ec15ec 100644 --- a/tests/integration/Validation/Validator/StringLength/ValidateCest.php +++ b/tests/integration/Validation/Validator/StringLength/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\StringLength; +namespace Phalcon\Tests\Integration\Validation\Validator\StringLength; use IntegrationTester; use Phalcon\Messages\Message; diff --git a/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php b/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php index 271b448b6ec..f247ccc43d5 100644 --- a/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php +++ b/tests/integration/Validation/Validator/Uniqueness/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; +namespace Phalcon\Tests\Integration\Validation\Validator\Uniqueness; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Uniqueness; /** diff --git a/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php index 69bb055fd85..faf25074f59 100644 --- a/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Uniqueness/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; +namespace Phalcon\Tests\Integration\Validation\Validator\Uniqueness; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Uniqueness; /** diff --git a/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php index 3c9a5a1f244..7484e77ac71 100644 --- a/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Uniqueness/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; +namespace Phalcon\Tests\Integration\Validation\Validator\Uniqueness; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Uniqueness; /** diff --git a/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php b/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php index 4b34709a8e3..8deb9fe73ff 100644 --- a/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Uniqueness/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Uniqueness; +namespace Phalcon\Tests\Integration\Validation\Validator\Uniqueness; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Uniqueness; /** diff --git a/tests/integration/Validation/Validator/Url/ConstructCest.php b/tests/integration/Validation/Validator/Url/ConstructCest.php index 0197b24268a..293b9ac1d03 100644 --- a/tests/integration/Validation/Validator/Url/ConstructCest.php +++ b/tests/integration/Validation/Validator/Url/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Url; +namespace Phalcon\Tests\Integration\Validation\Validator\Url; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Url; /** diff --git a/tests/integration/Validation/Validator/Url/GetOptionCest.php b/tests/integration/Validation/Validator/Url/GetOptionCest.php index 27cf343d7f0..42cb9a10de1 100644 --- a/tests/integration/Validation/Validator/Url/GetOptionCest.php +++ b/tests/integration/Validation/Validator/Url/GetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Url; +namespace Phalcon\Tests\Integration\Validation\Validator\Url; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Url; /** diff --git a/tests/integration/Validation/Validator/Url/HasOptionCest.php b/tests/integration/Validation/Validator/Url/HasOptionCest.php index c776af07e0a..3c722f68b9c 100644 --- a/tests/integration/Validation/Validator/Url/HasOptionCest.php +++ b/tests/integration/Validation/Validator/Url/HasOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Url; +namespace Phalcon\Tests\Integration\Validation\Validator\Url; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Url; /** diff --git a/tests/integration/Validation/Validator/Url/SetOptionCest.php b/tests/integration/Validation/Validator/Url/SetOptionCest.php index c8d4a91b449..d14e77d2d41 100644 --- a/tests/integration/Validation/Validator/Url/SetOptionCest.php +++ b/tests/integration/Validation/Validator/Url/SetOptionCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Url; +namespace Phalcon\Tests\Integration\Validation\Validator\Url; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\ValidationTrait; +use Phalcon\Tests\Fixtures\Traits\ValidationTrait; use Phalcon\Validation\Validator\Url; /** diff --git a/tests/integration/Validation/Validator/Url/ValidateCest.php b/tests/integration/Validation/Validator/Url/ValidateCest.php index a0f769e66ba..fb78e37b090 100644 --- a/tests/integration/Validation/Validator/Url/ValidateCest.php +++ b/tests/integration/Validation/Validator/Url/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator\Url; +namespace Phalcon\Tests\Integration\Validation\Validator\Url; use Codeception\Example; use IntegrationTester; diff --git a/tests/integration/Validation/Validator/ValidateCest.php b/tests/integration/Validation/Validator/ValidateCest.php index 75028cf9519..8fec5ab6734 100644 --- a/tests/integration/Validation/Validator/ValidateCest.php +++ b/tests/integration/Validation/Validator/ValidateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\Validator; +namespace Phalcon\Tests\Integration\Validation\Validator; use IntegrationTester; diff --git a/tests/integration/Validation/ValidatorFactory/NewInstanceCest.php b/tests/integration/Validation/ValidatorFactory/NewInstanceCest.php index 6589c62f025..29cc8187cd1 100644 --- a/tests/integration/Validation/ValidatorFactory/NewInstanceCest.php +++ b/tests/integration/Validation/ValidatorFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Validation\ValidatorFactory; +namespace Phalcon\Tests\Integration\Validation\ValidatorFactory; use IntegrationTester; use Phalcon\Validation\Validator\Alnum; diff --git a/tests/syntax/phql/003.phpt b/tests/syntax/phql/003.phpt index 118990cfba7..8e8a57d1481 100644 --- a/tests/syntax/phql/003.phpt +++ b/tests/syntax/phql/003.phpt @@ -10,7 +10,7 @@ var_dump(Lang::parsePHQL(<< @@ -54,7 +54,7 @@ array(3) { ["type"]=> int(355) ["name"]=> - string(28) "Phalcon\Test\Models\Invoices" + string(28) "Phalcon\Tests\Models\Invoices" } } } diff --git a/tests/tocheck-database/Db/Adapter/Pdo/DbDescribeMysqlCest.php b/tests/tocheck-database/Db/Adapter/Pdo/DbDescribeMysqlCest.php index 947c1097e38..e1c47801a37 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/DbDescribeMysqlCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/DbDescribeMysqlCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Db\Adapter\Pdo; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo; use IntegrationTester; use Phalcon\Db\Column; use Phalcon\Db\Index; use Phalcon\Db\Reference; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DbDescribeMysqlCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/DbDescribePostgresqlCest.php b/tests/tocheck-database/Db/Adapter/Pdo/DbDescribePostgresqlCest.php index 80fffab9a9a..8773816d741 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/DbDescribePostgresqlCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/DbDescribePostgresqlCest.php @@ -9,11 +9,11 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Db\Adapter\Pdo; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo; use IntegrationTester; use Phalcon\Db\Column; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DbDescribePostgresqlCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php index 3a90ba267cb..be2488adfe6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddIndexCest.php index 828da22c06c..507bd0641d9 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php index 064162d8f8d..f38a619e930 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AddPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php index db2d0da60e7..38491a0d3ec 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/AffectedRowsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/BeginCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/BeginCest.php index 3a31350d6a1..143502e6f4f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/BeginCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/BeginCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CloseCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CloseCest.php index 61451f6381c..fb516f70e73 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CloseCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CloseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CommitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CommitCest.php index 07d1eef6420..6d16a48f020 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CommitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConnectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConnectCest.php index d125f4edfea..d85ed87b7e0 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConnectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConnectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConstructCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConstructCest.php index fb190e9916d..792762d7ecb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConstructCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php index fd3c7065ad6..04c73203b09 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ConvertBoundParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php index 19d47cf3cc1..532218f76a9 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateViewCest.php index 92fbd953daf..5529fb6933a 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/CreateViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DeleteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DeleteCest.php index 479e78fe5d5..511b8892076 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DeleteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php index e4c42c06930..d66172fdf7e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeColumnsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeColumnsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php index 2101a4e3b50..9d2bfae09ac 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeIndexesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeIndexesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php index 488b2cc347c..dd79b1ad1ee 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DescribeReferencesCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; use Phalcon\Db\Reference; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeReferencesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropColumnCest.php index e00bedb2901..8824a2484b3 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php index fbf700f02ca..0ff4423e3a9 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropIndexCest.php index 984196f4a00..b6ff0227c43 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php index 6be646abd20..2046e29c949 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropTableCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropTableCest.php index 63987ff51e5..eee843b3894 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropTableCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropViewCest.php index e7629009600..262c2802e86 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/DropViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php index 43bca431e15..e913111c8a8 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeIdentifierCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class EscapeIdentifierCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeStringCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeStringCest.php index 3947d0e4773..4df9807f8af 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeStringCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/EscapeStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecuteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecuteCest.php index ae2db38a843..b1d9f2527fa 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecuteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecuteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php index 6fe7b0071b3..899200f6cf3 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ExecutePreparedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchAllCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchAllCest.php index 0a46f92a996..a346d9a6729 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchAllCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchAllCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchColumnCest.php index 08ed3b1e3e1..2e83a2bf172 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchOneCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchOneCest.php index 5d46612d219..7c693d0becc 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchOneCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/FetchOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ForUpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ForUpdateCest.php index 797623c7faf..ee2d72753cb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ForUpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php index 94d93fe9377..94d3b07ef71 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnDefinitionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnListCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnListCest.php index 00bd34708e2..1824380dfb2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnListCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetColumnListCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php index 3a9c953b4be..b5bccfb3c53 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetConnectionIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php index 54070939724..0f2a7f27c27 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php index e2f240bdc33..a9800ddb574 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDefaultValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php index 1eaba23afef..75600cc4a3e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDescriptorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectCest.php index 32c6da2663b..62da6721e79 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php index ad762f8439e..b3044171ea5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetDialectTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php index 93777bc651c..aad6250885d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetErrorInfoCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php index b35cc6b401e..d2d4a60ce91 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php index aa76ce67ba1..a017acf30b4 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetInternalHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php index bd29d39a09d..faf923bd42d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetNestedTransactionSavepointNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php index 40ebc04135e..18b6941e14d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetRealSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php index 5d94dd31648..29c1680f2dd 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php index 6eab72f838c..d0eb3a0eefd 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php index a0e6b251b97..e2a98ee170c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetSqlVariablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php index f4fabaf25e4..c7bf3f7a463 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTransactionLevelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTypeCest.php index 16957eacc23..2af6f6aa959 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php index 14df30784ae..957aa94b923 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertCest.php index 646bc9ab59c..4eb8eaedb10 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/InsertCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php index efd4c1f1e50..7bcbb3c5968 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php index b066228eb6a..d01719bee91 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/IsUnderTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php index 0a739df4a0b..cca1922cca5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LastInsertIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LimitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LimitCest.php index 12027ba88eb..ab6cba584ca 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LimitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/LimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListTablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListTablesCest.php index a27837af645..5dd1434849a 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListTablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListTablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; use PDOException; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListViewsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListViewsCest.php index 458924af6fa..e3878b0331b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListViewsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ListViewsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/PrepareCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/PrepareCest.php index 98605f13df5..40d37ecc74e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/PrepareCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/PrepareCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php index 9cbcc6c1d3c..f50d57c3ae4 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ReleaseSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackCest.php index 75396b451ff..7d430a1f3d8 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php index bf6e81c9b2a..ae40e224db7 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/RollbackSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetDialectCest.php index e83d0a3873c..12f2f4605e2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php index 13062f3669f..245e757ab80 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php index 8e7cfd8fdbe..0492097e0e5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SetNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SharedLockCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SharedLockCest.php index 20fd80110fd..ee9fbf64f02 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SharedLockCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SharedLockCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php index 37346d28ec8..b553b92d835 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/SupportSequencesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableExistsCest.php index be2370dca8c..a1740a40f61 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableExistsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class TableExistsCest diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableOptionsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableOptionsCest.php index a7b5233234e..a502bf80eda 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableOptionsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/TableOptionsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\MysqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\MysqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class TableOptionsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php index c2dffebc8a8..f3153214834 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateCest.php index 613563e2f65..be276f3676b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php index 24fd5959206..462771146b0 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/UseExplicitIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ViewExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ViewExistsCest.php index 3ca4160b8b1..0043f6dcdcb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ViewExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Mysql/ViewExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Mysql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Mysql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/MysqlCest.php b/tests/tocheck-database/Db/Adapter/Pdo/MysqlCest.php index 5456bebb971..a737323520c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/MysqlCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/MysqlCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Db\Adapter\Pdo; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo; use Codeception\Example; use IntegrationTester; use PDOException; use Phalcon\Db\Adapter\Pdo\Mysql; -use Phalcon\Test\Integration\Db\Dialect\Helper\MysqlHelper; +use Phalcon\Tests\Integration\Db\Dialect\Helper\MysqlHelper; class MysqlCest extends MysqlHelper { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddColumnCest.php index ca07920f200..f0835faa8bf 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php index aac2539d8b2..883ef8bdb52 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddIndexCest.php index 3c0e53c79ef..9758e72c5e4 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php index 24a13280a8c..ec4dff4e985 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AddPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php index 069b82f363f..4ca7363620b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/AffectedRowsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/BeginCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/BeginCest.php index a246641a425..9e2edad735a 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/BeginCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/BeginCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CloseCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CloseCest.php index 7e6abdd4edc..8a2e3c6954d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CloseCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CloseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CommitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CommitCest.php index 02cbd1251fb..95d1970f206 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CommitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConnectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConnectCest.php index 2d69165a4a1..6168c527d02 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConnectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConnectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConstructCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConstructCest.php index c144dadf557..6a38174f32e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConstructCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php index c34bfb04bf2..37910f620fc 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ConvertBoundParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php index 2a63f87c377..4f119a75f61 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateTableCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateTableCest.php index 46daf7c13d2..fec7b1f10dc 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateTableCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateViewCest.php index 52e867d1b04..1dcc4867edb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/CreateViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DeleteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DeleteCest.php index e13aef15afc..1200ffdec3a 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DeleteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php index 97770de88ac..aaa82f78eb4 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeColumnsCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; use Phalcon\Db\Column; -use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeColumnsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php index 831ead868d1..7776b0e5dbb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeIndexesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php index daf61a66dc6..daa66a8f356 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DescribeReferencesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeReferencesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropColumnCest.php index 4dad4d63fa0..b19ecbf3177 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php index 04ea0a6f40f..4463ebff216 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropIndexCest.php index 5417cd87c5f..6d65b2d8569 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php index 6d00bdead6b..44e5f84d668 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropTableCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropTableCest.php index 81d1fa037b0..cc654af1f96 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropTableCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropViewCest.php index 32fa3968ea1..de213507c66 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/DropViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php index cb712c39efb..99fc3ec859e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeIdentifierCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php index ba18d817e5f..172afa73d25 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/EscapeStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecuteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecuteCest.php index 0e6fe56e3c7..0933d96609c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecuteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecuteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php index 10eb6cf7580..fa6c6f8a3b2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ExecutePreparedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchAllCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchAllCest.php index 4d408fd7374..95392133307 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchAllCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchAllCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php index bec06c2f303..e544f1a114e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchOneCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchOneCest.php index 279e88e6ece..a127499d2ff 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchOneCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/FetchOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php index 009b99e07f6..16202fdd6cf 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php index 5978685d317..5502a20636e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnDefinitionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php index 218f7dae134..97e11f6ef39 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetColumnListCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php index 851d258298c..c3fba61355d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetConnectionIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php index fb9e026aa34..ca11a2de6c5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php index efb40199215..8cc404084fd 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDefaultValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php index ea37203aa13..5b832e6de3b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDescriptorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectCest.php index 41471978a45..bb2375847e7 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php index 31c00830cc6..5fd8f80bc02 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetDialectTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php index 334a2d64afc..2e64463de5f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetErrorInfoCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php index 40ee1e0f94d..427639f3413 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php index 634a3ea0508..ff695d90796 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetInternalHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php index 7c3d8f81a7c..9e4c1b5f269 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetNestedTransactionSavepointNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php index b26960eaf33..d912f7345e1 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetRealSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php index 692c08ef9dd..406c6f46266 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php index b35bf0828dd..65fd81ef62f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php index 1cc419d947a..b1fa01b2ab1 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetSqlVariablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php index 15ce738290b..3d8ebdfeadb 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTransactionLevelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTypeCest.php index 30cf12ef52a..7b2cc89315d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php index 05ed5cc5b17..34510ccb4af 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertCest.php index 868fa1946f7..4d4f2220403 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/InsertCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php index 17b456d25f4..a37f5587a04 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php index 99ea512ec5e..0c72e5d0d93 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/IsUnderTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php index 9ed616b83e1..87184710dd2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LastInsertIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LimitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LimitCest.php index 68d6f1e0e59..1c982a05792 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LimitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/LimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListTablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListTablesCest.php index 3503e89444e..fe5833240e6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListTablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListTablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListViewsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListViewsCest.php index 2687356c526..26abbcd2eda 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListViewsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ListViewsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php index 63d7325e472..5c39dd3d715 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ModifyColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/PrepareCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/PrepareCest.php index 066aa208127..191b2b543a2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/PrepareCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/PrepareCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/QueryCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/QueryCest.php index f967df184c7..4c0a6753251 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/QueryCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/QueryCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; use Phalcon\Db\Enum; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function is_object; class QueryCest diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php index 15d09193814..baa05c7927d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ReleaseSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackCest.php index 4269f0d0850..09ad3f32a11 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php index 02f4d120bd7..3c27f659cf9 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/RollbackSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetDialectCest.php index ab03c76188d..0bf3e99f44e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php index 03355daf562..9158f0af8e6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php index 8bc156b879f..e53bc43938e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SetNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SharedLockCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SharedLockCest.php index 3b095a62a30..005b625d56c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SharedLockCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SharedLockCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php index b964a4dc33c..57be75e4487 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/SupportSequencesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableExistsCest.php index 4d7065c8352..af12af5904e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableExistsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\Db\PostgresqlTrait; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\Db\PostgresqlTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class TableExistsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php index df802814cdc..f882f9ffd46 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/TableOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php index 9f8c53a1b52..4a9d70b3783 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateCest.php index 3862db52c6b..420fdbc6848 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php index 8b69691d0b3..2a327447195 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/UseExplicitIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php index 6cd68a8edb3..9f83b2d79fd 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Postgresql/ViewExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Postgresql; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Postgresql; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/PostgresqlCest.php b/tests/tocheck-database/Db/Adapter/Pdo/PostgresqlCest.php index 69d6322adbc..a74071ee70d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/PostgresqlCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/PostgresqlCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Db\Adapter\Pdo; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo; use Codeception\Example; use IntegrationTester; use Phalcon\Db\Dialect\Postgresql as DialectPostgresql; use Phalcon\Db\Reference; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function env; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddColumnCest.php index 08aaf6c33cc..58d6e9c0135 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php index b173e9a65fc..42742ddbfa5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddIndexCest.php index e77a6d0118d..d4a9a5648ea 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php index 272262186d9..2d68684777f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AddPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php index 6799a968ea1..05e2a5f9384 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/AffectedRowsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/BeginCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/BeginCest.php index 05651198d1f..6907798174b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/BeginCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/BeginCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CloseCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CloseCest.php index 02779f0f965..68f37474ec4 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CloseCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CloseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CommitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CommitCest.php index 569a57543f4..77e3faafd9e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CommitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConnectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConnectCest.php index 27f904de650..69b9c674855 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConnectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConnectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConstructCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConstructCest.php index c054f4f2a1b..c0e84feed95 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConstructCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php index 76490bb3a4b..1b9aba6e39e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ConvertBoundParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php index bca1325c77c..1ece2400fda 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateTableCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateTableCest.php index ce2efc74dab..84d4374c1da 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateTableCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateViewCest.php index b313035bc4e..3d38332472c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/CreateViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DeleteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DeleteCest.php index ce9101e6521..2ae6dbb72d5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DeleteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php index 99fd7cc3aa4..8350a4bcabf 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeColumnsCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; use Phalcon\Db\Column; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeColumnsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php index ec06ec87883..18675c654d7 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeIndexesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; use Phalcon\Db\Index; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeIndexesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php index eea2270a485..3384c767715 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DescribeReferencesCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; use Phalcon\Db\Reference; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DescribeReferencesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropColumnCest.php index 8cf65bb862e..4066e590333 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php index 4f579e3e031..f065ad81be9 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropIndexCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropIndexCest.php index c00612616ce..3a7ff67486d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropIndexCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php index a39bd376648..b5eab0fad30 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropPrimaryKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropTableCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropTableCest.php index 7829f0bab2f..0bb1d5c4299 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropTableCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropTableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropViewCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropViewCest.php index ca2fd16bc32..f70b323f40e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropViewCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/DropViewCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php index 9560b73cafb..64fd74e1506 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeIdentifierCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php index f67b571d159..c56258f55f6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/EscapeStringCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecuteCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecuteCest.php index 79971d91042..7c72076c764 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecuteCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecuteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php index e8b0f3e2b3b..c02b501f412 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ExecutePreparedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchAllCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchAllCest.php index 99c1f3b054c..7bd82b21ba0 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchAllCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchAllCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php index daf1fcab073..138c399ff38 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchOneCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchOneCest.php index 3cd1d331f02..994fddb0434 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchOneCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/FetchOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php index caac4147cad..91c68248042 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php index 31f10255bfb..5ff9a76fdd3 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnDefinitionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php index 1e0cea0b9e0..d44ef5ede7c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetColumnListCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php index fe3ada95f57..89317915278 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetConnectionIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php index 196f9ee0767..77c0646f2b0 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php index 5bb700f625e..9a06010d020 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDefaultValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php index 0ae8f3d740f..08f09e3019d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDescriptorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectCest.php index 4611c3d3083..f99eed18314 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php index 77c125d8661..12edd30a7cf 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetDialectTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php index a510d3b373b..949fdbd634e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetErrorInfoCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php index cdbee725767..14b0c7487ef 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php index 0661eb245ba..a99c03c9cee 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetInternalHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php index 2afe4cee665..f1783a6a984 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetNestedTransactionSavepointNameCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php index c74a2f8f8a4..553d10aede5 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetRealSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php index ead9061efd6..9bee272fbbc 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php index e1f93906493..645417eb59d 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSQLStatementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php index ddba1b64c26..8c40cb9e927 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetSqlVariablesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php index c0113d25ff7..9698a679b15 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTransactionLevelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTypeCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTypeCest.php index caaa78cc8ad..7a7efa65b34 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTypeCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php index cbe612962b3..5b151ca2f7b 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertCest.php index cf3faf681df..13b52e1b342 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/InsertCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php index a9ff0d9fad7..ef8f5df2e15 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php index 5672b5e1a81..7d589c3a7c6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/IsUnderTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php index 88556af3147..fd9d4cf6910 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LastInsertIdCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LimitCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LimitCest.php index abbf934f1e7..3952dde6751 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LimitCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/LimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListTablesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListTablesCest.php index cd581ee152f..7c1831bdfdf 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListTablesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListTablesCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class ListTablesCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListViewsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListViewsCest.php index afd8f07fa2f..e27e98dcb10 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListViewsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ListViewsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php index fa25e8509a1..5301dbba04e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ModifyColumnCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/PrepareCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/PrepareCest.php index c8f42029aa0..85909b6df0f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/PrepareCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/PrepareCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/QueryCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/QueryCest.php index 339c7d431d9..47dce7e9160 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/QueryCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/QueryCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; use Phalcon\Db\Enum; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function is_array; class QueryCest diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php index 06e4d027d2a..4196e68dce3 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ReleaseSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackCest.php index 24a50b02e3c..f86600bfb2c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php index a93c7b7818d..b36d080d4f3 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/RollbackSavepointCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetDialectCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetDialectCest.php index d71b2a9ad5a..560337b5d3c 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetDialectCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetDialectCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php index e18fe68678a..e43d86d9c67 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php index 6010bb87694..8d031cf0037 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SetNestedTransactionsWithSavepointsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SharedLockCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SharedLockCest.php index 80b284cd019..41c0f97e438 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SharedLockCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SharedLockCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php index 1cfe1ffcf76..60efebd15e6 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/SupportSequencesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableExistsCest.php index 713990102ae..312138ec84e 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableExistsCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class TableExistsCest { diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php index 3d44fc00e49..a3bafb91ea2 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/TableOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php index 3d11a489b60..7ef42460316 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateAsDictCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateCest.php index 03b14e5dc38..a8c45838927 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php index b2f66b5f067..47d3a0908ca 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/UseExplicitIdValueCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php index a2f14fe25eb..67e58137a4f 100644 --- a/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php +++ b/tests/tocheck-database/Db/Adapter/Pdo/Sqlite/ViewExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\Pdo\Sqlite; +namespace Phalcon\Tests\Integration\Db\Adapter\Pdo\Sqlite; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Adapter/PdoFactory/LoadCest.php b/tests/tocheck-database/Db/Adapter/PdoFactory/LoadCest.php index 55dfe1fe5a4..9d08c87db66 100644 --- a/tests/tocheck-database/Db/Adapter/PdoFactory/LoadCest.php +++ b/tests/tocheck-database/Db/Adapter/PdoFactory/LoadCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\PdoFactory; +namespace Phalcon\Tests\Integration\Db\Adapter\PdoFactory; use IntegrationTester; use Phalcon\Db\Adapter\Pdo\Mysql; use Phalcon\Db\Adapter\PdoFactory; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; use function array_intersect_assoc; diff --git a/tests/tocheck-database/Db/Adapter/PdoFactory/NewInstanceCest.php b/tests/tocheck-database/Db/Adapter/PdoFactory/NewInstanceCest.php index 9d6322ba1fc..eed1926e1ff 100644 --- a/tests/tocheck-database/Db/Adapter/PdoFactory/NewInstanceCest.php +++ b/tests/tocheck-database/Db/Adapter/PdoFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Adapter\PdoFactory; +namespace Phalcon\Tests\Integration\Db\Adapter\PdoFactory; use Codeception\Example; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Column/HasDefaultCest.php b/tests/tocheck-database/Db/Column/HasDefaultCest.php index a0e1171d27e..cbcba0de53c 100644 --- a/tests/tocheck-database/Db/Column/HasDefaultCest.php +++ b/tests/tocheck-database/Db/Column/HasDefaultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Column; +namespace Phalcon\Tests\Integration\Db\Column; use Codeception\Example; use IntegrationTester; diff --git a/tests/tocheck-database/Db/Column/IsAutoIncrementCest.php b/tests/tocheck-database/Db/Column/IsAutoIncrementCest.php index 3d076652edb..5d28aa629e2 100644 --- a/tests/tocheck-database/Db/Column/IsAutoIncrementCest.php +++ b/tests/tocheck-database/Db/Column/IsAutoIncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db\Column; +namespace Phalcon\Tests\Integration\Db\Column; use Codeception\Example; use IntegrationTester; diff --git a/tests/tocheck-database/Db/ColumnCest.php b/tests/tocheck-database/Db/ColumnCest.php index 1b4ae90ce8c..cbe2fe7a874 100644 --- a/tests/tocheck-database/Db/ColumnCest.php +++ b/tests/tocheck-database/Db/ColumnCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db; +namespace Phalcon\Tests\Integration\Db; use IntegrationTester; use Phalcon\Db\Column; -use Phalcon\Test\Fixtures\Traits\DialectTrait; +use Phalcon\Tests\Fixtures\Traits\DialectTrait; class ColumnCest { diff --git a/tests/tocheck-database/Db/DbBindCest.php b/tests/tocheck-database/Db/DbBindCest.php index 1031dca8094..e9445b9d88e 100644 --- a/tests/tocheck-database/Db/DbBindCest.php +++ b/tests/tocheck-database/Db/DbBindCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db; +namespace Phalcon\Tests\Integration\Db; use IntegrationTester; use Phalcon\Db\Column; use Phalcon\Db\RawValue; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DbBindCest { diff --git a/tests/tocheck-database/Db/DbCest.php b/tests/tocheck-database/Db/DbCest.php index d19f7924255..c18d25bee6e 100644 --- a/tests/tocheck-database/Db/DbCest.php +++ b/tests/tocheck-database/Db/DbCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Db; +namespace Phalcon\Tests\Integration\Db; use Codeception\Example; use IntegrationTester; use PDO; use Phalcon\Db\Enum; use Phalcon\Db\RawValue; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class DbCest { diff --git a/tests/tocheck-database/Db/Dialect/Helper/MysqlHelper.php b/tests/tocheck-database/Db/Dialect/Helper/MysqlHelper.php index 74f3864f514..77d941fd1b2 100644 --- a/tests/tocheck-database/Db/Dialect/Helper/MysqlHelper.php +++ b/tests/tocheck-database/Db/Dialect/Helper/MysqlHelper.php @@ -1,8 +1,8 @@ 'index', 'module' => 'frontend', - 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers', + 'namespace' => 'Phalcon\Tests\Modules\Frontend\Controllers', ] ); @@ -58,7 +58,7 @@ function () { [ 'frontend' => [ 'path' => dataDir('fixtures/modules/frontend/Module.php'), - 'className' => \Phalcon\Test\Modules\Frontend\Module::class, + 'className' => \Phalcon\Tests\Modules\Frontend\Module::class, ], 'backend' => [ 'path' => dataDir('fixtures/modules/backend/Module.php'), @@ -97,7 +97,7 @@ function () { [ 'controller' => 'index', 'module' => 'frontend', - 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers', + 'namespace' => 'Phalcon\Tests\Modules\Frontend\Controllers', ] ); @@ -106,7 +106,7 @@ function () { [ 'controller' => 'login', 'module' => 'backend', - 'namespace' => 'Phalcon\Test\Modules\Backend\Controllers', + 'namespace' => 'Phalcon\Tests\Modules\Backend\Controllers', ] ); @@ -181,7 +181,7 @@ function () { [ 'controller' => 'index', 'module' => 'frontend', - 'namespace' => 'Phalcon\Test\Modules\Frontend\Controllers', + 'namespace' => 'Phalcon\Tests\Modules\Frontend\Controllers', ] ); @@ -195,7 +195,7 @@ function () { [ 'frontend' => [ 'path' => dataDir('not-a-real-file.php'), - 'className' => \Phalcon\Test\Modules\Frontend\Module::class, + 'className' => \Phalcon\Tests\Modules\Frontend\Module::class, ], ] ); diff --git a/tests/tocheck-database/Mvc/Model/AddBehaviorCest.php b/tests/tocheck-database/Mvc/Model/AddBehaviorCest.php index 4e16a2d94e4..99fdc2f18c9 100644 --- a/tests/tocheck-database/Mvc/Model/AddBehaviorCest.php +++ b/tests/tocheck-database/Mvc/Model/AddBehaviorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; use Phalcon\Mvc\Model; diff --git a/tests/tocheck-database/Mvc/Model/AppendMessageCest.php b/tests/tocheck-database/Mvc/Model/AppendMessageCest.php index 34b9006cde6..481d131220f 100644 --- a/tests/tocheck-database/Mvc/Model/AppendMessageCest.php +++ b/tests/tocheck-database/Mvc/Model/AppendMessageCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/ConstructCest.php index 8ca7f7c1a43..56aa1f0d96e 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\SoftDelete; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php index 39ff5120799..e8a92842f93 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/MissingMethodCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\SoftDelete; use IntegrationTester; use Phalcon\Mvc\Model\Behavior\SoftDelete; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Users; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Users; class MissingMethodCest { diff --git a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/NotifyCest.php b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/NotifyCest.php index d1581930418..71392b9adf3 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/NotifyCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/SoftDelete/NotifyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\SoftDelete; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\SoftDelete; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/ConstructCest.php index 2ac6718a522..930971e49de 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\Timestampable; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php index 336f6d037cc..ddf1e14abda 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/MissingMethodCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\Timestampable; use IntegrationTester; use Phalcon\Mvc\Model\Behavior\Timestampable; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Users; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Users; class MissingMethodCest { diff --git a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/NotifyCest.php b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/NotifyCest.php index 08c74cd784e..72566e30f7b 100644 --- a/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/NotifyCest.php +++ b/tests/tocheck-database/Mvc/Model/Behavior/Timestampable/NotifyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Behavior\Timestampable; +namespace Phalcon\Tests\Integration\Mvc\Model\Behavior\Timestampable; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/BindToHandlerCest.php b/tests/tocheck-database/Mvc/Model/Binder/BindToHandlerCest.php index 54108a06a6f..b659be376d6 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/BindToHandlerCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/BindToHandlerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Binder/ConstructCest.php index ac19d90818d..7a2152afafd 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/GetBoundModelsCest.php b/tests/tocheck-database/Mvc/Model/Binder/GetBoundModelsCest.php index 3f38aaa8b07..c520a5c13b2 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/GetBoundModelsCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/GetBoundModelsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/GetCacheCest.php b/tests/tocheck-database/Mvc/Model/Binder/GetCacheCest.php index 543585e1131..f0903a4ed38 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/GetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/GetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/GetOriginalValuesCest.php b/tests/tocheck-database/Mvc/Model/Binder/GetOriginalValuesCest.php index 3493bf5f8e7..0d2e35074a6 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/GetOriginalValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/GetOriginalValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Binder/SetCacheCest.php b/tests/tocheck-database/Mvc/Model/Binder/SetCacheCest.php index 8bf4f19e8de..ad1a9637b92 100644 --- a/tests/tocheck-database/Mvc/Model/Binder/SetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Binder/SetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Binder; +namespace Phalcon\Tests\Integration\Mvc\Model\Binder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/CloneResultCest.php b/tests/tocheck-database/Mvc/Model/CloneResultCest.php index 4c141c9260c..0b5ca6e1740 100644 --- a/tests/tocheck-database/Mvc/Model/CloneResultCest.php +++ b/tests/tocheck-database/Mvc/Model/CloneResultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/CloneResultMapCest.php b/tests/tocheck-database/Mvc/Model/CloneResultMapCest.php index e41d7610b62..02b0e38dbf3 100644 --- a/tests/tocheck-database/Mvc/Model/CloneResultMapCest.php +++ b/tests/tocheck-database/Mvc/Model/CloneResultMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/CloneResultMapHydrateCest.php b/tests/tocheck-database/Mvc/Model/CloneResultMapHydrateCest.php index 56e50984e2d..01f623db941 100644 --- a/tests/tocheck-database/Mvc/Model/CloneResultMapHydrateCest.php +++ b/tests/tocheck-database/Mvc/Model/CloneResultMapHydrateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/DumpCest.php b/tests/tocheck-database/Mvc/Model/DumpCest.php index 74d7485a36c..67e957fddc8 100644 --- a/tests/tocheck-database/Mvc/Model/DumpCest.php +++ b/tests/tocheck-database/Mvc/Model/DumpCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/FireEventCancelCest.php b/tests/tocheck-database/Mvc/Model/FireEventCancelCest.php index 50a989d0b28..6faf2e4173e 100644 --- a/tests/tocheck-database/Mvc/Model/FireEventCancelCest.php +++ b/tests/tocheck-database/Mvc/Model/FireEventCancelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/FireEventCest.php b/tests/tocheck-database/Mvc/Model/FireEventCest.php index 408de60f6ce..b695793034a 100644 --- a/tests/tocheck-database/Mvc/Model/FireEventCest.php +++ b/tests/tocheck-database/Mvc/Model/FireEventCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetChangedFieldsCest.php b/tests/tocheck-database/Mvc/Model/GetChangedFieldsCest.php index c26d5f39681..e997d3d6797 100644 --- a/tests/tocheck-database/Mvc/Model/GetChangedFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/GetChangedFieldsCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; use Phalcon\Mvc\Model\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; /** * Class GetChangedFieldsCest diff --git a/tests/tocheck-database/Mvc/Model/GetDirtyStateCest.php b/tests/tocheck-database/Mvc/Model/GetDirtyStateCest.php index 09433c9258f..e68ab4f1e21 100644 --- a/tests/tocheck-database/Mvc/Model/GetDirtyStateCest.php +++ b/tests/tocheck-database/Mvc/Model/GetDirtyStateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetModelsManagerCest.php b/tests/tocheck-database/Mvc/Model/GetModelsManagerCest.php index f81594dd212..4a602a03117 100644 --- a/tests/tocheck-database/Mvc/Model/GetModelsManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/GetModelsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetModelsMetaDataCest.php b/tests/tocheck-database/Mvc/Model/GetModelsMetaDataCest.php index d1eaaa8a015..e703b3f73bf 100644 --- a/tests/tocheck-database/Mvc/Model/GetModelsMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/GetModelsMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetOldSnapshotDataCest.php b/tests/tocheck-database/Mvc/Model/GetOldSnapshotDataCest.php index f8d67558f00..c7ba23896c6 100644 --- a/tests/tocheck-database/Mvc/Model/GetOldSnapshotDataCest.php +++ b/tests/tocheck-database/Mvc/Model/GetOldSnapshotDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetOperationMadeCest.php b/tests/tocheck-database/Mvc/Model/GetOperationMadeCest.php index aae20f28f1f..5bcc954c590 100644 --- a/tests/tocheck-database/Mvc/Model/GetOperationMadeCest.php +++ b/tests/tocheck-database/Mvc/Model/GetOperationMadeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetRelatedCest.php b/tests/tocheck-database/Mvc/Model/GetRelatedCest.php index fe8f28d7874..b7bd14ce314 100644 --- a/tests/tocheck-database/Mvc/Model/GetRelatedCest.php +++ b/tests/tocheck-database/Mvc/Model/GetRelatedCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; use Phalcon\Mvc\Model\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models; class GetRelatedCest { diff --git a/tests/tocheck-database/Mvc/Model/GetSchemaCest.php b/tests/tocheck-database/Mvc/Model/GetSchemaCest.php index 2941d634c11..2215e95cee8 100644 --- a/tests/tocheck-database/Mvc/Model/GetSchemaCest.php +++ b/tests/tocheck-database/Mvc/Model/GetSchemaCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetSnapshotDataCest.php b/tests/tocheck-database/Mvc/Model/GetSnapshotDataCest.php index 53668833b2b..24a492216e8 100644 --- a/tests/tocheck-database/Mvc/Model/GetSnapshotDataCest.php +++ b/tests/tocheck-database/Mvc/Model/GetSnapshotDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetSourceCest.php b/tests/tocheck-database/Mvc/Model/GetSourceCest.php index 58e75b0aedc..fa4451c985b 100644 --- a/tests/tocheck-database/Mvc/Model/GetSourceCest.php +++ b/tests/tocheck-database/Mvc/Model/GetSourceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetTransactionCest.php b/tests/tocheck-database/Mvc/Model/GetTransactionCest.php index 33889092b92..ce41d5b8318 100644 --- a/tests/tocheck-database/Mvc/Model/GetTransactionCest.php +++ b/tests/tocheck-database/Mvc/Model/GetTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/GetUpdatedFieldsCest.php b/tests/tocheck-database/Mvc/Model/GetUpdatedFieldsCest.php index de0fef06056..1d7206efa7e 100644 --- a/tests/tocheck-database/Mvc/Model/GetUpdatedFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/GetUpdatedFieldsCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; use Phalcon\Mvc\Model\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; /** * Class GetUpdatedFieldsCest diff --git a/tests/tocheck-database/Mvc/Model/HasSnapshotDataCest.php b/tests/tocheck-database/Mvc/Model/HasSnapshotDataCest.php index 5a8f03f885c..045b3908ec6 100644 --- a/tests/tocheck-database/Mvc/Model/HasSnapshotDataCest.php +++ b/tests/tocheck-database/Mvc/Model/HasSnapshotDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/HasUpdatedCest.php b/tests/tocheck-database/Mvc/Model/HasUpdatedCest.php index 72e2e187561..f6eb424b480 100644 --- a/tests/tocheck-database/Mvc/Model/HasUpdatedCest.php +++ b/tests/tocheck-database/Mvc/Model/HasUpdatedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/InvokeFinderCest.php b/tests/tocheck-database/Mvc/Model/InvokeFinderCest.php index 190c908975f..e58bb96e304 100644 --- a/tests/tocheck-database/Mvc/Model/InvokeFinderCest.php +++ b/tests/tocheck-database/Mvc/Model/InvokeFinderCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; -use Phalcon\Test\Fixtures\Migrations\ObjectsMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Objects; +use Phalcon\Tests\Fixtures\Migrations\ObjectsMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Objects; /** * Class InvokeFinderCest diff --git a/tests/tocheck-database/Mvc/Model/IsRelationshipLoadedCest.php b/tests/tocheck-database/Mvc/Model/IsRelationshipLoadedCest.php index 46f79ceff0f..9cf72644f6b 100644 --- a/tests/tocheck-database/Mvc/Model/IsRelationshipLoadedCest.php +++ b/tests/tocheck-database/Mvc/Model/IsRelationshipLoadedCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\AlbumORama; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\AlbumORama; class IsRelationshipLoadedCest { diff --git a/tests/tocheck-database/Mvc/Model/JsonSerializeCest.php b/tests/tocheck-database/Mvc/Model/JsonSerializeCest.php index 5b08693aba2..53a1d3cea59 100644 --- a/tests/tocheck-database/Mvc/Model/JsonSerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddBehaviorCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddBehaviorCest.php index bf894522cb9..2023feaaf6b 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddBehaviorCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddBehaviorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddBelongsToCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddBelongsToCest.php index 143f98940d2..a0937c00ad1 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddBelongsToCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddBelongsToCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddHasManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddHasManyCest.php index 99de0120fd8..86fb50da854 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddHasManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddHasManyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddHasManyToManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddHasManyToManyCest.php index 15410d1780e..37e526ba4a4 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddHasManyToManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddHasManyToManyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddHasOneCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddHasOneCest.php index 56c4b79ab5c..70ebe2cceed 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddHasOneCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddHasOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/AddHasOneThroughCest.php b/tests/tocheck-database/Mvc/Model/Manager/AddHasOneThroughCest.php index 7230231fb47..62e6197e8de 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/AddHasOneThroughCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/AddHasOneThroughCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/ClearReusableObjectsCest.php b/tests/tocheck-database/Mvc/Model/Manager/ClearReusableObjectsCest.php index 91a0db738f9..147d61dc6ee 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ClearReusableObjectsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ClearReusableObjectsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/CreateBuilderCest.php b/tests/tocheck-database/Mvc/Model/Manager/CreateBuilderCest.php index 33c5bdd6ab6..6ba1a7dd97b 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/CreateBuilderCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/CreateBuilderCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/CreateQueryCest.php b/tests/tocheck-database/Mvc/Model/Manager/CreateQueryCest.php index 510d2988930..ba70554c0df 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/CreateQueryCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/CreateQueryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/DestructCest.php b/tests/tocheck-database/Mvc/Model/Manager/DestructCest.php index 0f2c1d9d89c..5cf5ced58ba 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/DestructCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/DestructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/ExistsBelongsToCest.php b/tests/tocheck-database/Mvc/Model/Manager/ExistsBelongsToCest.php index 1b1c5e51794..bb40be5638a 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ExistsBelongsToCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ExistsBelongsToCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Relations\RelationsParts; -use Phalcon\Test\Models\Relations\RelationsRobots; -use Phalcon\Test\Models\Relations\RelationsRobotsParts; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Relations\RelationsParts; +use Phalcon\Tests\Models\Relations\RelationsRobots; +use Phalcon\Tests\Models\Relations\RelationsRobotsParts; class ExistsBelongsToCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyCest.php index 202a3121b3d..cde12e3f83d 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Relations\RelationsParts; -use Phalcon\Test\Models\Relations\RelationsRobots; -use Phalcon\Test\Models\Relations\RelationsRobotsParts; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Relations\RelationsParts; +use Phalcon\Tests\Models\Relations\RelationsRobots; +use Phalcon\Tests\Models\Relations\RelationsRobotsParts; class ExistsHasManyCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyToManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyToManyCest.php index e5bff07ffbb..689cbea1c4a 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyToManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasManyToManyCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Relations\RelationsParts; -use Phalcon\Test\Models\Relations\RelationsRobots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Relations\RelationsParts; +use Phalcon\Tests\Models\Relations\RelationsRobots; class ExistsHasManyToManyCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneCest.php b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneCest.php index 99fcf2ff964..c88ecb25115 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneThroughCest.php b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneThroughCest.php index a959f4b7ebc..6de9e2b6fe8 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneThroughCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/ExistsHasOneThroughCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Relations\RelationsParts; -use Phalcon\Test\Models\Relations\RelationsRobots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Relations\RelationsParts; +use Phalcon\Tests\Models\Relations\RelationsRobots; class ExistsHasOneThroughCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToCest.php index 4382c079409..aaef2401d79 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToRecordsCest.php index c4b8d45f50b..5bea80a12ae 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetBelongsToRecordsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetCustomEventsManagerCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetCustomEventsManagerCest.php index af8aa08ed8b..d77e3488cfc 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetCustomEventsManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetCustomEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetDICest.php b/tests/tocheck-database/Mvc/Model/Manager/GetDICest.php index f2e14683f50..95bf2e55010 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetEventsManagerCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetEventsManagerCest.php index fa2ab63f502..7306827c612 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetEventsManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyCest.php index 1423023ad0f..79f1b771793 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyRecordsCest.php index e2d78540d4f..a63b6596768 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyRecordsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyToManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyToManyCest.php index a3cded908bd..4b6e23c7e5a 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasManyToManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasManyToManyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneAndHasManyCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneAndHasManyCest.php index b4207b40e65..eff187991cb 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneAndHasManyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneAndHasManyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneCest.php index 102bab53e6c..d3f06371527 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneRecordsCest.php index 9962bcf915a..f49521974e3 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneRecordsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneThroughCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneThroughCest.php index 0ba734a0b8b..9a409c75583 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetHasOneThroughCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetHasOneThroughCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetLastInitializedCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetLastInitializedCest.php index 5d1682fb983..0a9c9bd83db 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetLastInitializedCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetLastInitializedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetLastQueryCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetLastQueryCest.php index 7782ec63e35..18505e1b6c7 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetLastQueryCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetLastQueryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetModelPrefixCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetModelPrefixCest.php index 57f246342b6..690fc7cfe85 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetModelPrefixCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetModelPrefixCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; use Phalcon\Mvc\Model\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetModelPrefixCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetModelSchemaCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetModelSchemaCest.php index ba93d2552b1..35de16114d3 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetModelSchemaCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetModelSchemaCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetModelSourceCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetModelSourceCest.php index 8b8a8fb8554..f9f890cf9d1 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetModelSourceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetModelSourceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionCest.php index b1ac2ca99ca..cf1f10792a8 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionServiceCest.php index c829bc1e924..2287279234c 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetReadConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetRelationByAliasCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetRelationByAliasCest.php index 89fc3ad173e..7fd9c45b4f0 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetRelationByAliasCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetRelationByAliasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetRelationRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetRelationRecordsCest.php index f9cb4de7758..661a44e61ee 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetRelationRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetRelationRecordsCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; use Phalcon\Mvc\Model\Manager; use Phalcon\Mvc\Model\Resultset; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\AlbumORama\Albums; -use Phalcon\Test\Models\AlbumORama\Artists; -use Phalcon\Test\Models\AlbumORama\Songs; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\AlbumORama\Albums; +use Phalcon\Tests\Models\AlbumORama\Artists; +use Phalcon\Tests\Models\AlbumORama\Songs; class GetRelationRecordsCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetRelationsBetweenCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetRelationsBetweenCest.php index 15206769b71..2fdbc4e3e44 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetRelationsBetweenCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetRelationsBetweenCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetRelationsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetRelationsCest.php index 3370ed79408..b9eaefd7fe9 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetRelationsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetRelationsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetReusableRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetReusableRecordsCest.php index 968e8e82d96..f26a76b4b49 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetReusableRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetReusableRecordsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionCest.php index 084d09fd414..48f8242590f 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionServiceCest.php index ab9a7cf8d3e..396cc43bb19 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/GetWriteConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/InitializeCest.php b/tests/tocheck-database/Mvc/Model/Manager/InitializeCest.php index fef7f5bc55b..cbab5976247 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/InitializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/InitializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/IsInitializedCest.php b/tests/tocheck-database/Mvc/Model/Manager/IsInitializedCest.php index 35dd2b406a3..18ab744eaff 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/IsInitializedCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/IsInitializedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/IsKeepingSnapshotsCest.php b/tests/tocheck-database/Mvc/Model/Manager/IsKeepingSnapshotsCest.php index b9b722d3ebe..147d9bcd5fb 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/IsKeepingSnapshotsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/IsKeepingSnapshotsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php b/tests/tocheck-database/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php index 7961b5dd1b8..e1f039fefd1 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/IsUsingDynamicUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/IsVisibleModelPropertyCest.php b/tests/tocheck-database/Mvc/Model/Manager/IsVisibleModelPropertyCest.php index 438cc16a2c3..3bff2371b32 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/IsVisibleModelPropertyCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/IsVisibleModelPropertyCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use Codeception\Example; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Customers; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Customers; class IsVisibleModelPropertyCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/KeepSnapshotsCest.php b/tests/tocheck-database/Mvc/Model/Manager/KeepSnapshotsCest.php index 37b0d44ad1f..3a544bd68f7 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/KeepSnapshotsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/KeepSnapshotsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/LoadCest.php b/tests/tocheck-database/Mvc/Model/Manager/LoadCest.php index ce95109cd78..182d98c3026 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/LoadCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/LoadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/MissingMethodCest.php b/tests/tocheck-database/Mvc/Model/Manager/MissingMethodCest.php index e6b0128311d..cde2ce18d61 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/MissingMethodCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/MissingMethodCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/NotifyEventCest.php b/tests/tocheck-database/Mvc/Model/Manager/NotifyEventCest.php index 5d79ea45884..f9b62a5b176 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/NotifyEventCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/NotifyEventCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetConnectionServiceCest.php index 11fea0088db..c681169360f 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetCustomEventsManagerCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetCustomEventsManagerCest.php index 78544a56ba6..d81cad13ebf 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetCustomEventsManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetCustomEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetDICest.php b/tests/tocheck-database/Mvc/Model/Manager/SetDICest.php index 9317eedf606..ee04eb832bc 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetEventsManagerCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetEventsManagerCest.php index 5f452ce18b9..95f52f9c86c 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetEventsManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetEventsManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetModelPrefixCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetModelPrefixCest.php index 8695414fb5d..36c2300bc93 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetModelPrefixCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetModelPrefixCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; use Phalcon\Mvc\Model\Manager; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; class SetModelPrefixCest { diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetModelSchemaCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetModelSchemaCest.php index 33de81ae74a..24d24a4dce3 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetModelSchemaCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetModelSchemaCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetModelSourceCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetModelSourceCest.php index b3bf1efc661..2157b6237be 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetModelSourceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetModelSourceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetReadConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetReadConnectionServiceCest.php index b712d8add45..d6472f05f3b 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetReadConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetReadConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetReusableRecordsCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetReusableRecordsCest.php index 6b751a493d0..f999160b53a 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetReusableRecordsCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetReusableRecordsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/SetWriteConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/SetWriteConnectionServiceCest.php index b6f730f8d46..a1a5a12fd98 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/SetWriteConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/SetWriteConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php index 2e9527e4bd2..707b2760a93 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/UnderscoreGetConnectionServiceCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Manager/UseDynamicUpdateCest.php b/tests/tocheck-database/Mvc/Model/Manager/UseDynamicUpdateCest.php index 34513ec0994..34d899135ef 100644 --- a/tests/tocheck-database/Mvc/Model/Manager/UseDynamicUpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Manager/UseDynamicUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ConstructCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ConstructCest.php index 1660f48b5a3..408e7d9eb54 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ConstructCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model\MetaData\Apcu; use Phalcon\Mvc\Model\MetaDataInterface; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function apcu_clear_cache; use function apcu_fetch; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAttributesCest.php index a4a2c85ac41..228060be924 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php index 400be919c20..c82f736f548 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php index db9382d6db0..cfbb31f12da 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php index b15abebdf2d..2a637af7bca 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php index 471f2614e70..c9b2a6cd446 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php index 365f569d247..3a2affbd7ae 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php index 04ffea0e59b..c04e32ce299 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php index 8b71d86a387..617f15072d8 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php index 3114f54f0e5..32481fb95c5 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php index 8450193a4a7..802590b3cfb 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetIdentityFieldCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php index 28edaabe617..d6718d32c5f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNonPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php index 92ade25e510..91f6aef9e22 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetNotNullAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php index 5fa71891a8f..2676f392ab4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php index 412fa82cbc2..b9f619feb7b 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetSetDICest.php index bb5389bbce7..0194258c2da 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetStrategyCest.php index 9beceea80b6..9d4a1d83b2d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/HasAttributeCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/HasAttributeCest.php index c986c7485f4..efc7aa5ae7d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/HasAttributeCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/HasAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/IsEmptyCest.php index 8e56991939a..75b4f7cc2d0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadCest.php index 98ce8355ae7..bceee64c314 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php index aa6fd37f62b..863b9bd65e7 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php index 2d81aa72403..de913924224 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php index 07e2a40c1c7..8edaba71bf0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php index 7fdc51cc91e..cddaab0c7bc 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ResetCest.php index c414fd22664..59e3e2965a4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php index ffc3a4d6079..2c4c5b850b4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php index a9732b3b53b..807060bbccb 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php index 519180fffa0..0f4bbefd8cc 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetStrategyCest.php index 1df173ab1ad..5a0285ac132 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteCest.php index fc1624114d0..b4a5381b229 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php index ecb1acdf8da..8ff36b7f2ca 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Apcu/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Apcu; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Apcu; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php index de4dd987c4c..342e6f36796 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php index ca3d21a776b..8bd8e72451f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetBindTypesCest.php index 3ed138ffd91..74012f51e09 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetDataTypesNumericCest.php index c4e26c026bf..69b5d61bfaa 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetDefaultValuesCest.php index f6b533457d3..5a87368fa96 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php index 2842b1e7236..a2bcafc0f6b 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php index 384072fe27a..c76a38f65ca 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetReverseColumnMapCest.php index e3f6b2bf161..9f32eb44e09 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/GetStrategyCest.php index 9d820fa65cc..b07dfbea8f3 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/IsEmptyCest.php index 8fa3feb3fbd..9d0e049360f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ConstructCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ConstructCest.php index 2a69d89c1fb..e7b06cb572d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ConstructCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model\MetaData\Libmemcached; use Phalcon\Mvc\Model\MetaDataInterface; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function dataDir; use function getOptionsLibmemcached; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php index 157f79c15ee..c472bc46c77 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php index f984ad216b5..6a7b4f84a05 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php index 0ef76a7d3bd..e57f5209c68 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php index 9e5d6547aa1..34161e2d5c2 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php index 1586c2d9159..000aa79e40e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php index 3cc70043dab..c3975530a6d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php index 1ce66315cc0..eb998aaccc8 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php index 28f1f8cb625..5657655b8de 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php index d4e296506a9..e8becf0a01b 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php index 4533a331721..569d44d8bc3 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetIdentityFieldCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php index 3d14e095097..845a49da124 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNonPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php index e25b1005aec..fe5cd07c6d4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetNotNullAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php index 8a4995944ca..07b4c8562a6 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php index dac73b4e3ef..653f5a7d645 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetSetDICest.php index 06fd13e40ad..2d40550c8ea 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php index 525206e1401..20ad5cbe552 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php index 79b96fe9da3..03c196e139a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/HasAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php index 4dee0276dd2..c549a250f32 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadCest.php index d0a10bf59e5..c84fc9ac521 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php index 2052734f762..8aec53e9d39 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php index 6efac11d058..285a3c17ecd 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php index 7cff042ae24..188a21018bb 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php index 51632911cc3..902d5b7eb61 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ResetCest.php index e7e97953937..1de1985b7f1 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php index 378dd970001..586383f3d2f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php index 0a58c1433ef..9a77f0aa10d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php index fb56319e8d6..17c5b3ba02c 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php index 947662dde38..d7f65467cf4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteCest.php index 73d9239ec05..5957bde730d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model\Exception; use Phalcon\Mvc\Model\MetaData\Libmemcached; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function getOptionsLibmemcached; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php index 6d7b64a1034..90962291692 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Libmemcached/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Libmemcached; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Libmemcached; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ConstructCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ConstructCest.php index fd6dd8971e3..0cc136ca81a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ConstructCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; use Phalcon\Mvc\Model\MetaData\Memory; use Phalcon\Mvc\Model\MetaDataInterface; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\Robotto; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; +use Phalcon\Tests\Models\Robotto; use function dataDir; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAttributesCest.php index ec05f1d7fe3..8d2db402f72 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php index 15b0c76d6a3..3a3e79ba4ef 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php index 09134c067c7..8246c2ee4e4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetBindTypesCest.php index 9edad6231b6..8aedd38047f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetColumnMapCest.php index 84867a74f02..90fdc4c54e8 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesCest.php index 56a52105ac1..451a7f5e707 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php index 0bd23709fc5..8055cf78685 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php index 8b04e4d31a2..8b0022f0166 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php index 40674687855..728405e1a96 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php index eec94a047cd..0a79ee7842a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetIdentityFieldCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php index 62c1829d4db..57a4eb8ff99 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNonPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php index 99e716a6330..5984a3feb8c 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetNotNullAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php index 2bdcbea9c60..a9386158f1a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php index 94f3a3dae13..600f20c31af 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetSetDICest.php index 705d9ab4f20..b72cd5548ac 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetStrategyCest.php index 6713cbd9932..02e18514ca1 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/HasAttributeCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/HasAttributeCest.php index 9c840fe0c9a..942a10c38cb 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/HasAttributeCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/HasAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/IsEmptyCest.php index fbe41fc6ff2..28579437375 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadCest.php index 3f431a543a9..0142fe2898d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php index 4b086f1ba2b..6f66574485c 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php index c9f8bdf32ba..8cfd7d3ab0a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php index 6f06774bbde..9ef51ec3768 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php index f4e2d93c5ed..b161b9ffafc 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ResetCest.php index a681efa3021..2d6a6a8e42b 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php index 1160292396f..25a1fe93d18 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php index 488a5484a1c..19f52ea210a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php index 21193f8483e..7ea1e8d74e0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetStrategyCest.php index d175a53371e..5506c2e81b5 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteCest.php index 3839ed7fe6c..80edbb26937 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php index c3e251a4103..7dcbe83ac90 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Memory/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Memory; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Memory; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ReadCest.php index 79d2247ba84..c58f3b9dfd3 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapCest.php index fd30ebc473d..2251bd2d179 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapIndexCest.php index 3e115c17041..d8f27677267 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataCest.php index 4ba7fe9b81a..c454f99d665 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataIndexCest.php index d27a3339de7..e83e0712aa0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ConstructCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ConstructCest.php index ad3679df80e..91ff38ab3a0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ConstructCest.php @@ -11,15 +11,15 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; use Phalcon\Cache\AdapterFactory; use Phalcon\Mvc\Model\MetaData\Redis; use Phalcon\Mvc\Model\MetaDataInterface; use Phalcon\Storage\SerializerFactory; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function dataDir; use function env; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAttributesCest.php index f5c2fbcbcbb..3a75e827402 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php index a41af372c9c..99ab34e91ac 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php index 3d4d8f18b90..7ae33493706 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetBindTypesCest.php index 28007f669fe..3d043124298 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetColumnMapCest.php index 58bf3ca1d19..9ea8550e32a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesCest.php index 2a346b307c5..ad26726915a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php index d35493d594b..093a1659882 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php index 483f1b6c88f..be99b940847 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php index fc875fee1f3..1837d8e405e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php index df539cd7a14..7a2ef8c1119 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetIdentityFieldCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php index 3ee7e26af6f..4f1b66cdd4f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNonPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php index 238769532a8..0290236d6b4 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetNotNullAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php index 39c3f1b7baa..c5e720c11f2 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php index 152400010ee..7416b2cef6e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetSetDICest.php index 1ef470597db..997a325d976 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetStrategyCest.php index c206d44622c..fa80f5cfd5f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/HasAttributeCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/HasAttributeCest.php index 75142950302..e194d1334f9 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/HasAttributeCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/HasAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/IsEmptyCest.php index b5c0a1113f1..6ea74bfac01 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadCest.php index b963df97a1b..bd48b6383aa 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php index 0013fedb1b5..d59e9a64b84 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php index 2d4358aeb60..291f32331b3 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php index f32fcb3dab6..cc34d42815e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php index f4b672da831..b6c62aeedbb 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ResetCest.php index 0274fbe61a9..bc65e5e5df6 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php index f7be8e3786b..c9ffe418442 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php index e754e0204cd..8b73c4a2186 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php index 5c4d4f33a60..59591a266bf 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetStrategyCest.php index 4336ea39efd..d85d4c4b87f 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteCest.php index e907e17c8cd..c5e709aa2b3 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php index 2e23ecf6928..d47efd1aa04 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Redis/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Redis; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Redis; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/ResetCest.php index 5d0f978c569..ee42fc155ff 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php index 9a048a7d2a6..9214f570535 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php index 8df41779b2e..748eef948ad 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php index ef7175a40ae..95ff03cb060 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/SetStrategyCest.php index 9cc1cf65c0e..4aabc7d50ef 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php index d7493690c5f..69ba5a8f6ed 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetColumnMapsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Strategy\Annotations; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php index 3bfa05c7837..acb84ea75b8 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Annotations/GetMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Annotations; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Strategy\Annotations; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php index 11400065610..88c76d1f392 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetColumnMapsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Introspection; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Strategy\Introspection; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php index 8143475d08f..16f910f5e70 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Introspection/GetMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy\Introspection; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Strategy\Introspection; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Refactor-AnnotationsCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Refactor-AnnotationsCest.php index 06bb64f8784..7c66e05f342 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Refactor-AnnotationsCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Strategy/Refactor-AnnotationsCest.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Strategy; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Strategy; use IntegrationTester; use Phalcon\Db\Column; use Phalcon\Mvc\Model\MetaData\Memory; use Phalcon\Mvc\Model\MetaData\Strategy\Annotations; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Annotations\Robot; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Annotations\Robot; class AnnotationsCest { diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ConstructCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ConstructCest.php index bba10bed01f..848667ed11d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; use Phalcon\Mvc\Model\MetaData\Stream; use Phalcon\Mvc\Model\MetaDataInterface; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function cacheDir; use function dataDir; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAttributesCest.php index 2d45b1f1e16..f3ab944efb0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticCreateAttributesCest.php index 008b7015e0a..68a573f854c 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticUpdateAttributesCest.php index 49efd183178..39ac4fc84aa 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetBindTypesCest.php index de028ab84d6..fb86bf355e8 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetColumnMapCest.php index 74e187981de..c0f0dfd9e66 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesCest.php index 6baf950d7df..85b9ec1bce0 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesNumericCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesNumericCest.php index 40f6318d546..2a5c9dc5342 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesNumericCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDataTypesNumericCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDefaultValuesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDefaultValuesCest.php index b4b355858fc..ef80ee4579a 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDefaultValuesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetDefaultValuesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetEmptyStringAttributesCest.php index 9676dbf68b4..32321277819 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetIdentityFieldCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetIdentityFieldCest.php index de793374c8a..54d5fe50e58 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetIdentityFieldCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetIdentityFieldCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNonPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNonPrimaryKeyAttributesCest.php index efc5d1c9f70..714e20ab132 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNonPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNonPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNotNullAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNotNullAttributesCest.php index 4fdb3ad731c..c4cc3d3b181 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNotNullAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetNotNullAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetPrimaryKeyAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetPrimaryKeyAttributesCest.php index 491909ef13d..ced941e7834 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetPrimaryKeyAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetPrimaryKeyAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetReverseColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetReverseColumnMapCest.php index ece9154e05d..a58a7a3836c 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetReverseColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetReverseColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetSetDICest.php index 6d2a1b788c9..9c86aff0d2e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetStrategyCest.php index 82d74c4cd17..eb322cf8221 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/GetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/HasAttributeCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/HasAttributeCest.php index c7a0f6bcd9c..274b158cf31 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/HasAttributeCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/HasAttributeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/IsEmptyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/IsEmptyCest.php index c806168e0d0..d4c90ff6620 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/IsEmptyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/IsEmptyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadCest.php index b612bd4a862..21b9f760b15 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapCest.php index b47df7e3591..c15884b4280 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapIndexCest.php index 72f26305efc..72e062f9f98 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadColumnMapIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataCest.php index fb1ce580391..4d8bd3bf23b 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataIndexCest.php index 3900de50e5e..8ee7bd1301d 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ReadMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ResetCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ResetCest.php index 99501f3c3b1..c857fad60a1 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/ResetCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/ResetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticCreateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticCreateAttributesCest.php index 91800839ed5..c84f85636e9 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticCreateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticCreateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticUpdateAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticUpdateAttributesCest.php index 3818d5441a5..c906e494f46 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticUpdateAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetAutomaticUpdateAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetEmptyStringAttributesCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetEmptyStringAttributesCest.php index 9cc5abfeddf..d675d50cbac 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetEmptyStringAttributesCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetEmptyStringAttributesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetStrategyCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetStrategyCest.php index c6a660913aa..e9cd09b3139 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetStrategyCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/SetStrategyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteCest.php index a789c5b9413..f435a8ad5ce 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; use Phalcon\Mvc\Model\Exception; use Phalcon\Mvc\Model\MetaData\Stream; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function file_exists; use function file_put_contents; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteMetaDataIndexCest.php index 671c7f4951e..c6d5360b98e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/Stream/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData\Stream; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData\Stream; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/WriteCest.php b/tests/tocheck-database/Mvc/Model/MetaData/WriteCest.php index f2964d0127a..858bc7b411e 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/WriteCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/WriteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/MetaData/WriteMetaDataIndexCest.php b/tests/tocheck-database/Mvc/Model/MetaData/WriteMetaDataIndexCest.php index b2f4751e157..39bc408eb06 100644 --- a/tests/tocheck-database/Mvc/Model/MetaData/WriteMetaDataIndexCest.php +++ b/tests/tocheck-database/Mvc/Model/MetaData/WriteMetaDataIndexCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\MetaData; +namespace Phalcon\Tests\Integration\Mvc\Model\MetaData; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/AddFromCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/AddFromCest.php index c151f341cab..d32cf77ecdc 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/AddFromCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/AddFromCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/AndHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/AndHavingCest.php index 495df8a7b38..a40f1b61aa9 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/AndHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/AndHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/AndWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/AndWhereCest.php index 827505f7f37..58375f748c7 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/AndWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/AndWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/AutoescapeCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/AutoescapeCest.php index 531261b2dbb..c407131cf9e 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/AutoescapeCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/AutoescapeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenHavingCest.php index 675ffe88330..407948c3105 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenWhereCest.php index 172cc9249b5..ac8687b25da 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/BetweenWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/ColumnsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/ColumnsCest.php index 44c3d23015c..8a8edecb745 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/ColumnsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/ColumnsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/ConstructCest.php index ece9910cc7d..0a90477415e 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/ConstructCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class ConstructCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/DistinctCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/DistinctCest.php index 5055d0905e4..a4ce64a4e43 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/DistinctCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/DistinctCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class DistinctCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/ForUpdateCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/ForUpdateCest.php index 4f0de92d03c..729fab07baa 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/ForUpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/ForUpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/FromCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/FromCest.php index d11d08d094b..cc1b482e4eb 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/FromCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/FromCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Models\RobotsParts; +use Phalcon\Tests\Models\RobotsParts; /** * Class FromCest diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindParamsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindParamsCest.php index 03378bea925..31f07726b64 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindParamsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindTypesCest.php index 7077c267287..54c9df92823 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetColumnsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetColumnsCest.php index b2e0080f657..6e418882e41 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetColumnsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetColumnsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetDistinctCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetDistinctCest.php index 4b746f743f8..6d1e2a27f34 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetDistinctCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetDistinctCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetFromCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetFromCest.php index 0a6f6635b0d..cd55e2a7e11 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetFromCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetFromCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetGroupByCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetGroupByCest.php index 3c69f5efd46..0e75daf4981 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetGroupByCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetGroupByCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetHavingCest.php index 22460b95009..6b8b1b08e29 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetJoinsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetJoinsCest.php index e9a5c2e36b1..db8641507ba 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetJoinsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetJoinsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetLimitCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetLimitCest.php index d3091ba701f..085430e05ac 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetLimitCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetLimitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetModelsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetModelsCest.php index 1d7e27c8f9b..6d89561cd01 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetModelsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetModelsCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\RobotsParts; -use Phalcon\Test\Models\Stock; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; +use Phalcon\Tests\Models\RobotsParts; +use Phalcon\Tests\Models\Stock; class GetModelsCest { @@ -70,7 +70,7 @@ public function mvcModelQueryBuilderGetModelsString(IntegrationTester $I) ->from(['Stock' => Stock::class]) ; - $expected = \Phalcon\Test\Models\Stock::class; + $expected = \Phalcon\Tests\Models\Stock::class; $actual = $builder->getModels(); $I->assertEquals($expected, $actual); } @@ -94,8 +94,8 @@ public function mvcModelQueryBuilderGetModelsArray(IntegrationTester $I) ; $expected = [ - 'Robots' => \Phalcon\Test\Models\Robots::class, - 'RobotsParts' => \Phalcon\Test\Models\RobotsParts::class, + 'Robots' => \Phalcon\Tests\Models\Robots::class, + 'RobotsParts' => \Phalcon\Tests\Models\RobotsParts::class, ]; $actual = $builder->getModels(); $I->assertEquals($expected, $actual); diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetOffsetCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetOffsetCest.php index 778b7f2161c..ab8612085f4 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetOffsetCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetOffsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetOrderByCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetOrderByCest.php index a2b3d61f4d2..aa56fe7c18f 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetOrderByCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetOrderByCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetPhqlCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetPhqlCest.php index 6dfff6968a1..34e117aea2b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetPhqlCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetPhqlCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class GetPhqlCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetQueryCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetQueryCest.php index 5bcfa1d1c72..52888af8f82 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetQueryCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetQueryCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetSetDICest.php index c40fa714f50..2a48616d63b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GetWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GetWhereCest.php index 2c7485c11e9..6c051918c76 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GetWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GetWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/GroupByCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/GroupByCest.php index aa712727734..af5090b667d 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/GroupByCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/GroupByCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class GroupByCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/HavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/HavingCest.php index 331a1137187..bec5af1de2b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/HavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/HavingCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use PDO; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class HavingCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/InHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/InHavingCest.php index 54526734c81..fbef2c14f49 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/InHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/InHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/InWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/InWhereCest.php index 092fcededca..bc7f54cec49 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/InWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/InWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/InnerJoinCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/InnerJoinCest.php index 3331180f914..6919538e3f7 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/InnerJoinCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/InnerJoinCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/JoinCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/JoinCest.php index 58f35e74ee1..0166d7ac58a 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/JoinCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/JoinCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/LeftJoinCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/LeftJoinCest.php index 678439ea0e2..90bea7fa4b7 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/LeftJoinCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/LeftJoinCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/LimitCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/LimitCest.php index be41a88115b..d2164fa3033 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/LimitCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/LimitCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class LimitCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenHavingCest.php index 88c327ab3d9..8a118ebd551 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenWhereCest.php index 59f152470a9..73a80001ff1 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/NotBetweenWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/NotInHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/NotInHavingCest.php index 70f717e4f86..597624d8192 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/NotInHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/NotInHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/NotInWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/NotInWhereCest.php index 860419fd818..53aba984244 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/NotInWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/NotInWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/OffsetCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/OffsetCest.php index d071de2df3b..e22162010d0 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/OffsetCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/OffsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/OrHavingCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/OrHavingCest.php index 0230c87b454..78e62c73dde 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/OrHavingCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/OrHavingCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/OrWhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/OrWhereCest.php index f3f922a4900..3be4a8a9b0b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/OrWhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/OrWhereCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/OrderByCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/OrderByCest.php index c81074d696f..3fe29fa69c0 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/OrderByCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/OrderByCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; class OrderByCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/RightJoinCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/RightJoinCest.php index e2231db8d0b..1c36f01b9b4 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/RightJoinCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/RightJoinCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindParamsCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindParamsCest.php index b0525bc7748..061df9965c9 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindParamsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindTypesCest.php index 80226299e9d..596fdc4e597 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/SetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Builder/WhereCest.php b/tests/tocheck-database/Mvc/Model/Query/Builder/WhereCest.php index f409da9cac3..b498c84c6fb 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Builder/WhereCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Builder/WhereCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Builder; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Builder; use IntegrationTester; use PDO; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Robots; class WhereCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/CleanCest.php b/tests/tocheck-database/Mvc/Model/Query/CleanCest.php index 7fc44437981..860f34ffa13 100644 --- a/tests/tocheck-database/Mvc/Model/Query/CleanCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/CleanCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Query/ConstructCest.php index 8f7ebada0f0..1e12fc129f2 100644 --- a/tests/tocheck-database/Mvc/Model/Query/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/ExecuteCest.php b/tests/tocheck-database/Mvc/Model/Query/ExecuteCest.php index db1f2d7d545..80d40a3255c 100644 --- a/tests/tocheck-database/Mvc/Model/Query/ExecuteCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/ExecuteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetBindParamsCest.php b/tests/tocheck-database/Mvc/Model/Query/GetBindParamsCest.php index 7a0e48e9508..7aca39fd5e7 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetBindParamsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetBindParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/Query/GetBindTypesCest.php index 0f8a87aca30..6e5f6adce43 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetCacheCest.php b/tests/tocheck-database/Mvc/Model/Query/GetCacheCest.php index 176d958b6a4..97486b69985 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetCacheOptionsCest.php b/tests/tocheck-database/Mvc/Model/Query/GetCacheOptionsCest.php index 3fa2b7261dc..2eee3eccfdd 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetCacheOptionsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetCacheOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetIntermediateCest.php b/tests/tocheck-database/Mvc/Model/Query/GetIntermediateCest.php index 7b14422d28e..fc548d1344b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetIntermediateCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetIntermediateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetSetDICest.php b/tests/tocheck-database/Mvc/Model/Query/GetSetDICest.php index 69dd74e9e7b..442e577441e 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetSetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetSetTransactionCest.php b/tests/tocheck-database/Mvc/Model/Query/GetSetTransactionCest.php index 8296586bbb7..b189a11f351 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetSetTransactionCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetSetTransactionCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; use Phalcon\Mvc\Model\Query; use Phalcon\Mvc\Model\Transaction; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetSetTransactionCest { diff --git a/tests/tocheck-database/Mvc/Model/Query/GetSingleResultCest.php b/tests/tocheck-database/Mvc/Model/Query/GetSingleResultCest.php index 26d512eca95..db64c669fc2 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetSingleResultCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetSingleResultCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetTypeCest.php b/tests/tocheck-database/Mvc/Model/Query/GetTypeCest.php index d5c3c76f4c7..f06bb3dc04b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/GetUniqueRowCest.php b/tests/tocheck-database/Mvc/Model/Query/GetUniqueRowCest.php index 0b69b7f6d6e..b03d1da8c47 100644 --- a/tests/tocheck-database/Mvc/Model/Query/GetUniqueRowCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/GetUniqueRowCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Lang/ParsePHQLCest.php b/tests/tocheck-database/Mvc/Model/Query/Lang/ParsePHQLCest.php index 02ee8af0cdc..c2ff5bfe31f 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Lang/ParsePHQLCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Lang/ParsePHQLCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Lang; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Lang; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/ParseCest.php b/tests/tocheck-database/Mvc/Model/Query/ParseCest.php index 204fbc917b5..512a380426c 100644 --- a/tests/tocheck-database/Mvc/Model/Query/ParseCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/ParseCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Refactor-BuilderCest.php b/tests/tocheck-database/Mvc/Model/Query/Refactor-BuilderCest.php index 258276100e4..f747c3f44bc 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Refactor-BuilderCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Refactor-BuilderCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; use PDO; @@ -17,10 +17,10 @@ use Phalcon\Cache\Frontend\Data; use Phalcon\Mvc\Model\Query\Builder; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Parts; -use Phalcon\Test\Models\RobotsParts; -use Phalcon\Test\Models\Snapshot\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Parts; +use Phalcon\Tests\Models\RobotsParts; +use Phalcon\Tests\Models\Snapshot\Robots; use function outputDir; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetBindParamsCest.php b/tests/tocheck-database/Mvc/Model/Query/SetBindParamsCest.php index f24362226de..f038385cf29 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetBindParamsCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetBindParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetBindTypesCest.php b/tests/tocheck-database/Mvc/Model/Query/SetBindTypesCest.php index 21eaf9d6135..cbbc8fe46be 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetBindTypesCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetBindTypesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetIntermediateCest.php b/tests/tocheck-database/Mvc/Model/Query/SetIntermediateCest.php index c59e4658a63..9af2a49667d 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetIntermediateCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetIntermediateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetSharedLockCest.php b/tests/tocheck-database/Mvc/Model/Query/SetSharedLockCest.php index b22eaf1aebc..69444dc963b 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetSharedLockCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetSharedLockCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetTypeCest.php b/tests/tocheck-database/Mvc/Model/Query/SetTypeCest.php index 1df9f5941b6..07bdd5f86f2 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/SetUniqueRowCest.php b/tests/tocheck-database/Mvc/Model/Query/SetUniqueRowCest.php index 0a2bfe99533..9443ed8a891 100644 --- a/tests/tocheck-database/Mvc/Model/Query/SetUniqueRowCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/SetUniqueRowCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query; +namespace Phalcon\Tests\Integration\Mvc\Model\Query; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Status/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Query/Status/ConstructCest.php index efd14b9875f..14d0ffe8587 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Status/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Status/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Status; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Status/GetMessagesCest.php b/tests/tocheck-database/Mvc/Model/Query/Status/GetMessagesCest.php index b81025c5098..cf50f3da3c4 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Status/GetMessagesCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Status/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Status; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Status/GetModelCest.php b/tests/tocheck-database/Mvc/Model/Query/Status/GetModelCest.php index 93d8ce391b9..d93ed716176 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Status/GetModelCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Status/GetModelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Status; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Query/Status/SuccessCest.php b/tests/tocheck-database/Mvc/Model/Query/Status/SuccessCest.php index ae92577cfe9..15f7b144b21 100644 --- a/tests/tocheck-database/Mvc/Model/Query/Status/SuccessCest.php +++ b/tests/tocheck-database/Mvc/Model/Query/Status/SuccessCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Query\Status; +namespace Phalcon\Tests\Integration\Mvc\Model\Query\Status; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Refactor-BinderCest.php b/tests/tocheck-database/Mvc/Model/Refactor-BinderCest.php index 4fee25b7141..7daa7f16665 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-BinderCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-BinderCest.php @@ -1,6 +1,6 @@ assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -252,7 +252,7 @@ public function testDispatcherSingleBindingWithInterface(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -290,12 +290,12 @@ public function testDispatcherMultiBindingWithInterface(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -351,7 +351,7 @@ function () use ($dispatcher) { $returnedValue = $dispatcher->getReturnedValue(); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -391,7 +391,7 @@ function (People $people) { ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -445,12 +445,12 @@ function (People $people, Robots $robot) { ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -487,9 +487,9 @@ function (People $people) { $I->expectThrowable( new TypeError( - 'Argument 1 passed to Phalcon\Test\Integration\Mvc\Model\BinderCest::' . - 'Phalcon\Test\Integration\Mvc\Model\{closure}() must be an instance ' . - 'of Phalcon\Test\Models\People, string given' + 'Argument 1 passed to Phalcon\Tests\Integration\Mvc\Model\BinderCest::' . + 'Phalcon\Tests\Integration\Mvc\Model\{closure}() must be an instance ' . + 'of Phalcon\Tests\Models\People, string given' ), function () use ($micro) { $micro->handle( @@ -506,7 +506,7 @@ function () use ($micro) { ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -548,7 +548,7 @@ public function testMicroControllerSingleBinding(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -590,12 +590,12 @@ public function testMicroControllerMultiBinding(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -637,7 +637,7 @@ public function testMicroControllerSingleBindingWithInterface(IntegrationTester $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -679,12 +679,12 @@ public function testMicroControllerMultiBindingWithInterface(IntegrationTester $ ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -741,7 +741,7 @@ function () use ($micro) { $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -782,7 +782,7 @@ public function testMicroLazySingleBinding(IntegrationTester $I) $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -825,12 +825,12 @@ public function testMicroLazyMultiBinding(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -873,7 +873,7 @@ public function testMicroLazySingleBindingWithInterface(IntegrationTester $I) $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -916,12 +916,12 @@ public function testMicroLazyMultiBindingWithInterface(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue[0] ); $I->assertInstanceOf( - \Phalcon\Test\Models\Robots::class, + \Phalcon\Tests\Models\Robots::class, $returnedValue[1] ); @@ -979,7 +979,7 @@ function () use ($micro) { $returnedValue = $micro->handle('/' . $this->people->cedula); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -1017,7 +1017,7 @@ public function testDispatcherSingleBindingOriginalValues(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); @@ -1055,7 +1055,7 @@ public function testDispatcherSingleBindingNoCache(IntegrationTester $I) ); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $returnedValue ); diff --git a/tests/tocheck-database/Mvc/Model/Refactor-CriteriaCest.php b/tests/tocheck-database/Mvc/Model/Refactor-CriteriaCest.php index e64fb659181..ce68d25f381 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-CriteriaCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-CriteriaCest.php @@ -9,19 +9,19 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Criteria; use Phalcon\Mvc\Model\Query\Builder; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\People; -use Phalcon\Test\Models\Personas; -use Phalcon\Test\Models\Personers; -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\Users; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\People; +use Phalcon\Tests\Models\Personas; +use Phalcon\Tests\Models\Personers; +use Phalcon\Tests\Models\Robots; +use Phalcon\Tests\Models\Users; use function cacheModelsDir; diff --git a/tests/tocheck-database/Mvc/Model/Refactor-DynamicOperationsCest.php b/tests/tocheck-database/Mvc/Model/Refactor-DynamicOperationsCest.php index d0fd5219c7b..0e0861934cd 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-DynamicOperationsCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-DynamicOperationsCest.php @@ -9,17 +9,17 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DateTime; use IntegrationTester; use Phalcon\Db\Adapter\AdapterInterface; use Phalcon\Db\RawValue; use Phalcon\Events\Event; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Dynamic\Personas; -use Phalcon\Test\Models\Dynamic\Personers; -use Phalcon\Test\Models\Dynamic\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Dynamic\Personas; +use Phalcon\Tests\Models\Dynamic\Personers; +use Phalcon\Tests\Models\Dynamic\Robots; class DynamicOperationsCest { diff --git a/tests/tocheck-database/Mvc/Model/Refactor-ManagerCest.php b/tests/tocheck-database/Mvc/Model/Refactor-ManagerCest.php index 1a7bd627b42..92f0a1f0b09 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-ManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-ManagerCest.php @@ -9,14 +9,14 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; use Phalcon\Mvc\Model\Manager; use Phalcon\Mvc\Model\Row; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\People; -use Phalcon\Test\Models\Relations\RobotsParts; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\People; +use Phalcon\Tests\Models\Relations\RobotsParts; class ManagerCest { diff --git a/tests/tocheck-database/Mvc/Model/Refactor-ModelsEventsCest.php b/tests/tocheck-database/Mvc/Model/Refactor-ModelsEventsCest.php index afca26b8ca5..93b1dc54b5c 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-ModelsEventsCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-ModelsEventsCest.php @@ -1,11 +1,11 @@ new Message( - 'Record is referenced by model Phalcon\Test\Models\RobotsParts', + 'Record is referenced by model Phalcon\Tests\Models\RobotsParts', 'id', 'ConstraintViolation' ), @@ -192,7 +192,7 @@ public function executeTestsRenamed(IntegrationTester $I, Example $example) $messages = [ 0 => new Message( - 'Record is referenced by model Phalcon\Test\Models\RobottersDeles', + 'Record is referenced by model Phalcon\Tests\Models\RobottersDeles', 'code', 'ConstraintViolation' ), diff --git a/tests/tocheck-database/Mvc/Model/Refactor-ModelsMetadataCest.php b/tests/tocheck-database/Mvc/Model/Refactor-ModelsMetadataCest.php index ef2fd8d3c6f..1cab4dd18ef 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-ModelsMetadataCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-ModelsMetadataCest.php @@ -1,11 +1,11 @@ container->getShared('modelsManager'); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots' + 'SELECT * FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); $I->assertCount(3, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots ORDER BY 1' + 'SELECT * FROM Phalcon\Tests\Models\Robots ORDER BY 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); $I->assertCount(3, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertEquals(1, $robots[0]->id); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots ORDER BY id' + 'SELECT * FROM Phalcon\Tests\Models\Robots ORDER BY id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); $I->assertCount(3, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertEquals(1, $robots[0]->id); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots ORDER BY Phalcon\Test\Models\Robots.id' + 'SELECT * FROM Phalcon\Tests\Models\Robots ORDER BY Phalcon\Tests\Models\Robots.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); $I->assertCount(3, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertEquals(1, $robots[0]->id); $robots = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.* FROM Phalcon\Test\Models\Robots' + 'SELECT Phalcon\Tests\Models\Robots.* FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertCount(3, $robots); $robots = $manager->executeQuery( - 'SELECT r.* FROM Phalcon\Test\Models\Robots r' + 'SELECT r.* FROM Phalcon\Tests\Models\Robots r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertCount(3, $robots); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots r' + 'SELECT * FROM Phalcon\Tests\Models\Robots r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertCount(3, $robots); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots AS r' + 'SELECT * FROM Phalcon\Tests\Models\Robots AS r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertCount(3, $robots); $robots = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robots AS r' + 'SELECT * FROM Phalcon\Tests\Models\Robots AS r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robots); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $robots[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $robots[0]); $I->assertCount(3, $robots); $result = $manager->executeQuery( - 'SELECT id, name FROM Phalcon\Test\Models\Robots' + 'SELECT id, name FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.name FROM Phalcon\Test\Models\Robots' + 'SELECT Phalcon\Tests\Models\Robots.name FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT LENGTH(name) AS the_length FROM Phalcon\Test\Models\Robots' + 'SELECT LENGTH(name) AS the_length FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -161,8 +161,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(8, $result[0]->the_length); $result = $manager->executeQuery( - 'SELECT LENGTH(Phalcon\Test\Models\Robots.name) AS the_length ' . - 'FROM Phalcon\Test\Models\Robots' + 'SELECT LENGTH(Phalcon\Tests\Models\Robots.name) AS the_length ' . + 'FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -171,8 +171,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(8, $result[0]->the_length); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots WHERE id = 1' + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots WHERE id = 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -181,8 +181,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots WHERE id = ?0', + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots WHERE id = ?0', [0 => 1] ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); @@ -192,8 +192,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots WHERE id = :id:', + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots WHERE id = :id:', ['id' => 1] ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); @@ -203,8 +203,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots WHERE id = "1"' + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots WHERE id = "1"' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -213,15 +213,15 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT r.year FROM Phalcon\Test\Models\Robots r WHERE TRIM(name) != "Robotina"' + 'SELECT r.year FROM Phalcon\Tests\Models\Robots r WHERE TRIM(name) != "Robotina"' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots ORDER BY id' + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots ORDER BY id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -230,8 +230,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots ORDER BY id LIMIT 2' + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots ORDER BY id LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -240,8 +240,8 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.id+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robots ORDER BY id DESC LIMIT 2' + 'SELECT Phalcon\Tests\Models\Robots.id+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robots ORDER BY id DESC LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -250,7 +250,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(4, $result[0]->nextId); $result = $manager->executeQuery( - 'SELECT r.name FROM Phalcon\Test\Models\Robots r ORDER BY r.name DESC LIMIT 2' + 'SELECT r.name FROM Phalcon\Tests\Models\Robots r ORDER BY r.name DESC LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -259,7 +259,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals($result[0]->name, 'Terminator'); $result = $manager->executeQuery( - 'SELECT name le_name FROM Phalcon\Test\Models\Robots ORDER BY name ASC LIMIT 4' + 'SELECT name le_name FROM Phalcon\Tests\Models\Robots ORDER BY name ASC LIMIT 4' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -268,7 +268,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals('Astro Boy', $result[0]->le_name); $result = $manager->executeQuery( - 'SELECT r.name le_name FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 4' + 'SELECT r.name le_name FROM Phalcon\Tests\Models\Robots r ORDER BY r.name ASC LIMIT 4' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -277,7 +277,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals('Astro Boy', $result[0]->le_name); $result = $manager->executeQuery( - 'SELECT r.name le_name FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 1,2' + 'SELECT r.name le_name FROM Phalcon\Tests\Models\Robots r ORDER BY r.name ASC LIMIT 1,2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -287,7 +287,7 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.name le_name ' . - 'FROM Phalcon\Test\Models\Robots r ORDER BY r.name ASC LIMIT 2 OFFSET 1' + 'FROM Phalcon\Tests\Models\Robots r ORDER BY r.name ASC LIMIT 2 OFFSET 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -297,7 +297,7 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.type, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robots r GROUP BY 1 ORDER BY r.type ASC' + 'FROM Phalcon\Tests\Models\Robots r GROUP BY 1 ORDER BY r.type ASC' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -306,7 +306,7 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.type, SUM(r.year-1000) age ' . - 'FROM Phalcon\Test\Models\Robots r GROUP BY 1 ORDER BY 2 DESC' + 'FROM Phalcon\Tests\Models\Robots r GROUP BY 1 ORDER BY 2 DESC' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -315,7 +315,7 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.type, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robots r GROUP BY 1 HAVING COUNT(*) = 2' + 'FROM Phalcon\Tests\Models\Robots r GROUP BY 1 HAVING COUNT(*) = 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -324,7 +324,7 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.type, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robots r GROUP BY 1 HAVING COUNT(*) < 2' + 'FROM Phalcon\Tests\Models\Robots r GROUP BY 1 HAVING COUNT(*) < 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -332,7 +332,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(1, $result[0]->number); $result = $manager->executeQuery( - 'SELECT r.id, r.* FROM Phalcon\Test\Models\Robots r' + 'SELECT r.id, r.* FROM Phalcon\Tests\Models\Robots r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); /** @@ -344,13 +344,13 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(1, $result[0]->id); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.*, Phalcon\Test\Models\RobotsParts.* ' . - 'FROM Phalcon\Test\Models\Robots JOIN Phalcon\Test\Models\RobotsParts ' . - 'ORDER BY Phalcon\Test\Models\Robots.id, Phalcon\Test\Models\RobotsParts.id' + 'SELECT Phalcon\Tests\Models\Robots.*, Phalcon\Tests\Models\RobotsParts.* ' . + 'FROM Phalcon\Tests\Models\Robots JOIN Phalcon\Tests\Models\RobotsParts ' . + 'ORDER BY Phalcon\Tests\Models\Robots.id, Phalcon\Tests\Models\RobotsParts.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertTrue(is_object($result[0]->robots)); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $result[0]->robots); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $result[0]->robots); $I->assertTrue(is_object($result[0]->robotsParts)); $I->assertInstanceOf(\RobotsParts::class, $result[0]->robotsParts); $I->assertCount(3, $result); @@ -360,14 +360,14 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[1]->robotsParts->id); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robots.*, Phalcon\Test\Models\RobotsParts.* ' . - 'FROM Phalcon\Test\Models\Robots JOIN Phalcon\Test\Models\RobotsParts ' . - 'ON Phalcon\Test\Models\Robots.id = Phalcon\Test\Models\RobotsParts.robots_id ' . - 'ORDER BY Phalcon\Test\Models\Robots.id, Phalcon\Test\Models\RobotsParts.id' + 'SELECT Phalcon\Tests\Models\Robots.*, Phalcon\Tests\Models\RobotsParts.* ' . + 'FROM Phalcon\Tests\Models\Robots JOIN Phalcon\Tests\Models\RobotsParts ' . + 'ON Phalcon\Tests\Models\Robots.id = Phalcon\Tests\Models\RobotsParts.robots_id ' . + 'ORDER BY Phalcon\Tests\Models\Robots.id, Phalcon\Tests\Models\RobotsParts.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertTrue(is_object($result[0]->robots)); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $result[0]->robots); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $result[0]->robots); $I->assertTrue(is_object($result[0]->robotsParts)); $I->assertInstanceOf('RobotsParts', $result[0]->robotsParts); $I->assertCount(3, $result); @@ -378,14 +378,14 @@ private function testSelectExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.*, p.* ' . - 'FROM Phalcon\Test\Models\Robots r ' . - 'JOIN Phalcon\Test\Models\RobotsParts p ON r.id = p.robots_id ORDER BY r.id, p.id' + 'FROM Phalcon\Tests\Models\Robots r ' . + 'JOIN Phalcon\Tests\Models\RobotsParts p ON r.id = p.robots_id ORDER BY r.id, p.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertTrue(is_object($result[0]->r)); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots::class, $result[0]->r); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots::class, $result[0]->r); $I->assertTrue(is_object($result[0]->p)); - $I->assertInstanceOf(\Phalcon\Test\Models\RobotsParts::class, $result[0]->p); + $I->assertInstanceOf(\Phalcon\Tests\Models\RobotsParts::class, $result[0]->p); $I->assertCount(3, $result); $I->assertEquals($result[0]->r->id, 1); $I->assertEquals($result[0]->p->id, 1); @@ -397,21 +397,21 @@ private function testSelectExecute(IntegrationTester $I) * @todo - check this */ // $result = $manager->executeQuery( -// 'SELECT Phalcon\Test\Models\Some\Robots.*, Phalcon\Test\Models\Some\RobotsParts.* ' . -// 'FROM Phalcon\Test\Models\Some\Robots JOIN Phalcon\Test\Models\Some\RobotsParts ' . -// 'ON Phalcon\Test\Models\Some\Robots.id = Phalcon\Test\Models\Some\RobotsParts.robots_id ' . -// 'ORDER BY Phalcon\Test\Models\Some\Robots.id, Phalcon\Test\Models\Some\RobotsParts.id' +// 'SELECT Phalcon\Tests\Models\Some\Robots.*, Phalcon\Tests\Models\Some\RobotsParts.* ' . +// 'FROM Phalcon\Tests\Models\Some\Robots JOIN Phalcon\Tests\Models\Some\RobotsParts ' . +// 'ON Phalcon\Tests\Models\Some\Robots.id = Phalcon\Tests\Models\Some\RobotsParts.robots_id ' . +// 'ORDER BY Phalcon\Tests\Models\Some\Robots.id, Phalcon\Tests\Models\Some\RobotsParts.id' // ); // $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); -// $I->assertInternalType('object', $result[0]->{\Phalcon\Test\Models\Some\Robots::class}); +// $I->assertInternalType('object', $result[0]->{\Phalcon\Tests\Models\Some\Robots::class}); // $I->assertInstanceOf( -// \Phalcon\Test\Models\Robots::class, -// $result[0]->{\Phalcon\Test\Models\Some\Robots::class} +// \Phalcon\Tests\Models\Robots::class, +// $result[0]->{\Phalcon\Tests\Models\Some\Robots::class} // ); -// $I->assertInternalType('object', $result[0]->{\Phalcon\Test\Models\Some\RobotsParts::class}); +// $I->assertInternalType('object', $result[0]->{\Phalcon\Tests\Models\Some\RobotsParts::class}); // $I->assertInstanceOf( -// \Phalcon\Test\Models\RobotsParts::class, -// $result[0]->{\Phalcon\Test\Models\Some\RobotsParts::class} +// \Phalcon\Tests\Models\RobotsParts::class, +// $result[0]->{\Phalcon\Tests\Models\Some\RobotsParts::class} // ); // $I->assertCount(3, $result); // $I->assertEquals($result[0]->{'some\Robots'}->id, 1); @@ -422,15 +422,15 @@ private function testSelectExecute(IntegrationTester $I) /** Joins with namespaces and aliases */ $result = $manager->executeQuery( 'SELECT r.*, p.* ' . - 'FROM Phalcon\Test\Models\Some\Robots r ' . - 'JOIN Phalcon\Test\Models\Some\RobotsParts p ON r.id = p.robots_id ' . + 'FROM Phalcon\Tests\Models\Some\Robots r ' . + 'JOIN Phalcon\Tests\Models\Some\RobotsParts p ON r.id = p.robots_id ' . 'ORDER BY r.id, p.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertTrue(is_object($result[0]->r)); - $I->assertInstanceOf(\Phalcon\Test\Models\Some\Robots::class, $result[0]->r); + $I->assertInstanceOf(\Phalcon\Tests\Models\Some\Robots::class, $result[0]->r); $I->assertTrue(is_object($result[0]->p)); - $I->assertInstanceOf(\Phalcon\Test\Models\Some\RobotsParts::class, $result[0]->p); + $I->assertInstanceOf(\Phalcon\Tests\Models\Some\RobotsParts::class, $result[0]->p); $I->assertCount(3, $result); $I->assertEquals(1, $result[0]->r->id); $I->assertEquals(1, $result[0]->p->id); @@ -438,28 +438,28 @@ private function testSelectExecute(IntegrationTester $I) $I->assertEquals(2, $result[1]->p->id); $result = $manager->executeQuery( - 'SELECT id, name FROM Phalcon\Test\Models\Some\Robots' + 'SELECT id, name FROM Phalcon\Tests\Models\Some\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT id, name FROM Phalcon\Test\Models\Some\Robots ORDER BY name DESC LIMIT 2' + 'SELECT id, name FROM Phalcon\Tests\Models\Some\Robots ORDER BY name DESC LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT ALL estado FROM Phalcon\Test\Models\Personas LIMIT 2' + 'SELECT ALL estado FROM Phalcon\Tests\Models\Personas LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT DISTINCT estado FROM Phalcon\Test\Models\Personas' + 'SELECT DISTINCT estado FROM Phalcon\Tests\Models\Personas' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); /** @@ -469,7 +469,7 @@ private function testSelectExecute(IntegrationTester $I) $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT count(DISTINCT estado) FROM Phalcon\Test\Models\Personas' + 'SELECT count(DISTINCT estado) FROM Phalcon\Tests\Models\Personas' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertCount(1, $result); @@ -480,19 +480,19 @@ private function testSelectExecute(IntegrationTester $I) $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT CASE 1 WHEN 1 THEN 2 END FROM Phalcon\Test\Models\Robots' + 'SELECT CASE 1 WHEN 1 THEN 2 END FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertEquals(2, $result[0]->{'0'}); $result = $manager->executeQuery( - 'SELECT CASE 2 WHEN 1 THEN 2 WHEN 2 THEN 3 END FROM Phalcon\Test\Models\Robots' + 'SELECT CASE 2 WHEN 1 THEN 2 WHEN 2 THEN 3 END FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertEquals(3, $result[0]->{'0'}); $result = $manager->executeQuery( - 'SELECT CASE 2 WHEN 1 THEN 2 ELSE 3 END FROM Phalcon\Test\Models\Robots' + 'SELECT CASE 2 WHEN 1 THEN 2 ELSE 3 END FROM Phalcon\Tests\Models\Robots' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertEquals(3, $result[0]->{'0'}); @@ -514,81 +514,81 @@ private function testSelectRenamedExecute(IntegrationTester $I) $manager = $this->container->getShared('modelsManager'); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters' + 'SELECT * FROM Phalcon\Tests\Models\Robotters' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); $I->assertCount(3, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY 1' + 'SELECT * FROM Phalcon\Tests\Models\Robotters ORDER BY 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); $I->assertCount(3, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertEquals($robotters[0]->code, 1); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY code' + 'SELECT * FROM Phalcon\Tests\Models\Robotters ORDER BY code' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); $I->assertCount(3, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertEquals($robotters[0]->code, 1); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters ORDER BY Phalcon\Test\Models\Robotters.code' + 'SELECT * FROM Phalcon\Tests\Models\Robotters ORDER BY Phalcon\Tests\Models\Robotters.code' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); $I->assertCount(3, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertEquals($robotters[0]->code, 1); $robotters = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.* FROM Phalcon\Test\Models\Robotters' + 'SELECT Phalcon\Tests\Models\Robotters.* FROM Phalcon\Tests\Models\Robotters' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertCount(3, $robotters); $robotters = $manager->executeQuery( - 'SELECT r.* FROM Phalcon\Test\Models\Robotters r' + 'SELECT r.* FROM Phalcon\Tests\Models\Robotters r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertCount(3, $robotters); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters r' + 'SELECT * FROM Phalcon\Tests\Models\Robotters r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertCount(3, $robotters); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters AS r' + 'SELECT * FROM Phalcon\Tests\Models\Robotters AS r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertCount(3, $robotters); $robotters = $manager->executeQuery( - 'SELECT * FROM Phalcon\Test\Models\Robotters AS r' + 'SELECT * FROM Phalcon\Tests\Models\Robotters AS r' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $robotters); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $robotters[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $robotters[0]); $I->assertCount(3, $robotters); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.theName FROM Phalcon\Test\Models\Robotters' + 'SELECT Phalcon\Tests\Models\Robotters.theName FROM Phalcon\Tests\Models\Robotters' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT LENGTH(Phalcon\Test\Models\Robotters.theName) AS the_length ' . - 'FROM Phalcon\Test\Models\Robotters' + 'SELECT LENGTH(Phalcon\Tests\Models\Robotters.theName) AS the_length ' . + 'FROM Phalcon\Tests\Models\Robotters' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -597,8 +597,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->the_length, 8); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters WHERE code = 1' + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters WHERE code = 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -607,8 +607,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 2); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters WHERE code = ?0', + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters WHERE code = ?0', [ 0 => 1, ] @@ -620,8 +620,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 2); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters WHERE code = :code:', + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters WHERE code = :code:', [ 'code' => 1, ] @@ -633,8 +633,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 2); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters WHERE code = "1"' + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters WHERE code = "1"' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -644,15 +644,15 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theYear ' . - 'FROM Phalcon\Test\Models\Robotters r WHERE TRIM(theName) != "Robotina"' + 'FROM Phalcon\Tests\Models\Robotters r WHERE TRIM(theName) != "Robotina"' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters ORDER BY code' + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters ORDER BY code' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -661,8 +661,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 2); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters ORDER BY code LIMIT 2' + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters ORDER BY code LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -671,8 +671,8 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 2); $result = $manager->executeQuery( - 'SELECT Phalcon\Test\Models\Robotters.code+1 AS nextId ' . - 'FROM Phalcon\Test\Models\Robotters ORDER BY code DESC LIMIT 2' + 'SELECT Phalcon\Tests\Models\Robotters.code+1 AS nextId ' . + 'FROM Phalcon\Tests\Models\Robotters ORDER BY code DESC LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); @@ -681,7 +681,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $I->assertEquals($result[0]->nextId, 4); $result = $manager->executeQuery( - 'SELECT r.theName FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName DESC LIMIT 2' + 'SELECT r.theName FROM Phalcon\Tests\Models\Robotters r ORDER BY r.theName DESC LIMIT 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -691,7 +691,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theName le_theName ' . - 'FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 4' + 'FROM Phalcon\Tests\Models\Robotters r ORDER BY r.theName ASC LIMIT 4' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(3, $result); @@ -701,7 +701,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theName le_theName ' . - 'FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 1,2' + 'FROM Phalcon\Tests\Models\Robotters r ORDER BY r.theName ASC LIMIT 1,2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -711,7 +711,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theName le_theName ' . - 'FROM Phalcon\Test\Models\Robotters r ORDER BY r.theName ASC LIMIT 2 OFFSET 1' + 'FROM Phalcon\Tests\Models\Robotters r ORDER BY r.theName ASC LIMIT 2 OFFSET 1' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -721,7 +721,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theType, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robotters r GROUP BY 1 ORDER BY r.theType ASC' + 'FROM Phalcon\Tests\Models\Robotters r GROUP BY 1 ORDER BY r.theType ASC' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -730,7 +730,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theType, SUM(r.theYear-1000) age ' . - 'FROM Phalcon\Test\Models\Robotters r GROUP BY 1 ORDER BY 2 DESC' + 'FROM Phalcon\Tests\Models\Robotters r GROUP BY 1 ORDER BY 2 DESC' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(2, $result); @@ -739,7 +739,7 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theType, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robotters r GROUP BY 1 HAVING COUNT(*) = 2' + 'FROM Phalcon\Tests\Models\Robotters r GROUP BY 1 HAVING COUNT(*) = 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertCount(1, $result); @@ -748,14 +748,14 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.theType, COUNT(*) number ' . - 'FROM Phalcon\Test\Models\Robotters r GROUP BY 1 HAVING COUNT(*) < 2' + 'FROM Phalcon\Tests\Models\Robotters r GROUP BY 1 HAVING COUNT(*) < 2' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertInstanceOf(\Phalcon\Mvc\Model\Row::class, $result[0]); $I->assertCount(1, $result); $I->assertEquals($result[0]->number, 1); - $result = $manager->executeQuery('SELECT r.code, r.* FROM Phalcon\Test\Models\Robotters r'); + $result = $manager->executeQuery('SELECT r.code, r.* FROM Phalcon\Tests\Models\Robotters r'); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); /** * @todo Check this @@ -769,16 +769,16 @@ private function testSelectRenamedExecute(IntegrationTester $I) // $I->assertEquals($result[0]->code, 1); // // $result = $manager->executeQuery( -// 'SELECT Phalcon\Test\Models\Robotters.*, Phalcon\Test\Models\RobottersDeles.* ' . -// 'FROM Phalcon\Test\Models\Robotters ' . -// 'JOIN Phalcon\Test\Models\RobottersDeles ' . -// 'ORDER BY Phalcon\Test\Models\Robotters.code, Phalcon\Test\Models\RobottersDeles.code' +// 'SELECT Phalcon\Tests\Models\Robotters.*, Phalcon\Tests\Models\RobottersDeles.* ' . +// 'FROM Phalcon\Tests\Models\Robotters ' . +// 'JOIN Phalcon\Tests\Models\RobottersDeles ' . +// 'ORDER BY Phalcon\Tests\Models\Robotters.code, Phalcon\Tests\Models\RobottersDeles.code' // ); // $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); // $I->assertInternalType('object', $result[0]->robotters); -// $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $result[0]->robotters); +// $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $result[0]->robotters); // $I->assertInternalType('object', $result[0]->robottersDeles); -// $I->assertInstanceOf(\Phalcon\Test\Models\RobottersDeles::class, $result[0]->robottersDeles); +// $I->assertInstanceOf(\Phalcon\Tests\Models\RobottersDeles::class, $result[0]->robottersDeles); // $I->assertCount(3, $result); // $I->assertEquals($result[0]->robotters->code, 1); // $I->assertEquals($result[0]->robottersDeles->code, 1); @@ -786,15 +786,15 @@ private function testSelectRenamedExecute(IntegrationTester $I) // $I->assertEquals($result[1]->robottersDeles->code, 2); // // $result = $manager->executeQuery( -// 'SELECT Phalcon\Test\Models\Robotters.*, Phalcon\Test\Models\RobottersDeles.* ' . -// 'FROM Phalcon\Test\Models\Robotters ' . -// 'JOIN Phalcon\Test\Models\RobottersDeles ' . -// 'ON Phalcon\Test\Models\Robotters.code = Phalcon\Test\Models\RobottersDeles.robottersCode ' . -// 'ORDER BY Phalcon\Test\Models\Robotters.code, Phalcon\Test\Models\RobottersDeles.code' +// 'SELECT Phalcon\Tests\Models\Robotters.*, Phalcon\Tests\Models\RobottersDeles.* ' . +// 'FROM Phalcon\Tests\Models\Robotters ' . +// 'JOIN Phalcon\Tests\Models\RobottersDeles ' . +// 'ON Phalcon\Tests\Models\Robotters.code = Phalcon\Tests\Models\RobottersDeles.robottersCode ' . +// 'ORDER BY Phalcon\Tests\Models\Robotters.code, Phalcon\Tests\Models\RobottersDeles.code' // ); // $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); // $I->assertInternalType('object', $result[0]->robotters); -// $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $result[0]->robotters); +// $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $result[0]->robotters); // $I->assertInternalType('object', $result[0]->robottersDeles); // $I->assertInstanceOf('RobottersDeles', $result[0]->robottersDeles); // $I->assertCount(3, $result); @@ -805,16 +805,16 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.*, p.* ' . - 'FROM Phalcon\Test\Models\Robotters r ' . - 'JOIN Phalcon\Test\Models\RobottersDeles p ' . + 'FROM Phalcon\Tests\Models\Robotters r ' . + 'JOIN Phalcon\Tests\Models\RobottersDeles p ' . 'ON r.code = p.robottersCode ' . 'ORDER BY r.code, p.code' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $I->assertTrue(is_object($result[0]->r)); - $I->assertInstanceOf(\Phalcon\Test\Models\Robotters::class, $result[0]->r); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robotters::class, $result[0]->r); $I->assertTrue(is_object($result[0]->p)); - $I->assertInstanceOf(\Phalcon\Test\Models\RobottersDeles::class, $result[0]->p); + $I->assertInstanceOf(\Phalcon\Tests\Models\RobottersDeles::class, $result[0]->p); $I->assertCount(3, $result); $I->assertEquals($result[0]->r->code, 1); $I->assertEquals($result[0]->p->code, 1); @@ -823,37 +823,37 @@ private function testSelectRenamedExecute(IntegrationTester $I) $result = $manager->executeQuery( 'SELECT r.* ' . - 'FROM Phalcon\Test\Models\RobotsParts rp ' . - 'LEFT JOIN Phalcon\Test\Models\Robots2 r ON rp.robots_id=r.id' + 'FROM Phalcon\Tests\Models\RobotsParts rp ' . + 'LEFT JOIN Phalcon\Tests\Models\Robots2 r ON rp.robots_id=r.id' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $I->assertTrue(is_object($result[0])); - $I->assertInstanceOf(\Phalcon\Test\Models\Robots2::class, $result[0]); + $I->assertInstanceOf(\Phalcon\Tests\Models\Robots2::class, $result[0]); $I->assertNotNull($result[0]->getName()); $result = $manager->executeQuery( 'SELECT r.* ' . - 'FROM Phalcon\Test\Models\Robots r ' . + 'FROM Phalcon\Tests\Models\Robots r ' . 'WHERE r.id NOT IN (SELECT p.id ' . - 'FROM Phalcon\Test\Models\Parts p WHERE r.id < p.id)' + 'FROM Phalcon\Tests\Models\Parts p WHERE r.id < p.id)' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Simple::class, $result); $result = $manager->executeQuery( 'SELECT * ' . - 'FROM Phalcon\Test\Models\Robots r ' . - 'JOIN Phalcon\Test\Models\RobotsParts rp ' . + 'FROM Phalcon\Tests\Models\Robots r ' . + 'JOIN Phalcon\Tests\Models\RobotsParts rp ' . 'WHERE rp.id IN (SELECT p.id ' . - 'FROM Phalcon\Test\Models\Parts p WHERE rp.parts_id = p.id)' + 'FROM Phalcon\Tests\Models\Parts p WHERE rp.parts_id = p.id)' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); $result = $manager->executeQuery( 'SELECT * ' . - 'FROM Phalcon\Test\Models\Robots r ' . - 'JOIN Phalcon\Test\Models\RobotsParts rp ' . + 'FROM Phalcon\Tests\Models\Robots r ' . + 'JOIN Phalcon\Tests\Models\RobotsParts rp ' . 'WHERE r.id IN (SELECT p.id ' . - 'FROM Phalcon\Test\Models\Parts p)' + 'FROM Phalcon\Tests\Models\Parts p)' ); $I->assertInstanceOf(\Phalcon\Mvc\Model\Resultset\Complex::class, $result); } @@ -865,7 +865,7 @@ private function testInsertExecute(IntegrationTester $I) $this->container->getShared('db')->delete('subscriptores'); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores ' . 'VALUES (NULL, "marina@hotmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertFalse($status->success()); @@ -877,7 +877,7 @@ private function testInsertExecute(IntegrationTester $I) $I->assertEquals([], $messages[0]->getMetaData()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores ' . 'VALUES (NULL, "dtmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertFalse($status->success()); @@ -889,25 +889,25 @@ private function testInsertExecute(IntegrationTester $I) $I->assertEquals([], $messages[0]->getMetaData()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores ' . 'VALUES (NULL, "le-marina@hotmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores ' . 'VALUES (NULL, "sonny@hotmail.com", "2010-01-01 13:21:00", "P")' ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores (email, created_at, status) ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores (email, created_at, status) ' . 'VALUES ("hideaway@hotmail.com", "2010-01-01 13:21:00", "P")' ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Subscriptores (email, created_at, status) ' . + 'INSERT INTO Phalcon\Tests\Models\Subscriptores (email, created_at, status) ' . 'VALUES (:email:, :created_at:, :status:)', [ 'email' => 'yeahyeah@hotmail.com', @@ -933,7 +933,7 @@ private function testInsertRenamedExecute(IntegrationTester $I) * This test must fail because the email is not allowed as a model business rule */ $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes ' . 'VALUES (NULL, "marina@hotmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertFalse($status->success()); @@ -949,7 +949,7 @@ private function testInsertRenamedExecute(IntegrationTester $I) * This test must fail because the email is invalid */ $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes ' . 'VALUES (NULL, "dtmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertFalse($status->success()); @@ -964,7 +964,7 @@ private function testInsertRenamedExecute(IntegrationTester $I) * This test must pass */ $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes ' . 'VALUES (NULL, "le-marina@hotmail.com", "2011-01-01 09:01:01", "P")' ); $I->assertTrue($status->success()); @@ -973,7 +973,7 @@ private function testInsertRenamedExecute(IntegrationTester $I) * This test must pass */ $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes ' . 'VALUES (NULL, "sonny@hotmail.com", "2010-01-01 13:21:00", "P")' ); $I->assertTrue($status->success()); @@ -982,13 +982,13 @@ private function testInsertRenamedExecute(IntegrationTester $I) * This test must pass */ $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes (courrierElectronique, creeA, statut) ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes (courrierElectronique, creeA, statut) ' . 'VALUES ("hideaway@hotmail.com", "2010-01-01 13:21:00", "P")' ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'INSERT INTO Phalcon\Test\Models\Abonnes (courrierElectronique, creeA, statut) ' . + 'INSERT INTO Phalcon\Tests\Models\Abonnes (courrierElectronique, creeA, statut) ' . 'VALUES (:courrierElectronique:, :creeA:, :statut:)', [ 'courrierElectronique' => 'yeahyeah@hotmail.com', @@ -1014,13 +1014,13 @@ private function testUpdateExecute(IntegrationTester $I) ; $status = $manager->executeQuery( - "UPDATE Phalcon\Test\Models\People SET direccion = 'COL' ' . + "UPDATE Phalcon\Tests\Models\People SET direccion = 'COL' ' . 'WHERE ciudad_id IS NULL LIMIT 25" ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'UPDATE Phalcon\Test\Models\People SET direccion = :direccion: ' . + 'UPDATE Phalcon\Tests\Models\People SET direccion = :direccion: ' . 'WHERE ciudad_id IS NULL LIMIT 25', [ 'direccion' => 'MXN', @@ -1029,7 +1029,7 @@ private function testUpdateExecute(IntegrationTester $I) $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'UPDATE Phalcon\Test\Models\Subscriptores SET status = :status: WHERE email = :email:', + 'UPDATE Phalcon\Tests\Models\Subscriptores SET status = :status: WHERE email = :email:', [ 'status' => 'I', 'email' => 'le-marina@hotmail.com', @@ -1061,13 +1061,13 @@ private function testUpdateRenamedExecute(IntegrationTester $I) ; $status = $manager->executeQuery( - "UPDATE Phalcon\Test\Models\Personers SET adresse = 'COL' ' . + "UPDATE Phalcon\Tests\Models\Personers SET adresse = 'COL' ' . 'WHERE fodebyId IS NULL LIMIT 25" ); $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'UPDATE Phalcon\Test\Models\Personers SET adresse = :adresse: ' . + 'UPDATE Phalcon\Tests\Models\Personers SET adresse = :adresse: ' . 'WHERE fodebyId IS NULL LIMIT 25', [ 'adresse' => 'MXN', @@ -1076,7 +1076,7 @@ private function testUpdateRenamedExecute(IntegrationTester $I) $I->assertTrue($status->success()); $status = $manager->executeQuery( - 'UPDATE Phalcon\Test\Models\Abonnes SET statut = :statut: ' . + 'UPDATE Phalcon\Tests\Models\Abonnes SET statut = :statut: ' . 'WHERE courrierElectronique = :courrierElectronique:', [ 'statut' => 'I', @@ -1091,7 +1091,7 @@ private function testDeleteExecute(IntegrationTester $I) $manager = $this->container->getShared('modelsManager'); $status = $manager->executeQuery( - 'DELETE FROM Phalcon\Test\Models\Subscriptores ' . + 'DELETE FROM Phalcon\Tests\Models\Subscriptores ' . 'WHERE email = "marina@hotmail.com"' ); @@ -1101,7 +1101,7 @@ private function testDeleteExecute(IntegrationTester $I) $status = $manager->executeQuery( - 'DELETE FROM Phalcon\Test\Models\Subscriptores ' . + 'DELETE FROM Phalcon\Tests\Models\Subscriptores ' . 'WHERE status = :status: AND email <> :email:', [ 'status' => 'P', @@ -1132,7 +1132,7 @@ private function testDeleteRenamedExecute(IntegrationTester $I) $manager = $this->container->getShared('modelsManager'); $status = $manager->executeQuery( - 'DELETE FROM Phalcon\Test\Models\Abonnes ' . + 'DELETE FROM Phalcon\Tests\Models\Abonnes ' . 'WHERE courrierElectronique = "marina@hotmail.com"' ); @@ -1142,7 +1142,7 @@ private function testDeleteRenamedExecute(IntegrationTester $I) $status = $manager->executeQuery( - 'DELETE FROM Phalcon\Test\Models\Abonnes ' . + 'DELETE FROM Phalcon\Tests\Models\Abonnes ' . 'WHERE statut = :statut: AND courrierElectronique <> :courrierElectronique:', [ 'statut' => 'P', diff --git a/tests/tocheck-database/Mvc/Model/Refactor-ModelsRelationsCest.php b/tests/tocheck-database/Mvc/Model/Refactor-ModelsRelationsCest.php index edcbb3e0d12..45342a259f9 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-ModelsRelationsCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-ModelsRelationsCest.php @@ -1,16 +1,16 @@ expectThrowable( new Exception( - 'Resultset class "Phalcon\Test\Models\Statistics\AgeStats" must ' . + 'Resultset class "Phalcon\Tests\Models\Statistics\AgeStats" must ' . 'be an implementation of Phalcon\Mvc\Model\ResultsetInterface' ), function () { diff --git a/tests/tocheck-database/Mvc/Model/Refactor-SnapshotCest.php b/tests/tocheck-database/Mvc/Model/Refactor-SnapshotCest.php index 9a5e3d767d5..446ff6c256e 100644 --- a/tests/tocheck-database/Mvc/Model/Refactor-SnapshotCest.php +++ b/tests/tocheck-database/Mvc/Model/Refactor-SnapshotCest.php @@ -9,18 +9,18 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use DateTime; use IntegrationTester; use Phalcon\Mvc\Model; use Phalcon\Mvc\Model\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Snapshot\Personas; -use Phalcon\Test\Models\Snapshot\Requests; -use Phalcon\Test\Models\Snapshot\Robots; -use Phalcon\Test\Models\Snapshot\Robotters; -use Phalcon\Test\Models\Snapshot\Subscribers; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Snapshot\Personas; +use Phalcon\Tests\Models\Snapshot\Requests; +use Phalcon\Tests\Models\Snapshot\Robots; +use Phalcon\Tests\Models\Snapshot\Robotters; +use Phalcon\Tests\Models\Snapshot\Subscribers; class SnapshotCest { diff --git a/tests/tocheck-database/Mvc/Model/Relation/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Relation/ConstructCest.php index 4dac1294dbb..5d42e227e92 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetFieldsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetFieldsCest.php index 9f1abde642d..0a55fa7ae17 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetFieldsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetForeignKeyCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetForeignKeyCest.php index ee48e165fbe..5125d51d2fc 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetForeignKeyCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateFieldsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateFieldsCest.php index 779655fd5a5..064d0f7b0ea 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateFieldsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateModelCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateModelCest.php index 78ab3f80c39..757b47f6588 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateModelCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateModelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php index c205792fadf..ebd7ba89c47 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetIntermediateReferencedFieldsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetOptionCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetOptionCest.php index 0cc187c4d73..4191ff0d490 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetOptionCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetOptionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetOptionsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetOptionsCest.php index e094115519d..454e3678f43 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetOptionsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetOptionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetParamsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetParamsCest.php index 86b346e6a09..be8ed39c772 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetParamsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetParamsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetReferencedFieldsCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetReferencedFieldsCest.php index 4dced8e2375..b4adb6cf409 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetReferencedFieldsCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetReferencedFieldsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetReferencedModelCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetReferencedModelCest.php index b08222e7dbe..4094c186ac2 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetReferencedModelCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetReferencedModelCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/GetTypeCest.php b/tests/tocheck-database/Mvc/Model/Relation/GetTypeCest.php index 13df9b09ba5..58d2cd0bb7c 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/GetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/IsForeignKeyCest.php b/tests/tocheck-database/Mvc/Model/Relation/IsForeignKeyCest.php index b0b4a386874..ff55e379cc3 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/IsForeignKeyCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/IsForeignKeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; use Phalcon\Mvc\Model\Relation; diff --git a/tests/tocheck-database/Mvc/Model/Relation/IsReusableCest.php b/tests/tocheck-database/Mvc/Model/Relation/IsReusableCest.php index f959564c48b..ad4ce0c3e97 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/IsReusableCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/IsReusableCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/IsThroughCest.php b/tests/tocheck-database/Mvc/Model/Relation/IsThroughCest.php index 7fe11e66fa0..b8bb651eb63 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/IsThroughCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/IsThroughCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Relation/SetIntermediateRelationCest.php b/tests/tocheck-database/Mvc/Model/Relation/SetIntermediateRelationCest.php index ae929486078..e0a15de6a0c 100644 --- a/tests/tocheck-database/Mvc/Model/Relation/SetIntermediateRelationCest.php +++ b/tests/tocheck-database/Mvc/Model/Relation/SetIntermediateRelationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Relation; +namespace Phalcon\Tests\Integration\Mvc\Model\Relation; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ConstructCest.php index 1b81f10da18..9d9a43db9f6 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/CountCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/CountCest.php index bd603a9e9f6..3f9ebbaec75 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/CountCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/CountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/CurrentCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/CurrentCest.php index df98165dd0e..d9fce476fd1 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/CurrentCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/CurrentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/DeleteCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/DeleteCest.php index d5da459a612..00cb8af6df7 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/DeleteCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/FilterCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/FilterCest.php index 4a2b276d8e4..7dcb16d68f9 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/FilterCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/FilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetCacheCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetCacheCest.php index 1540cba7867..95e981dc262 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetFirstCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetFirstCest.php index 3c15afbcbf6..ada6965a59f 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetFirstCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetFirstCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php index 78070ebc08f..aee143f8c2a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetLastCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetLastCest.php index 0a72ccff420..274b7f73367 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetLastCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetLastCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetMessagesCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetMessagesCest.php index 13e9ecf0372..84de1d1aa7a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetMessagesCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetTypeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetTypeCest.php index 6a9607dc4a3..ca8ceffb466 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/IsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/IsFreshCest.php index 6afa35e8adf..b3be820b0bd 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/IsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/IsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/JsonSerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/JsonSerializeCest.php index 8079b715cab..de64b297c37 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/JsonSerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/KeyCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/KeyCest.php index 5fe470b6ee1..5f6125f4460 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/KeyCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/KeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/NextCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/NextCest.php index 4b8152f132d..74d9669a165 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/NextCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/NextCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetExistsCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetExistsCest.php index a0a9128de6c..93b50a15f4c 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetExistsCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetGetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetGetCest.php index 68ed9b053ed..1df38b7da9a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetGetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetSetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetSetCest.php index 88545c9d2da..fb2ff7b40f0 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetSetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php index 6bbf7ebf4b0..6f8ba9e4196 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/RewindCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/RewindCest.php index b377aa297e0..61b5d545f2b 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/RewindCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/RewindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SeekCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SeekCest.php index 3005765542f..5b305c1c46c 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SeekCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SeekCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SerializeCest.php index fb4f8ae9825..ceb0652e539 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php index 56aede59e0d..35a0683e2e1 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetIsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetIsFreshCest.php index a64bb47f7cd..3dfcc246ad8 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetIsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/SetIsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ToArrayCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ToArrayCest.php index ef53a099e47..23c549c1746 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ToArrayCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ToArrayCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/UpdateCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/UpdateCest.php index 86ba2ac9300..3d3255829c5 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/UpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/UpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ValidCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ValidCest.php index c624c7612e0..36f0264b8c9 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Complex/ValidCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Complex/ValidCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Complex; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Complex; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Resultset/ConstructCest.php index 4b521c531d8..e898813179d 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/CountCest.php b/tests/tocheck-database/Mvc/Model/Resultset/CountCest.php index 2c8fa5f818e..9ec2d37767e 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/CountCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/CountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/CurrentCest.php b/tests/tocheck-database/Mvc/Model/Resultset/CurrentCest.php index 3c64bf6e85b..bf86975db09 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/CurrentCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/CurrentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/DeleteCest.php b/tests/tocheck-database/Mvc/Model/Resultset/DeleteCest.php index 2885e90499c..12a01ebe7be 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/DeleteCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/FilterCest.php b/tests/tocheck-database/Mvc/Model/Resultset/FilterCest.php index 50d9ba01a91..24cb4b04277 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/FilterCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/FilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetCacheCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetCacheCest.php index 7f680b54ff5..91ed5d6c2c9 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetFirstCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetFirstCest.php index a73ee253c77..2eceb216ce6 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetFirstCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetFirstCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; -use Phalcon\Test\Fixtures\Migrations\ObjectsMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Migrations\ObjectsMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; /** * Class GetFirstCest @@ -46,7 +46,7 @@ public function mvcModelResultsetGetFirst(IntegrationTester $I) $manager = $this->container->get('modelsManager'); $results = $manager ->executeQuery( - 'SELECT o.* FROM Phalcon\Test\Models\Objects AS o LIMIT 1' + 'SELECT o.* FROM Phalcon\Tests\Models\Objects AS o LIMIT 1' ); $record = $results->getFirst(); $id = $record->obj_id; @@ -54,7 +54,7 @@ public function mvcModelResultsetGetFirst(IntegrationTester $I) $results = $manager ->executeQuery( - 'SELECT obj_id FROM Phalcon\Test\Models\Objects AS o LIMIT 1' + 'SELECT obj_id FROM Phalcon\Tests\Models\Objects AS o LIMIT 1' ); $record = $results->getFirst(); $id = $record->obj_id; @@ -62,7 +62,7 @@ public function mvcModelResultsetGetFirst(IntegrationTester $I) $results = $manager ->executeQuery( - 'SELECT o.obj_id AS obj_id FROM Phalcon\Test\Models\Objects AS o LIMIT 1' + 'SELECT o.obj_id AS obj_id FROM Phalcon\Tests\Models\Objects AS o LIMIT 1' ); $record = $results->getFirst(); $id = $record->obj_id; @@ -74,8 +74,8 @@ public function mvcModelResultsetGetFirst(IntegrationTester $I) o.obj_id, s.stf_id FROM - Phalcon\Test\Models\Objects AS o, - Phalcon\Test\Models\Stuff AS s + Phalcon\Tests\Models\Objects AS o, + Phalcon\Tests\Models\Stuff AS s WHERE o.obj_type = s.stf_type LIMIT 1' diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetHydrateModeCest.php index 9b8cb4f4c36..0734c132d40 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetLastCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetLastCest.php index 98d2bb0c23f..27562fa75ec 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetLastCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetLastCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetMessagesCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetMessagesCest.php index 32c863a467d..40aa58334bf 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetMessagesCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/GetTypeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/GetTypeCest.php index 3cf9c3caa3b..e3aac5e3149 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/GetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/IsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/IsFreshCest.php index 66861f507f5..9f28a5cd592 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/IsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/IsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/JsonSerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/JsonSerializeCest.php index c751f3b3221..2e18ded21b5 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/JsonSerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/KeyCest.php b/tests/tocheck-database/Mvc/Model/Resultset/KeyCest.php index 3e9835222b5..41c26a9ae45 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/KeyCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/KeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/NextCest.php b/tests/tocheck-database/Mvc/Model/Resultset/NextCest.php index db3b18e1283..cbc90a2f2bd 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/NextCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/NextCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/OffsetExistsCest.php b/tests/tocheck-database/Mvc/Model/Resultset/OffsetExistsCest.php index 4381eac9144..5b0f12e6b73 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/OffsetExistsCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/OffsetGetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/OffsetGetCest.php index b05a154443b..5e91b16abda 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/OffsetGetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/OffsetSetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/OffsetSetCest.php index 1b0e51f6f76..4e41f4090cb 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/OffsetSetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/OffsetUnsetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/OffsetUnsetCest.php index fff3ae4e9a5..a65c19b5400 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/OffsetUnsetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Refactor-ComplexCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Refactor-ComplexCest.php index 2028755f017..39a8d2d4fea 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Refactor-ComplexCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Refactor-ComplexCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; use Phalcon\Mvc\Model\Resultset\Complex; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; -use Phalcon\Test\Models\RobotsParts; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; +use Phalcon\Tests\Models\RobotsParts; class ComplexCest { diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Refactor-SimpleCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Refactor-SimpleCest.php index 5f14e37814d..0db17390ee3 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Refactor-SimpleCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Refactor-SimpleCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\People; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\People; +use Phalcon\Tests\Models\Robots; class SimpleCest { diff --git a/tests/tocheck-database/Mvc/Model/Resultset/RewindCest.php b/tests/tocheck-database/Mvc/Model/Resultset/RewindCest.php index 209a182deb0..75a440b8639 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/RewindCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/RewindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/SeekCest.php b/tests/tocheck-database/Mvc/Model/Resultset/SeekCest.php index 43bfe59fbaf..4383ca7ec92 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/SeekCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/SeekCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/SerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/SerializeCest.php index 85586dd6964..5ec97d6bb8d 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/SerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/SetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/SetHydrateModeCest.php index 18d47293547..41ccf593e44 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/SetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/SetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/SetIsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/SetIsFreshCest.php index 8afb61d07d0..ba0498df463 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/SetIsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/SetIsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ConstructCest.php index b1297098359..d553d748787 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ConstructCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; use Phalcon\Helper\Str; use Phalcon\Mvc\Model\Resultset\Simple; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; use function cacheModelsDir; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/CountCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/CountCest.php index b38651d4319..68d2569e21b 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/CountCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/CountCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/CurrentCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/CurrentCest.php index f2ce7af5546..8ba8ad7185a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/CurrentCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/CurrentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/DeleteCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/DeleteCest.php index d8fd27e4122..e0d07af49d3 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/DeleteCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/DeleteCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/FilterCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/FilterCest.php index 4c3b6335036..e82a7f32a4c 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/FilterCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/FilterCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetCacheCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetCacheCest.php index 988057a0d3b..881a7e82a54 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetCacheCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetCacheCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetFirstCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetFirstCest.php index f824d7fd343..14cfae95aaf 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetFirstCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetFirstCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php index be6309dc094..fba56a57a30 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetLastCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetLastCest.php index 86faeb403fb..9213610fc32 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetLastCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetLastCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetMessagesCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetMessagesCest.php index 3d43d135ebc..a81184456bb 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetMessagesCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetTypeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetTypeCest.php index dd6b0d3f8b5..4812a23005a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetTypeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/GetTypeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/IsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/IsFreshCest.php index f857db46814..870badd55cd 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/IsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/IsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/JsonSerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/JsonSerializeCest.php index 2ca0e08412a..8fb04c27dc7 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/JsonSerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/JsonSerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/KeyCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/KeyCest.php index eecad39766d..90d9a535f1d 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/KeyCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/KeyCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/NextCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/NextCest.php index ad1d9931a81..d48bfcea8a5 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/NextCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/NextCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetExistsCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetExistsCest.php index 90cbdffe725..51c06efb490 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetExistsCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetExistsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetGetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetGetCest.php index 0db5211687f..61cb24d3a2f 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetGetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetGetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetSetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetSetCest.php index 8f1f650d033..621d47dea45 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetSetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetSetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php index cc06562a8ae..75696b39886 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/OffsetUnsetCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/RewindCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/RewindCest.php index ac69b42a815..ba492d7d6ed 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/RewindCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/RewindCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SeekCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SeekCest.php index 890d11bd67a..c8ddf2fe9a3 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SeekCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SeekCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SerializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SerializeCest.php index bb01d5a4d9e..5a9b4aab70f 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SerializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SerializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php index 3ff8550023f..c0f0d671394 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetHydrateModeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetIsFreshCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetIsFreshCest.php index 81b750ecc95..806bed39212 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetIsFreshCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/SetIsFreshCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ToArrayCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ToArrayCest.php index bd3052a463a..ed8e168e765 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ToArrayCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ToArrayCest.php @@ -11,14 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; use Phalcon\Mvc\Model\Query\Builder; -use Phalcon\Test\Fixtures\Migrations\InvoicesMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Invoices; -use Phalcon\Test\Models\InvoicesWithColumnMap; +use Phalcon\Tests\Fixtures\Migrations\InvoicesMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Invoices; +use Phalcon\Tests\Models\InvoicesWithColumnMap; /** * Class ToArrayCest diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/UpdateCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/UpdateCest.php index 4d7542e768b..d854d676394 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/UpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/UpdateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ValidCest.php b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ValidCest.php index d88f64997a7..30d7f921b93 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/Simple/ValidCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/Simple/ValidCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset\Simple; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset\Simple; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/ToArrayCest.php b/tests/tocheck-database/Mvc/Model/Resultset/ToArrayCest.php index 5291ba3aaec..af0fd2ee470 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/ToArrayCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/ToArrayCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/UnserializeCest.php b/tests/tocheck-database/Mvc/Model/Resultset/UnserializeCest.php index 2fa4e3a691f..41d9e3768af 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/UnserializeCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/UnserializeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Resultset/UpdateCest.php b/tests/tocheck-database/Mvc/Model/Resultset/UpdateCest.php index 5943512f1d2..bac3630ef45 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/UpdateCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/UpdateCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Robots; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Robots; /** * Class UpdateCest diff --git a/tests/tocheck-database/Mvc/Model/Resultset/ValidCest.php b/tests/tocheck-database/Mvc/Model/Resultset/ValidCest.php index bd7b00a4e70..0583e5b316a 100644 --- a/tests/tocheck-database/Mvc/Model/Resultset/ValidCest.php +++ b/tests/tocheck-database/Mvc/Model/Resultset/ValidCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Resultset; +namespace Phalcon\Tests\Integration\Mvc\Model\Resultset; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetConnectionServiceCest.php b/tests/tocheck-database/Mvc/Model/SetConnectionServiceCest.php index 28e50ec6c28..cab3a8a0f19 100644 --- a/tests/tocheck-database/Mvc/Model/SetConnectionServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/SetConnectionServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetDirtyStateCest.php b/tests/tocheck-database/Mvc/Model/SetDirtyStateCest.php index 51538c44350..6052518fdd4 100644 --- a/tests/tocheck-database/Mvc/Model/SetDirtyStateCest.php +++ b/tests/tocheck-database/Mvc/Model/SetDirtyStateCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetOldSnapshotDataCest.php b/tests/tocheck-database/Mvc/Model/SetOldSnapshotDataCest.php index ae01a083b3c..163c61738a6 100644 --- a/tests/tocheck-database/Mvc/Model/SetOldSnapshotDataCest.php +++ b/tests/tocheck-database/Mvc/Model/SetOldSnapshotDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetSnapshotDataCest.php b/tests/tocheck-database/Mvc/Model/SetSnapshotDataCest.php index 072063c9853..110ae27f11b 100644 --- a/tests/tocheck-database/Mvc/Model/SetSnapshotDataCest.php +++ b/tests/tocheck-database/Mvc/Model/SetSnapshotDataCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetTransactionCest.php b/tests/tocheck-database/Mvc/Model/SetTransactionCest.php index 515536a0374..082c35011ab 100644 --- a/tests/tocheck-database/Mvc/Model/SetTransactionCest.php +++ b/tests/tocheck-database/Mvc/Model/SetTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SetupCest.php b/tests/tocheck-database/Mvc/Model/SetupCest.php index 1f18ed56de2..af6f9bd4af9 100644 --- a/tests/tocheck-database/Mvc/Model/SetupCest.php +++ b/tests/tocheck-database/Mvc/Model/SetupCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/SkipOperationCest.php b/tests/tocheck-database/Mvc/Model/SkipOperationCest.php index 5901ea14396..0567afa5718 100644 --- a/tests/tocheck-database/Mvc/Model/SkipOperationCest.php +++ b/tests/tocheck-database/Mvc/Model/SkipOperationCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/BeginCest.php b/tests/tocheck-database/Mvc/Model/Transaction/BeginCest.php index b962ffbe0e5..34687f60c7a 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/BeginCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/BeginCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/CommitCest.php b/tests/tocheck-database/Mvc/Model/Transaction/CommitCest.php index 0def4c8cd9d..798183f5440 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/CommitCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/CommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Transaction/ConstructCest.php index bfbb32c8475..24fc4b92f80 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/GetConnectionCest.php b/tests/tocheck-database/Mvc/Model/Transaction/GetConnectionCest.php index 187b2ea4f4f..9d516c9b6c8 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/GetConnectionCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/GetConnectionCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; use Phalcon\Db\Adapter\AdapterInterface; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetConnectionCest { diff --git a/tests/tocheck-database/Mvc/Model/Transaction/GetMessagesCest.php b/tests/tocheck-database/Mvc/Model/Transaction/GetMessagesCest.php index 6d5b3f2a5c7..e023f3fde77 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/GetMessagesCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/GetMessagesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/IsManagedCest.php b/tests/tocheck-database/Mvc/Model/Transaction/IsManagedCest.php index 6648f1d21da..912c2c6361d 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/IsManagedCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/IsManagedCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; use Phalcon\Mvc\Model\Transaction; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class IsManagedCest { diff --git a/tests/tocheck-database/Mvc/Model/Transaction/IsValidCest.php b/tests/tocheck-database/Mvc/Model/Transaction/IsValidCest.php index 3770e1323f6..30b9b260220 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/IsValidCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/IsValidCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php index a3a890edbc8..34af6bc785f 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/CollectTransactionsCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/CommitCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/CommitCest.php index a7e0959c977..23879098db1 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/CommitCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/CommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/ConstructCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/ConstructCest.php index 0262b722f44..7b87860338f 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/ConstructCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/ConstructCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetCest.php index 248d91b6172..1d94cb26673 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Transaction; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; class GetCest { diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDICest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDICest.php index b6e75fdf52b..b6309c8a7bf 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDbServiceCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDbServiceCest.php index e78ef7f7692..da45ab17c3f 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDbServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetDbServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php index ebe2cda017b..9d64408a1f6 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetOrCreateTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php index c54ca656959..ba9cc164290 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/GetRollbackPendentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/HasCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/HasCest.php index a6d0b0932a5..bdaf88629a0 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/HasCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/HasCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyCommitCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyCommitCest.php index 3d669f96056..519d1fad0b0 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyCommitCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyCommitCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php index 573b84f2b61..174d393f796 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/NotifyRollbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackCest.php index 0ffa22ea9dc..f48f59aa077 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackPendentCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackPendentCest.php index 7892c242a84..ab7c6f45a6c 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackPendentCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/RollbackPendentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDICest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDICest.php index 5265eb84dc6..33b140ad430 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDICest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDbServiceCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDbServiceCest.php index 8ba83ee1259..be6bf373006 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDbServiceCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetDbServiceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php index cd0442bd2a3..6b66fbe4beb 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Manager/SetRollbackPendentCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction\Manager; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction\Manager; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/Refactor-ManagerCest.php b/tests/tocheck-database/Mvc/Model/Transaction/Refactor-ManagerCest.php index c7dd1bea9f5..09dd89d0f50 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/Refactor-ManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/Refactor-ManagerCest.php @@ -9,13 +9,13 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; use Phalcon\Mvc\Model\Transaction\Failed; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Personas; -use Phalcon\Test\Models\Select; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Personas; +use Phalcon\Tests\Models\Select; class ManagerCest { diff --git a/tests/tocheck-database/Mvc/Model/Transaction/RollbackCest.php b/tests/tocheck-database/Mvc/Model/Transaction/RollbackCest.php index 9c2f05a76eb..1500a0ca822 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/RollbackCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/RollbackCest.php @@ -11,13 +11,13 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model\Transaction\Failed; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\Personas; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\Personas; class RollbackCest { diff --git a/tests/tocheck-database/Mvc/Model/Transaction/SetIsNewTransactionCest.php b/tests/tocheck-database/Mvc/Model/Transaction/SetIsNewTransactionCest.php index a7f5164fc61..6744594905c 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/SetIsNewTransactionCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/SetIsNewTransactionCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackOnAbortCest.php b/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackOnAbortCest.php index da318c7c388..86bc745a782 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackOnAbortCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackOnAbortCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackedRecordCest.php b/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackedRecordCest.php index 207fa5624c1..bcac48320e8 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackedRecordCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/SetRollbackedRecordCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/Transaction/SetTransactionManagerCest.php b/tests/tocheck-database/Mvc/Model/Transaction/SetTransactionManagerCest.php index ceb7f5272ee..be1c9aa71d6 100644 --- a/tests/tocheck-database/Mvc/Model/Transaction/SetTransactionManagerCest.php +++ b/tests/tocheck-database/Mvc/Model/Transaction/SetTransactionManagerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model\Transaction; +namespace Phalcon\Tests\Integration\Mvc\Model\Transaction; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/Model/ValidationHasFailedCest.php b/tests/tocheck-database/Mvc/Model/ValidationHasFailedCest.php index 53bc9993fcb..300bbcb4b67 100644 --- a/tests/tocheck-database/Mvc/Model/ValidationHasFailedCest.php +++ b/tests/tocheck-database/Mvc/Model/ValidationHasFailedCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc\Model; +namespace Phalcon\Tests\Integration\Mvc\Model; use IntegrationTester; diff --git a/tests/tocheck-database/Mvc/ModelCest.php b/tests/tocheck-database/Mvc/ModelCest.php index 05570d11df3..96e097983c1 100644 --- a/tests/tocheck-database/Mvc/ModelCest.php +++ b/tests/tocheck-database/Mvc/ModelCest.php @@ -9,15 +9,15 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc; +namespace Phalcon\Tests\Integration\Mvc; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Model; -use Phalcon\Test\Fixtures\Migrations\StringPrimaryMigration; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use Phalcon\Test\Models\AlbumORama\Albums; -use Phalcon\Test\Models\ModelWithStringPrimary; +use Phalcon\Tests\Fixtures\Migrations\StringPrimaryMigration; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Models\AlbumORama\Albums; +use Phalcon\Tests\Models\ModelWithStringPrimary; class ModelCest { @@ -904,7 +904,7 @@ public function executeCamelCaseRelation(IntegrationTester $I) // function () { // $robots = new Robots(); // $robots->name = ''; -// $robots->datetime = new \Phalcon\Test\Db\DateTime(); +// $robots->datetime = new \Phalcon\Tests\Db\DateTime(); // $robots->text = 'text'; // $result = $robots->save(); // expect($result)->true(); diff --git a/tests/tocheck-database/Mvc/ModelCest.php_check b/tests/tocheck-database/Mvc/ModelCest.php_check index 74c75ed663a..595c23a204c 100644 --- a/tests/tocheck-database/Mvc/ModelCest.php_check +++ b/tests/tocheck-database/Mvc/ModelCest.php_check @@ -1,14 +1,14 @@ * @author Phalcon Team * @author Wojciech Åšlawski - * @package Phalcon\Test\Integration\Mvc + * @package Phalcon\Tests\Integration\Mvc * * The contents of this file are subject to the New BSD License that is * bundled with this package in the file LICENSE.txt diff --git a/tests/tocheck-database/Mvc/Refactor-ControllersCest.php b/tests/tocheck-database/Mvc/Refactor-ControllersCest.php index e476328dd15..457ca257780 100644 --- a/tests/tocheck-database/Mvc/Refactor-ControllersCest.php +++ b/tests/tocheck-database/Mvc/Refactor-ControllersCest.php @@ -1,15 +1,15 @@ assertTrue(is_object($people)); $I->assertInstanceOf( - \Phalcon\Test\Models\People::class, + \Phalcon\Tests\Models\People::class, $people ); diff --git a/tests/tocheck-database/Mvc/Refactor-RouterCest.php b/tests/tocheck-database/Mvc/Refactor-RouterCest.php index d874d0cdbda..7be7956e91f 100644 --- a/tests/tocheck-database/Mvc/Refactor-RouterCest.php +++ b/tests/tocheck-database/Mvc/Refactor-RouterCest.php @@ -9,12 +9,12 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Integration\Mvc; +namespace Phalcon\Tests\Integration\Mvc; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\Router\Route; -use Phalcon\Test\Fixtures\Traits\RouterTrait; +use Phalcon\Tests\Fixtures\Traits\RouterTrait; class RouterCest { diff --git a/tests/tocheck-database/Mvc/Refactor-ViewEnginesCest.php b/tests/tocheck-database/Mvc/Refactor-ViewEnginesCest.php index 9f97fffa0b3..af70eb8a388 100644 --- a/tests/tocheck-database/Mvc/Refactor-ViewEnginesCest.php +++ b/tests/tocheck-database/Mvc/Refactor-ViewEnginesCest.php @@ -17,16 +17,16 @@ declare(strict_types=1); -namespace Phalcon\Test\Integration\Mvc; +namespace Phalcon\Tests\Integration\Mvc; use Codeception\Example; use IntegrationTester; use Phalcon\Mvc\View; use Phalcon\Mvc\View\Engine\Php; -use Phalcon\Test\Fixtures\Mvc\View\Engine\Mustache; -use Phalcon\Test\Fixtures\Mvc\View\Engine\Twig; -use Phalcon\Test\Fixtures\Mvc\View\IteratorObject; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Mvc\View\Engine\Mustache; +use Phalcon\Tests\Fixtures\Mvc\View\Engine\Twig; +use Phalcon\Tests\Fixtures\Mvc\View\IteratorObject; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use function dataDir; diff --git a/tests/tocheck-database/Mvc/Refactor-ViewTest.php_check b/tests/tocheck-database/Mvc/Refactor-ViewTest.php_check index e88e7db2d61..d9b890ff59e 100644 --- a/tests/tocheck-database/Mvc/Refactor-ViewTest.php_check +++ b/tests/tocheck-database/Mvc/Refactor-ViewTest.php_check @@ -1,13 +1,13 @@ - * @since 2018-11-13 + * @since 2020-09-09 */ public function flashDirectConstruct(UnitTester $I) { $I->wantToTest('Flash\Direct - __construct()'); - $I->skipTest('Need implementation'); + $flash = new Direct(); + $I->assertInstanceOf(FlashInterface::class, $flash); } } diff --git a/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php b/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php deleted file mode 100644 index bc618d0c906..00000000000 --- a/tests/unit/Flash/Direct/FlashDirectCustomCSSCest.php +++ /dev/null @@ -1,36 +0,0 @@ - - * - * For the full copyright and license information, please view the - * LICENSE.txt file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Flash\Direct; - -use Phalcon\Test\Unit\Flash\Direct\Helper\FlashBase; -use UnitTester; - -class FlashDirectCustomCSSCest extends FlashBase -{ - /** - * Executed before each test - * - * @param UnitTester $I - * @return void - */ - public function _before(UnitTester $I): void - { - parent::_before($I); - - $this->setClasses([ - 'error' => 'alert alert-error', - 'success' => 'alert alert-success', - 'notice' => 'alert alert-notice', - 'warning' => 'alert alert-warning', - ]); - } -} diff --git a/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php b/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php deleted file mode 100644 index 785cbab14c5..00000000000 --- a/tests/unit/Flash/Direct/FlashDirectEmptyCSSCest.php +++ /dev/null @@ -1,31 +0,0 @@ - - * - * For the full copyright and license information, please view the - * LICENSE.txt file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Flash\Direct; - -use Phalcon\Test\Unit\Flash\Direct\Helper\FlashBase; -use UnitTester; - -class FlashDirectEmptyCSSCest extends FlashBase -{ - /** - * Executed before each test - * - * @param UnitTester $I - * @return void - */ - public function _before(UnitTester $I): void - { - parent::_before($I); - - $this->setClasses([]); - } -} diff --git a/tests/unit/Flash/Direct/GetAutoescapeCest.php b/tests/unit/Flash/Direct/GetAutoescapeCest.php deleted file mode 100644 index c3b695ffe14..00000000000 --- a/tests/unit/Flash/Direct/GetAutoescapeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class GetAutoescapeCest -{ - /** - * Tests Phalcon\Flash\Direct :: getAutoescape() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectGetAutoescape(UnitTester $I) - { - $I->wantToTest('Flash\Direct - getAutoescape()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/GetCustomTemplateCest.php b/tests/unit/Flash/Direct/GetCustomTemplateCest.php deleted file mode 100644 index 3b804764f1e..00000000000 --- a/tests/unit/Flash/Direct/GetCustomTemplateCest.php +++ /dev/null @@ -1,31 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class GetCustomTemplateCest -{ - /** - * Tests Phalcon\Flash\Direct :: getCustomTemplate() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectGetCustomTemplate(UnitTester $I) - { - $I->wantToTest('Flash\Direct - getCustomTemplate()'); - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/GetEscaperServiceCest.php b/tests/unit/Flash/Direct/GetEscaperServiceCest.php deleted file mode 100644 index b4b4d7be053..00000000000 --- a/tests/unit/Flash/Direct/GetEscaperServiceCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class GetEscaperServiceCest -{ - /** - * Tests Phalcon\Flash\Direct :: getEscaperService() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectGetEscaperService(UnitTester $I) - { - $I->wantToTest('Flash\Direct - getEscaperService()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/GetSetAutoescapeCest.php b/tests/unit/Flash/Direct/GetSetAutoescapeCest.php new file mode 100644 index 00000000000..8ff7b81a10f --- /dev/null +++ b/tests/unit/Flash/Direct/GetSetAutoescapeCest.php @@ -0,0 +1,49 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Direct; + +use Phalcon\Flash\Direct; +use UnitTester; + +/** + * Class GetAutoescapeCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ +class GetSetAutoescapeCest +{ + /** + * Tests Phalcon\Flash\Direct :: getAutoescape()/setAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetAutoescape(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getAutoescape()/setAutoescape()'); + + $flash = new Direct(); + + $actual = $flash->getAutoescape(); + $I->assertTrue($actual); + + $actual = $flash->setAutoescape(false); + $I->assertInstanceOf(Direct::class, $actual); + + $actual = $flash->getAutoescape(); + $I->assertFalse($actual); + } +} diff --git a/tests/unit/Flash/Direct/GetSetCssClassesCest.php b/tests/unit/Flash/Direct/GetSetCssClassesCest.php new file mode 100644 index 00000000000..b97347303dd --- /dev/null +++ b/tests/unit/Flash/Direct/GetSetCssClassesCest.php @@ -0,0 +1,62 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Direct; + +use Phalcon\Flash\Direct; +use UnitTester; + +/** + * Class GetSetCssClassesCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ +class GetSetCssClassesCest +{ + /** + * Tests Phalcon\Flash\Direct :: getCssClasses()/setCssClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetCssClasses(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getCssClasses()/setCssClasses()'); + + $flash = new Direct(); + + $expected = [ + 'error' => 'errorMessage', + 'success' => 'successMessage', + 'notice' => 'noticeMessage', + 'warning' => 'warningMessage', + ]; + $newClasses = [ + 'error' => 'alert alert-error', + 'success' => 'alert alert-success', + 'notice' => 'alert alert-notice', + 'warning' => 'alert alert-warning', + ]; + + $actual = $flash->getCssClasses(); + $I->assertEquals($expected, $actual); + + $flash->setCssClasses($newClasses); + + $expected = $newClasses; + $actual = $flash->getCssClasses(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Flash/Direct/GetSetCssIconClassesCest.php b/tests/unit/Flash/Direct/GetSetCssIconClassesCest.php new file mode 100644 index 00000000000..4e249529221 --- /dev/null +++ b/tests/unit/Flash/Direct/GetSetCssIconClassesCest.php @@ -0,0 +1,62 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Direct; + +use Phalcon\Flash\Direct; +use UnitTester; + +/** + * Class GetSetCssClassesCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ +class GetSetCssIconClassesCest +{ + /** + * Tests Phalcon\Flash\Direct :: getCssIconClasses()/setCssIconClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetCssIconClasses(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getCssIconClasses()/setCssIconClasses()'); + + $flash = new Direct(); + + $expected = [ + 'error' => 'errorMessage', + 'success' => 'successMessage', + 'notice' => 'noticeMessage', + 'warning' => 'warningMessage', + ]; + $newClasses = [ + 'error' => 'alert alert-error', + 'success' => 'alert alert-success', + 'notice' => 'alert alert-notice', + 'warning' => 'alert alert-warning', + ]; + + $actual = $flash->getCssIconClasses(); + $I->assertEmpty($actual); + + $flash->setCssIconClasses($newClasses); + + $expected = $newClasses; + $actual = $flash->getCssIconClasses(); + $I->assertEquals($expected, $actual); + } +} diff --git a/tests/unit/Flash/Direct/GetSetCustomTemplateCest.php b/tests/unit/Flash/Direct/GetSetCustomTemplateCest.php new file mode 100644 index 00000000000..85cce62d4c7 --- /dev/null +++ b/tests/unit/Flash/Direct/GetSetCustomTemplateCest.php @@ -0,0 +1,50 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Direct; + +use Phalcon\Flash\Direct; +use UnitTester; + +/** + * Class GetSetCustomTemplateCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ +class GetSetCustomTemplateCest +{ + /** + * Tests Phalcon\Flash\Direct :: getCustomTemplate()/setCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetCustomTemplate(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getCustomTemplate()/setCustomTemplate()'); + + $flash = new Direct(); + + $actual = $flash->getCustomTemplate(); + $I->assertEmpty($actual); + + $template = '{message}'; + $actual = $flash->setCustomTemplate($template); + $I->assertInstanceOf(Direct::class, $actual); + + $actual = $flash->getCustomTemplate(); + $I->assertEquals($template, $actual); + } +} diff --git a/tests/unit/Flash/Direct/GetSetDICest.php b/tests/unit/Flash/Direct/GetSetDICest.php index 941bb082d5c..745f38ab072 100644 --- a/tests/unit/Flash/Direct/GetSetDICest.php +++ b/tests/unit/Flash/Direct/GetSetDICest.php @@ -11,37 +11,37 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Direct; +namespace Phalcon\Tests\Unit\Flash\Direct; -use Phalcon\Di; +use Phalcon\Di\Di; use Phalcon\Flash\Direct; use UnitTester; +/** + * Class GetSetDICest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ class GetSetDICest { /** - * Tests Phalcon\Flash\Direct :: getDI() / setDI() + * Tests Phalcon\Flash\Direct :: getDI()/setDI() + * + * @param UnitTester $I * - * @author Jeremy PASTOURET - * @since 2019-12-07 + * @author Phalcon Team + * @since 2020-09-09 */ public function flashDirectGetSetDI(UnitTester $I) { - $I->wantToTest('Flash\Direct - getDI() / setDI()'); + $I->wantToTest('Flash\Direct - getDI()/setDI()'); $container = new Di(); + $flash = new Direct(); + $flash->setDI($container); - $oFlashDirect = new Direct(); - - $oFlashDirect->setDI($container); - - $I->assertSame( - $container, - $oFlashDirect->getDI() - ); - - $class = Di::class; - $actual = $oFlashDirect->getDI(); - $I->assertInstanceOf($class, $actual); + $actual = $flash->getDI(); + $I->assertSame($container, $actual); + $I->assertInstanceOf(Di::class, $actual); } } diff --git a/tests/unit/Flash/Direct/GetSetEscaperServiceCest.php b/tests/unit/Flash/Direct/GetSetEscaperServiceCest.php new file mode 100644 index 00000000000..5f6effb7e0b --- /dev/null +++ b/tests/unit/Flash/Direct/GetSetEscaperServiceCest.php @@ -0,0 +1,103 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Direct; + +use Phalcon\Di\Di; +use Phalcon\Flash\Direct; +use Phalcon\Flash\Exception; +use Phalcon\Html\Escaper; +use UnitTester; + +use function spl_object_hash; + +/** + * Class GetSetEscaperServiceCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ +class GetSetEscaperServiceCest +{ + /** + * Tests Phalcon\Flash\Direct :: getEscaperService()/setEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetEscaperService(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getEscaperService()/setEscaperService()'); + + $escaper = new Escaper(); + $flash = new Direct($escaper); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($escaper), spl_object_hash($actual)); + + $newEscaper = new Escaper(); + $actual = $flash->setEscaperService($newEscaper); + $I->assertInstanceOf(Direct::class, $actual); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($newEscaper), spl_object_hash($actual)); + } + + /** + * Tests Phalcon\Flash\Direct :: getEscaperService() - container + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetSetEscaperServiceContainer(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getEscaperService() - Container'); + + $container = new Di(); + $escaper = new Escaper(); + $container->setShared('escaper', $escaper); + $flash = new Direct(); + $flash->setDI($container); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($escaper), spl_object_hash($actual)); + } + + /** + * Tests Phalcon\Flash\Direct :: getEscaperService() - exception + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectGetEscaperServiceException(UnitTester $I) + { + $I->wantToTest('Flash\Direct - getEscaperService() - exception'); + + $I->expectThrowable( + new Exception( + 'A dependency injection container is required to ' . + 'access the "escaper" service' + ), + function () { + $flash = new Direct(); + + $actual = $flash->getEscaperService(); + } + ); + } +} diff --git a/tests/unit/Flash/Direct/Helper/FlashBase.php b/tests/unit/Flash/Direct/Helper/FlashBase.php deleted file mode 100644 index 5abe64f98fe..00000000000 --- a/tests/unit/Flash/Direct/Helper/FlashBase.php +++ /dev/null @@ -1,276 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct\Helper; - -use Phalcon\Escaper; -use Phalcon\Flash\AbstractFlash; -use Phalcon\Flash\Direct; -use UnitTester; - -class FlashBase -{ - private $classes = []; - private $notHtml = false; - private $notImplicit = false; - - private $default = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - - /** - * Executed before each test - * - * @param UnitTester $I - * @return void - */ - public function _before(UnitTester $I): void - { - } - - /** - * Tests warning (implicit flush) - * - * @param UnitTester $I - * - * @author Phalcon Team - * @since 2014-10-04 - */ - public function testFlashDirectImplicitFlushHtml(UnitTester $I) - { - $functions = [ - 'error', - 'success', - 'notice', - 'warning', - ]; - - foreach ($functions as $function) { - $this->stringTest($I, $function); - } - } - - /** - * Tests a string with implicit flush Html - * - * @param UnitTester $I - * @param string $function - * - * @author Phalcon Team - * @since 2014-10-04 - */ - private function stringTest(UnitTester $I, string $function) - { - $flash = new Direct(new Escaper()); - $flash->setCssClasses($this->classes); - - $message = 'sample message'; - - if ($this->notHtml) { - $flash->setAutomaticHtml(false); - - $expected = $message; - } else { - $expected = sprintf( - '%s' . PHP_EOL, - $this->getClass($function), - $message - ); - } - - if ($this->notImplicit) { - $flash->setImplicitFlush(false); - - $actual = $flash->$function($message); - } else { - $actual = $this->getObResponse($flash, $function, $message); - } - - $I->assertEquals($expected, $actual); - } - - /** - * Private function to get the class of the message depending on the classes - * set - * - * @param string $key - * @return string - * - * @author Phalcon Team - * @since 2014-10-04 - */ - private function getClass(string $key): string - { - $template = ' class="%s"'; - - if ([] === $this->classes) { - $class = ''; - } else { - $classes = (is_null($this->classes)) ? - $this->default : - $this->classes; - $class = sprintf($template, $classes[$key]); - } - - return $class; - } - - /** - * Private function to start the ob, call the function, get the - * contents and clean the ob - * - * @param AbstractFlash $flash - * @param string $function - * @param string $message - * @return string - * - * @author Phalcon Team - * @since 2014-10-04 - */ - private function getObResponse(AbstractFlash $flash, string $function, string $message): string - { - ob_start(); - $flash->$function($message); - $actual = ob_get_contents(); - ob_end_clean(); - - return $actual; - } - - /** - * Tests warning (no implicit flush) - * - * @param UnitTester $I - * - * @author Phalcon Team - * @since 2014-10-04 - */ - public function testFlashDirectNoImplicitFlushHtml(UnitTester $I) - { - $functions = [ - 'error', - 'success', - 'notice', - 'warning', - ]; - - foreach ($functions as $function) { - $this->notImplicit = true; - - $this->stringTest($I, $function); - - $this->notImplicit = false; - } - } - - /** - * Tests warning (implicit flush no html) - * - * @param UnitTester $I - * - * @author Phalcon Team - * @since 2014-10-04 - */ - public function testFlashDirectImplicitFlushNoHtml(UnitTester $I) - { - $functions = [ - 'error', - 'success', - 'notice', - 'warning', - ]; - - foreach ($functions as $function) { - $this->notHtml = true; - - $this->stringTest($I, $function); - - $this->notHtml = false; - } - } - - /** - * Tests error (no implicit flush no html) - * - * @param UnitTester $I - * - * @author Phalcon Team - * @since 2014-10-04 - */ - public function testFlashDirectNoImplicitFlushNoHtml(UnitTester $I) - { - $functions = [ - 'error', - 'success', - 'notice', - 'warning', - ]; - - foreach ($functions as $function) { - $this->notHtml = true; - $this->notImplicit = true; - - $this->stringTest($I, $function); - - $this->notHtml = false; - $this->notImplicit = false; - } - } - - /** - * Tests auto escaping - * - * @param UnitTester $I - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/11448 - * @since 2016-06-15 - */ - public function testFlashDirectWithAutoEscaping(UnitTester $I) - { - $flash = new Direct(new Escaper()); - $flash->setCssClasses($this->classes); - - $flash->setAutomaticHtml(false); - $flash->setImplicitFlush(false); - - $I->assertEquals( - '<h1>Hello World!</h1>', - $flash->success('

Hello World!

') - ); - - $flash->setAutoescape(false); - - $I->assertEquals( - '

Hello World!

', - $flash->success('

Hello World!

') - ); - } - - /** - * Sets the custom classes for the tests - * - * @param array $classes - * @return void - * - * @author Phalcon Team - * @since 2014-10-04 - */ - protected function setClasses(array $classes): void - { - $this->classes = $classes; - } -} diff --git a/tests/unit/Flash/Direct/MessageCest.php b/tests/unit/Flash/Direct/MessageCest.php deleted file mode 100644 index b7b81ece35d..00000000000 --- a/tests/unit/Flash/Direct/MessageCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class MessageCest -{ - /** - * Tests Phalcon\Flash\Direct :: message() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectMessage(UnitTester $I) - { - $I->wantToTest('Flash\Direct - message()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/NoticeCest.php b/tests/unit/Flash/Direct/NoticeCest.php deleted file mode 100644 index e30d20866a2..00000000000 --- a/tests/unit/Flash/Direct/NoticeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class NoticeCest -{ - /** - * Tests Phalcon\Flash\Direct :: notice() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectNotice(UnitTester $I) - { - $I->wantToTest('Flash\Direct - notice()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/OutputCest.php b/tests/unit/Flash/Direct/OutputCest.php index 776580554ee..65e74cc6623 100644 --- a/tests/unit/Flash/Direct/OutputCest.php +++ b/tests/unit/Flash/Direct/OutputCest.php @@ -11,22 +11,916 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Direct; +namespace Phalcon\Tests\Unit\Flash\Direct; +use Codeception\Example; +use Phalcon\Flash\Direct; +use Phalcon\Html\Escaper; use UnitTester; +use function ob_end_clean; +use function ob_get_contents; +use function ob_start; + +use const PHP_EOL; + +/** + * Class OutputCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ class OutputCest { + /** + * Tests Phalcon\Flash\Direct :: output() - combinations + * + * @dataProvider getExamples + * + * @param UnitTester $I + * @param Example $example + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashDirectOutputCombinations(UnitTester $I, Example $example) + { + $I->wantToTest('Flash\Direct - output() - ' . $example['label']); + + $flash = new Direct(new Escaper()); + $flash + ->setCssClasses($example['classes']) + ->setCssIconClasses($example['iconClasses']) + ->setAutomaticHtml($example['autoHtml']) + ->setAutoescape($example['autoescape']) + ->setCustomTemplate($example['template']) + ->setImplicitFlush($example['implicit']) + ; + $message = $example['message']; + + if (true === $example['implicit']) { + ob_start(); + $flash->success($message); + $actual = ob_get_contents(); + ob_end_clean(); + } else { + $actual = $flash->success($message); + } + + $expected = $example['expected']; + $I->assertEquals($expected, $actual); + } + /** * Tests Phalcon\Flash\Direct :: output() * + * @param UnitTester $I + * * @author Phalcon Team - * @since 2018-11-13 + * @since 2020-09-09 */ public function flashDirectOutput(UnitTester $I) { $I->wantToTest('Flash\Direct - output()'); - $I->skipTest('Need implementation'); + $flash = new Direct(new Escaper()); + $flash->setImplicitFlush(false); + $flash->success('hello'); + $flash->warning('goodbye'); + + ob_start(); + $flash->output(false); + $actual = ob_get_contents(); + ob_clean(); + $expected = '
hello
' . PHP_EOL . + '
goodbye
' . PHP_EOL; + $I->assertEquals($expected, $actual); + + /** + * remove them + */ + ob_start(); + $flash->output(); + $actual = ob_get_contents(); + ob_clean(); + $expected = '
hello
' . PHP_EOL . + '
goodbye
' . PHP_EOL; + $I->assertEquals($expected, $actual); + + ob_start(); + $flash->output(); + $actual = ob_get_contents(); + ob_clean(); + $expected = ''; + $I->assertEquals($expected, $actual); + } + + /** + * @return array[] + */ + private function getExamples(): array + { + $message = 'sample message'; + $template = '
%message%
'; + $classes = [ + 'error' => 'errorPhalcon', + 'success' => 'successPhalcon', + 'notice' => 'noticePhalcon', + 'warning' => 'warningPhalcon', + ]; + $iconClasses = [ + 'error' => 'errorIconPhalcon', + 'success' => 'successIconPhalcon', + 'notice' => 'noticeIconPhalcon', + 'warning' => 'warningIconPhalcon', + ]; + + // 'classes,icon classes,html,escape,implicit,template', + return [ + [ + 'label' => 'CLS-ICO-HTML-ESC-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample <phalcon> message
', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-HTML-ESC-IMP-XXX', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-HTML-ESC-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-HTML-ESC-XXX-XXX', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-HTML-XXX-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-HTML-XXX-IMP-XXX', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-HTML-XXX-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-HTML-XXX-XXX-XXX', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-XXXX-ESC-IMP-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-XXXX-ESC-IMP-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-XXXX-ESC-XXX-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-XXXX-ESC-XXX-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-XXXX-XXX-IMP-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-XXXX-XXX-IMP-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-ICO-XXXX-XXX-XXX-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-ICO-XXXX-XXX-XXX-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-HTML-ESC-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample <phalcon> message
', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-HTML-ESC-IMP-XXX', + 'message' => $message, + 'expected' => '
' + . 'sample <phalcon> message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-HTML-ESC-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample <phalcon> message
', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-HTML-ESC-XXX-XXX', + 'message' => $message, + 'expected' => '
' + . 'sample <phalcon> message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-HTML-XXX-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample message
', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-HTML-XXX-IMP-XXX', + 'message' => $message, + 'expected' => '
' + . 'sample message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-HTML-XXX-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample message
', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-HTML-XXX-XXX-XXX', + 'message' => $message, + 'expected' => '
' + . 'sample message
' . PHP_EOL, + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-XXXX-ESC-IMP-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-XXXX-ESC-IMP-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-XXXX-ESC-XXX-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-XXXX-ESC-XXX-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-XXXX-XXX-IMP-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-XXXX-XXX-IMP-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'CLS-XXX-XXXX-XXX-XXX-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'CLS-XXX-XXXX-XXX-XXX-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => $classes, + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-HTML-ESC-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-HTML-ESC-IMP-XXX', + 'message' => $message, + 'expected' => '
sample <phalcon> message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-HTML-ESC-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-HTML-ESC-XXX-XXX', + 'message' => $message, + 'expected' => '
sample <phalcon> message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-HTML-XXX-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-HTML-XXX-IMP-XXX', + 'message' => $message, + 'expected' => '
sample message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-HTML-XXX-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample message
', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-HTML-XXX-XXX-XXX', + 'message' => $message, + 'expected' => '
sample message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-XXXX-ESC-IMP-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-XXXX-ESC-IMP-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-XXXX-ESC-XXX-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-XXXX-ESC-XXX-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-XXXX-XXX-IMP-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-XXXX-XXX-IMP-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-ICO-XXXX-XXX-XXX-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-ICO-XXXX-XXX-XXX-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => $iconClasses, + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-HTML-ESC-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-HTML-ESC-IMP-XXX', + 'message' => $message, + 'expected' => '
sample <phalcon> message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-HTML-ESC-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . '' + . ' sample <phalcon> message
', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-HTML-ESC-XXX-XXX', + 'message' => $message, + 'expected' => '
sample <phalcon> message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-HTML-XXX-IMP-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample message
', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-HTML-XXX-IMP-XXX', + 'message' => $message, + 'expected' => '
sample message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-HTML-XXX-XXX-TPL', + 'message' => $message, + 'expected' => '
' + . ' sample message
', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-HTML-XXX-XXX-XXX', + 'message' => $message, + 'expected' => '
sample message
' . PHP_EOL, + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => true, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-IMP-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-IMP-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-XXX-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-XXX-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-IMP-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-IMP-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-XXX-TPL', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-ESC-XXX-XXX', + 'message' => $message, + 'expected' => 'sample <phalcon> message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => true, + 'implicit' => false, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-IMP-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-IMP-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => true, + 'template' => '', + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-XXX-TPL', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => $template, + ], + [ + 'label' => 'XXX-XXX-XXXX-XXX-XXX-XXX', + 'message' => $message, + 'expected' => 'sample message', + 'classes' => [], + 'iconClasses' => [], + 'autoHtml' => false, + 'autoescape' => false, + 'implicit' => false, + 'template' => '', + ], + ]; } } diff --git a/tests/unit/Flash/Direct/OutputMessageCest.php b/tests/unit/Flash/Direct/OutputMessageCest.php index 24995e1d0bb..0fec7d7cef0 100644 --- a/tests/unit/Flash/Direct/OutputMessageCest.php +++ b/tests/unit/Flash/Direct/OutputMessageCest.php @@ -11,22 +11,94 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Direct; +namespace Phalcon\Tests\Unit\Flash\Direct; +use Codeception\Example; +use Phalcon\Flash\Direct; +use Phalcon\Flash\Exception; +use Phalcon\Html\Escaper; use UnitTester; +use const PHP_EOL; + +/** + * Class OutputMessageCest + * + * @package Phalcon\Tests\Unit\Flash\Direct + */ class OutputMessageCest { /** - * Tests Phalcon\Flash\Direct :: outputMessage() + * Tests Phalcon\Flash\Direct :: outputMessage() - exception + * + * @param UnitTester $I * * @author Phalcon Team - * @since 2018-11-13 + * @since 2020-09-09 + */ + public function flashDirectOutputMessageException(UnitTester $I) + { + $I->wantToTest('Flash\Direct - outputMessage() - exception'); + + $I->expectThrowable( + new Exception('The message must be an array or a string'), + function () { + $flash = new Direct(new Escaper()); + $message = $flash->outputMessage('success', false); + } + ); + } + + /** + * Tests Phalcon\Flash\Direct :: outputMessage() - exception + * + * @dataProvider getExamples + * + * @param UnitTester $I + * @param Example $example + * + * @author Phalcon Team + * @since 2020-09-09 */ - public function flashDirectOutputMessage(UnitTester $I) + public function flashDirectOutputMessage(UnitTester $I, Example $example) { - $I->wantToTest('Flash\Direct - outputMessage()'); + $I->wantToTest('Flash\Direct - outputMessage() - ' . $example[0]); + + $flash = new Direct(new Escaper()); + $flash->setImplicitFlush(false); + + $source = 'sample message'; + $type = $example[0]; + $expected = '
' + . 'sample <phalcon> message
' . PHP_EOL; + $actual = $flash->outputMessage($type, $source); + $I->assertEquals($expected, $actual); + + $actual = $flash->message($type, $source); + $I->assertEquals($expected, $actual); - $I->skipTest('Need implementation'); + $actual = $flash->$type($source); + $I->assertEquals($expected, $actual); + } + + /** + * @return array + */ + private function getExamples(): array + { + return [ + [ + 'error', + ], + [ + 'notice', + ], + [ + 'success', + ], + [ + 'warning', + ], + ]; } } diff --git a/tests/unit/Flash/Direct/SetAutoescapeCest.php b/tests/unit/Flash/Direct/SetAutoescapeCest.php deleted file mode 100644 index fff3ab3dd65..00000000000 --- a/tests/unit/Flash/Direct/SetAutoescapeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetAutoescapeCest -{ - /** - * Tests Phalcon\Flash\Direct :: setAutoescape() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetAutoescape(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setAutoescape()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php b/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php deleted file mode 100644 index 381add479b5..00000000000 --- a/tests/unit/Flash/Direct/SetAutomaticHtmlCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetAutomaticHtmlCest -{ - /** - * Tests Phalcon\Flash\Direct :: setAutomaticHtml() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetAutomaticHtml(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setAutomaticHtml()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SetCssClassesCest.php b/tests/unit/Flash/Direct/SetCssClassesCest.php deleted file mode 100644 index 6d80e089142..00000000000 --- a/tests/unit/Flash/Direct/SetCssClassesCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetCssClassesCest -{ - /** - * Tests Phalcon\Flash\Direct :: setCssClasses() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetCssClasses(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setCssClasses()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SetCssIconClassesCest.php b/tests/unit/Flash/Direct/SetCssIconClassesCest.php deleted file mode 100644 index b53462d1353..00000000000 --- a/tests/unit/Flash/Direct/SetCssIconClassesCest.php +++ /dev/null @@ -1,130 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use Codeception\Example; -use Phalcon\Escaper; -use Phalcon\Flash\Direct; -use UnitTester; - -use const PHP_EOL; - -class SetCssIconClassesCest -{ - /** - * Tests Phalcon\Flash\Direct :: setCssIconClasses() - * - * @param UnitTester $I - * @param Example $example - * - * @dataProvider getExamples - * - * @author Phalcon Team - * @since 2021-08-13 - */ - public function flashDirectSetCssIconClasses(UnitTester $I, Example $example) - { - $I->wantToTest('Flash\Direct - setCssIconClasses() - ' . $example[0]); - - $flash = $this->setupFlash(); - - $actual = $flash->{$example[0]}('test'); - $expected = "
test
" . PHP_EOL; - $I->assertEquals($expected, $actual); - } - - /** - * Tests Phalcon\Flash\Direct :: setCssIconClasses() - custom template - * - * @param UnitTester $I - * @param Example $example - * - * @dataProvider getExamples - * - * @author Phalcon Team - * @since 2021-08-13 - */ - public function flashDirectSetCssIconClassesCustomTemplate(UnitTester $I, Example $example) - { - $I->wantToTest('Flash\Direct - setCssIconClasses() - custom template - ' . $example[0]); - - $template = '
%message% ' - . '' - . '
'; - $flash = $this->setupFlash(); - - $flash->setCustomTemplate($template); - $actual = $flash->{$example[0]}('test'); - $expected = "
test " - . '' - . '
'; - $I->assertEquals($expected, $actual); - } - - /** - * @return \string[][] - */ - private function getExamples(): array - { - return [ - [ - 'error', - 'errorPhalcon', - 'errorIconPhalcon', - ], - [ - 'success', - 'successPhalcon', - 'successIconPhalcon', - ], - [ - 'notice', - 'noticePhalcon', - 'noticeIconPhalcon', - ], - [ - 'warning', - 'warningPhalcon', - 'warningIconPhalcon', - ], - ]; - } - - private function setupFlash(): Direct - { - $flash = new Direct(new Escaper()); - - $flash - ->setImplicitFlush(false) - ->setCssClasses( - [ - 'error' => 'errorPhalcon', - 'success' => 'successPhalcon', - 'notice' => 'noticePhalcon', - 'warning' => 'warningPhalcon', - ] - ) - ->setCssIconClasses( - [ - 'error' => 'errorIconPhalcon', - 'success' => 'successIconPhalcon', - 'notice' => 'noticeIconPhalcon', - 'warning' => 'warningIconPhalcon', - ] - ) - ; - - return $flash; - } -} diff --git a/tests/unit/Flash/Direct/SetCustomTemplateCest.php b/tests/unit/Flash/Direct/SetCustomTemplateCest.php deleted file mode 100644 index a001294b48f..00000000000 --- a/tests/unit/Flash/Direct/SetCustomTemplateCest.php +++ /dev/null @@ -1,31 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetCustomTemplateCest -{ - /** - * Tests Phalcon\Flash\Direct :: setCustomTemplate() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetCustomTemplate(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setCustomTemplate()'); - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SetEscaperServiceCest.php b/tests/unit/Flash/Direct/SetEscaperServiceCest.php deleted file mode 100644 index d06fbb9db53..00000000000 --- a/tests/unit/Flash/Direct/SetEscaperServiceCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetEscaperServiceCest -{ - /** - * Tests Phalcon\Flash\Direct :: setEscaperService() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetEscaperService(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setEscaperService()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SetImplicitFlushCest.php b/tests/unit/Flash/Direct/SetImplicitFlushCest.php deleted file mode 100644 index e78ae94ec7c..00000000000 --- a/tests/unit/Flash/Direct/SetImplicitFlushCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SetImplicitFlushCest -{ - /** - * Tests Phalcon\Flash\Direct :: setImplicitFlush() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSetImplicitFlush(UnitTester $I) - { - $I->wantToTest('Flash\Direct - setImplicitFlush()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/SuccessCest.php b/tests/unit/Flash/Direct/SuccessCest.php deleted file mode 100644 index ed30956a45e..00000000000 --- a/tests/unit/Flash/Direct/SuccessCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class SuccessCest -{ - /** - * Tests Phalcon\Flash\Direct :: success() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectSuccess(UnitTester $I) - { - $I->wantToTest('Flash\Direct - success()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Direct/WarningCest.php b/tests/unit/Flash/Direct/WarningCest.php deleted file mode 100644 index b12ddca19da..00000000000 --- a/tests/unit/Flash/Direct/WarningCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Direct; - -use UnitTester; - -class WarningCest -{ - /** - * Tests Phalcon\Flash\Direct :: warning() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashDirectWarning(UnitTester $I) - { - $I->wantToTest('Flash\Direct - warning()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/DirectCest.php b/tests/unit/Flash/DirectCest.php deleted file mode 100644 index ae91a77df75..00000000000 --- a/tests/unit/Flash/DirectCest.php +++ /dev/null @@ -1,207 +0,0 @@ - - * - * For the full copyright and license information, please view the - * LICENSE.txt file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Flash; - -use Codeception\Example; -use Phalcon\Flash\Direct; -use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use UnitTester; - -class DirectCest -{ - use DiTrait; - - /** - * @var array - */ - protected $classes = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - - /** - * Executed before each test - * - * @param UnitTester $I - * @return void - */ - public function _before(UnitTester $I): void - { - $this->newDi(); - - try { - $this->setDiService('escaper'); - } catch (Exception $e) { - $I->fail($e->getMessage()); - } - } - - /** - * Tests auto escaping - * - * @param UnitTester $I - * @param Example $example - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/11448 - * @since 2016-06-15 - * - * @dataProvider testShouldAutoEscapeHtmlProvider - */ - public function testShouldAutoEscapeHtml(UnitTester $I, Example $example) - { - $function = $example[0]; - - $flash = $this->getFlash(); - - - $flash->setAutoescape(false); - - ob_start(); - $flash->$function( - "" - ); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - "
" . - "
" . PHP_EOL, - $actual - ); - - - $flash->setAutoescape(true); - - ob_start(); - $flash->$function( - "" - ); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - "
" . - "<script>alert('This will execute as JavaScript!" . - "')</script>
" . PHP_EOL, - $actual - ); - } - - private function testShouldAutoEscapeHtmlProvider(): array - { - return [ - ['error'], - ['success'], - ['notice'], - ['warning'], - ]; - } - - /** - * Return flash instance - */ - protected function getFlash() - { - $container = $this->getDi(); - - $flash = new Direct(); - $flash->setDI($container); - $flash->setCssClasses($this->classes); - - return $flash; - } - - /** - * Test output formatted messages - * - * @param UnitTester $I - * @param Example $example - * - * @author Iván Guillén - * @since 2015-10-26 - * - * @dataProvider testMessageFormatProvider - */ - public function testMessageFormat(UnitTester $I, Example $example) - { - $function = $example[0]; - - $flash = $this->getFlash(); - - $class = sprintf( - ' class="%s"', - $this->classes[$function] - ); - - $message = 'sample message'; - - $expected = sprintf( - '%s' . PHP_EOL, - $class, - $message - ); - - ob_start(); - $flash->$function($message); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals($expected, $actual); - } - - private function testMessageFormatProvider(): array - { - return [ - ['error'], - ['success'], - ['notice'], - ]; - } - - /** - * Test custom message - * - * @param UnitTester $I - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/13445 - * @since 2018-10-16 - */ - public function testCustomFormat(UnitTester $I) - { - $flash = $this->getFlash(); - - $template = '%message%'; - - $flash->setCustomTemplate($template); - - $message = 'sample message'; - - ob_start(); - $flash->success($message); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - 'sample message', - $actual - ); - } -} diff --git a/tests/unit/Flash/Session/ClearCest.php b/tests/unit/Flash/Session/ClearCest.php deleted file mode 100644 index 1031beacd96..00000000000 --- a/tests/unit/Flash/Session/ClearCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class ClearCest -{ - /** - * Tests Phalcon\Flash\Session :: clear() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionClear(UnitTester $I) - { - $I->wantToTest('Flash\Session - clear()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/ClearHasCest.php b/tests/unit/Flash/Session/ClearHasCest.php new file mode 100644 index 00000000000..79f984c0496 --- /dev/null +++ b/tests/unit/Flash/Session/ClearHasCest.php @@ -0,0 +1,90 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +use function uniqid; + +/** + * Class ClearHasCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class ClearHasCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: clear()/has() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionClearHas(UnitTester $I) + { + $I->wantToTest('Flash\Session - clear()/has'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $message1 = uniqid('m-'); + $message2 = uniqid('m-'); + $flash->success($message1); + $flash->error($message2); + + $actual = $flash->has(); + $I->assertTrue($actual); + + $actual = $flash->has('success'); + $I->assertTrue($actual); + + $actual = $flash->has('error'); + $I->assertTrue($actual); + + $actual = $flash->has('warning'); + $I->assertFalse($actual); + + $actual = $flash->has('notice'); + $I->assertFalse($actual); + + $expected = [$message1]; + $actual = $flash->getMessages('success', false); + $I->assertEquals($expected, $actual); + + $expected = [$message2]; + $actual = $flash->getMessages('error', false); + $I->assertEquals($expected, $actual); + + $flash->clear(); + + $actual = $flash->getMessages(); + $I->assertEmpty($actual); + + $session->destroy(); + } +} diff --git a/tests/unit/Flash/Session/ConstructCest.php b/tests/unit/Flash/Session/ConstructCest.php index 3896b164cc2..db2c95678ed 100644 --- a/tests/unit/Flash/Session/ConstructCest.php +++ b/tests/unit/Flash/Session/ConstructCest.php @@ -11,22 +11,64 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Session; +namespace Phalcon\Tests\Unit\Flash\Session; +use Phalcon\Flash\Exception; +use Phalcon\Flash\FlashInterface; +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use UnitTester; +/** + * Class ConstructCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ class ConstructCest { + use DiTrait; + /** * Tests Phalcon\Flash\Session :: __construct() * + * @param UnitTester $I + * * @author Phalcon Team - * @since 2018-11-13 + * @since 2020-09-09 */ public function flashSessionConstruct(UnitTester $I) { $I->wantToTest('Flash\Session - __construct()'); - $I->skipTest('Need implementation'); + + $flash = new Session(); + $I->assertInstanceOf(FlashInterface::class, $flash); + } + + /** + * Tests Phalcon\Flash\Session :: __construct() - no session service + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionConstructNoSessionService(UnitTester $I) + { + $I->wantToTest('Flash\Session - __construct() - no session service'); + + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + + $I->expectThrowable( + new Exception( + 'A dependency injection container is required to ' . + 'access the "session" service' + ), + function () { + $flash = new Session(); + $flash->getMessages(); + } + ); } } diff --git a/tests/unit/Flash/Session/ErrorCest.php b/tests/unit/Flash/Session/ErrorCest.php deleted file mode 100644 index 32cd809e8f0..00000000000 --- a/tests/unit/Flash/Session/ErrorCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class ErrorCest -{ - /** - * Tests Phalcon\Flash\Session :: error() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionError(UnitTester $I) - { - $I->wantToTest('Flash\Session - error()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/GetAutoescapeCest.php b/tests/unit/Flash/Session/GetAutoescapeCest.php deleted file mode 100644 index fd07869d966..00000000000 --- a/tests/unit/Flash/Session/GetAutoescapeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class GetAutoescapeCest -{ - /** - * Tests Phalcon\Flash\Session :: getAutoescape() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionGetAutoescape(UnitTester $I) - { - $I->wantToTest('Flash\Session - getAutoescape()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/GetCustomTemplateCest.php b/tests/unit/Flash/Session/GetCustomTemplateCest.php deleted file mode 100644 index 7c1197285c3..00000000000 --- a/tests/unit/Flash/Session/GetCustomTemplateCest.php +++ /dev/null @@ -1,31 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class GetCustomTemplateCest -{ - /** - * Tests Phalcon\Flash\Session :: getCustomTemplate() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionGetCustomTemplate(UnitTester $I) - { - $I->wantToTest('Flash\Session - getCustomTemplate()'); - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/GetEscaperServiceCest.php b/tests/unit/Flash/Session/GetEscaperServiceCest.php deleted file mode 100644 index 0dc0d46ab23..00000000000 --- a/tests/unit/Flash/Session/GetEscaperServiceCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class GetEscaperServiceCest -{ - /** - * Tests Phalcon\Flash\Session :: getEscaperService() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionGetEscaperService(UnitTester $I) - { - $I->wantToTest('Flash\Session - getEscaperService()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/GetMessagesCest.php b/tests/unit/Flash/Session/GetMessagesCest.php index 25cb22bf901..d6e3d1bad52 100644 --- a/tests/unit/Flash/Session/GetMessagesCest.php +++ b/tests/unit/Flash/Session/GetMessagesCest.php @@ -11,22 +11,85 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Session; +namespace Phalcon\Tests\Unit\Flash\Session; +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use UnitTester; +use function uniqid; + +/** + * Class GetMessagesCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ class GetMessagesCest { + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + /** * Tests Phalcon\Flash\Session :: getMessages() * + * @param UnitTester $I + * * @author Phalcon Team - * @since 2018-11-13 + * @since 2020-09-09 */ public function flashSessionGetMessages(UnitTester $I) { $I->wantToTest('Flash\Session - getMessages()'); - $I->skipTest('Need implementation'); + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $message1 = uniqid('m-'); + $message2 = uniqid('m-'); + $flash->success($message1); + $flash->error($message2); + + $expected = [ + 'success' => [$message1], + 'error' => [$message2], + ]; + $actual = $flash->getMessages(); + $I->assertEquals($expected, $actual); + + $message1 = uniqid('m-'); + $message2 = uniqid('m-'); + $message3 = uniqid('m-'); + $flash->success($message1); + $flash->error($message2); + $flash->warning($message3); + + $expected = [$message1]; + $actual = $flash->getMessages('success', false); + $I->assertEquals($expected, $actual); + + $expected = [$message2]; + $actual = $flash->getMessages('error', false); + $I->assertEquals($expected, $actual); + + $expected = [$message3]; + $actual = $flash->getMessages('warning', true); + $I->assertEquals($expected, $actual); + + $expected = [ + 'success' => [$message1], + 'error' => [$message2], + ]; + $actual = $flash->getMessages(); + $I->assertEquals($expected, $actual); + + $session->destroy(); } } diff --git a/tests/unit/Flash/Session/GetSetAutoescapeCest.php b/tests/unit/Flash/Session/GetSetAutoescapeCest.php new file mode 100644 index 00000000000..6e1a416ee52 --- /dev/null +++ b/tests/unit/Flash/Session/GetSetAutoescapeCest.php @@ -0,0 +1,64 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +/** + * Class GetAutoescapeCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class GetSetAutoescapeCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: getAutoescape()/setAutoescape() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetAutoescape(UnitTester $I) + { + $I->wantToTest('Flash\Session - getAutoescape()/setAutoescape()'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $actual = $flash->getAutoescape(); + $I->assertTrue($actual); + + $actual = $flash->setAutoescape(false); + $I->assertInstanceOf(Session::class, $actual); + + $actual = $flash->getAutoescape(); + $I->assertFalse($actual); + + $session->destroy(); + } +} diff --git a/tests/unit/Flash/Session/GetSetCssClassesCest.php b/tests/unit/Flash/Session/GetSetCssClassesCest.php new file mode 100644 index 00000000000..fa4b42efc01 --- /dev/null +++ b/tests/unit/Flash/Session/GetSetCssClassesCest.php @@ -0,0 +1,77 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +/** + * Class GetSetCssClassesCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class GetSetCssClassesCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: getCssClasses()/setCssClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetCssClasses(UnitTester $I) + { + $I->wantToTest('Flash\Session - getCssClasses()/setCssClasses()'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $expected = [ + 'error' => 'errorMessage', + 'success' => 'successMessage', + 'notice' => 'noticeMessage', + 'warning' => 'warningMessage', + ]; + $newClasses = [ + 'error' => 'alert alert-error', + 'success' => 'alert alert-success', + 'notice' => 'alert alert-notice', + 'warning' => 'alert alert-warning', + ]; + + $actual = $flash->getCssClasses(); + $I->assertEquals($expected, $actual); + + $flash->setCssClasses($newClasses); + + $expected = $newClasses; + $actual = $flash->getCssClasses(); + $I->assertEquals($expected, $actual); + + $session->destroy(); + } +} diff --git a/tests/unit/Flash/Session/GetSetCssIconClassesCest.php b/tests/unit/Flash/Session/GetSetCssIconClassesCest.php new file mode 100644 index 00000000000..112a45b384a --- /dev/null +++ b/tests/unit/Flash/Session/GetSetCssIconClassesCest.php @@ -0,0 +1,78 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Direct; +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +/** + * Class GetSetCssClassesCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class GetSetCssIconClassesCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: getCssIconClasses()/setCssIconClasses() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetCssIconClasses(UnitTester $I) + { + $I->wantToTest('Flash\Session - getCssIconClasses()/setCssIconClasses()'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $expected = [ + 'error' => 'errorMessage', + 'success' => 'successMessage', + 'notice' => 'noticeMessage', + 'warning' => 'warningMessage', + ]; + $newClasses = [ + 'error' => 'alert alert-error', + 'success' => 'alert alert-success', + 'notice' => 'alert alert-notice', + 'warning' => 'alert alert-warning', + ]; + + $actual = $flash->getCssIconClasses(); + $I->assertEmpty($actual); + + $flash->setCssIconClasses($newClasses); + + $expected = $newClasses; + $actual = $flash->getCssIconClasses(); + $I->assertEquals($expected, $actual); + + $session->destroy(); + } +} diff --git a/tests/unit/Flash/Session/GetSetCustomTemplateCest.php b/tests/unit/Flash/Session/GetSetCustomTemplateCest.php new file mode 100644 index 00000000000..b0108af72c3 --- /dev/null +++ b/tests/unit/Flash/Session/GetSetCustomTemplateCest.php @@ -0,0 +1,65 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Session; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +/** + * Class GetSetCustomTemplateCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class GetSetCustomTemplateCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->setNewFactoryDefault(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: getCustomTemplate()/setCustomTemplate() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetCustomTemplate(UnitTester $I) + { + $I->wantToTest('Flash\Session - getCustomTemplate()/setCustomTemplate()'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $actual = $flash->getCustomTemplate(); + $I->assertEmpty($actual); + + $template = '{message}'; + $actual = $flash->setCustomTemplate($template); + $I->assertInstanceOf(Session::class, $actual); + + $actual = $flash->getCustomTemplate(); + $I->assertEquals($template, $actual); + + $session->destroy(); + } +} diff --git a/tests/unit/Flash/Session/GetSetDICest.php b/tests/unit/Flash/Session/GetSetDICest.php index 99abc2f4180..a17a4913e74 100644 --- a/tests/unit/Flash/Session/GetSetDICest.php +++ b/tests/unit/Flash/Session/GetSetDICest.php @@ -11,37 +11,37 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Session; +namespace Phalcon\Tests\Unit\Flash\Session; -use Phalcon\Di; -use Phalcon\Flash\Session as FlashSession; +use Phalcon\Di\Di; +use Phalcon\Flash\Session; use UnitTester; +/** + * Class GetSetDICest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ class GetSetDICest { /** - * Tests Phalcon\Flash\Session :: getDI() / setDI() + * Tests Phalcon\Flash\Session :: getDI()/setDI() + * + * @param UnitTester $I * - * @author Jeremy PASTOURET - * @since 2019-12-07 + * @author Phalcon Team + * @since 2020-09-09 */ - public function flashSessionSetDI(UnitTester $I) + public function flashSessionGetSetDI(UnitTester $I) { - $I->wantToTest('Flash\Session - getDI() / setDI()'); + $I->wantToTest('Flash\Session - getDI()/setDI()'); $container = new Di(); + $flash = new Session(); + $flash->setDI($container); - $oFlashSession = new FlashSession(); - - $oFlashSession->setDI($container); - - $I->assertSame( - $container, - $oFlashSession->getDI() - ); - - $class = Di::class; - $actual = $oFlashSession->getDI(); - $I->assertInstanceOf($class, $actual); + $actual = $flash->getDI(); + $I->assertSame($container, $actual); + $I->assertInstanceOf(Di::class, $actual); } } diff --git a/tests/unit/Flash/Session/GetSetEscaperServiceCest.php b/tests/unit/Flash/Session/GetSetEscaperServiceCest.php new file mode 100644 index 00000000000..5ac667e10d3 --- /dev/null +++ b/tests/unit/Flash/Session/GetSetEscaperServiceCest.php @@ -0,0 +1,116 @@ + + * + * For the full copyright and license information, please view the LICENSE.txt + * file that was distributed with this source code. + */ + +declare(strict_types=1); + +namespace Phalcon\Tests\Unit\Flash\Session; + +use Phalcon\Flash\Exception; +use Phalcon\Flash\Session; +use Phalcon\Html\Escaper; +use Phalcon\Tests\Fixtures\Traits\DiTrait; +use UnitTester; + +use function spl_object_hash; + +/** + * Class GetSetEscaperServiceCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ +class GetSetEscaperServiceCest +{ + use DiTrait; + + public function _before(UnitTester $I) + { + $this->newDi(); + $this->setDiService('sessionStream'); + } + + /** + * Tests Phalcon\Flash\Session :: getEscaperService()/setEscaperService() + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetEscaperService(UnitTester $I) + { + $I->wantToTest('Flash\Session - getEscaperService()/setEscaperService()'); + + $session = $this->container->getShared('session'); + $session->start(); + + $escaper = new Escaper(); + $flash = new Session($escaper); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($escaper), spl_object_hash($actual)); + + $newEscaper = new Escaper(); + $actual = $flash->setEscaperService($newEscaper); + $I->assertInstanceOf(Session::class, $actual); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($newEscaper), spl_object_hash($actual)); + + $session->destroy(); + } + + /** + * Tests Phalcon\Flash\Session :: getEscaperService() - container + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetSetEscaperServiceContainer(UnitTester $I) + { + $I->wantToTest('Flash\Session - getEscaperService() - Container'); + + $escaper = new Escaper(); + $this->container->setShared('escaper', $escaper); + + $flash = new Session(); + $flash->setDI($this->container); + + $actual = $flash->getEscaperService(); + $I->assertEquals(spl_object_hash($escaper), spl_object_hash($actual)); + } + + /** + * Tests Phalcon\Flash\Session :: getEscaperService() - exception + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 + */ + public function flashSessionGetEscaperServiceException(UnitTester $I) + { + $I->wantToTest('Flash\Session - getEscaperService() - exception'); + + $I->expectThrowable( + new Exception( + 'A dependency injection container is required to ' . + 'access the "escaper" service' + ), + function () { + $flash = new Session(); + + $actual = $flash->getEscaperService(); + } + ); + } +} diff --git a/tests/unit/Flash/Session/HasCest.php b/tests/unit/Flash/Session/HasCest.php deleted file mode 100644 index c0ebb302ef8..00000000000 --- a/tests/unit/Flash/Session/HasCest.php +++ /dev/null @@ -1,89 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use Phalcon\Flash\Session; -use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use UnitTester; - -class HasCest -{ - use DiTrait; - - public function _before(UnitTester $I): void - { - $this->newDi(); - - try { - $this->setDiService('escaper'); - $this->setDiService('sessionStream'); - } catch (Exception $e) { - $I->fail($e->getMessage()); - } - - if (PHP_SESSION_ACTIVE !== session_status()) { - session_start(); - } - - if (!isset($_SESSION)) { - $_SESSION = []; - } - } - - /** - * Executed after each test - * - * @param UnitTester $I - * @return void - */ - public function _after(UnitTester $I): void - { - session_destroy(); - } - - /** - * Return flash instance - */ - protected function getFlash(): Session - { - $container = $this->getDi(); - - $flash = new Session(); - $flash->setDI($container); - - return $flash; - } - - /** - * Tests Phalcon\Flash\Session :: has() - * - * @author Phalcon Team - * @since 2021-03-30 - */ - public function flashSessionHas(UnitTester $I) - { - $flash = $this->getFlash(); - - $I->assertFalse($flash->has()); - - $flash->success("test success"); - - $I->assertTrue($flash->has()); - - $I->assertFalse($flash->has("error")); - - $I->assertTrue($flash->has("success")); - } -} diff --git a/tests/unit/Flash/Session/MessageCest.php b/tests/unit/Flash/Session/MessageCest.php deleted file mode 100644 index 139c0d7f82f..00000000000 --- a/tests/unit/Flash/Session/MessageCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class MessageCest -{ - /** - * Tests Phalcon\Flash\Session :: message() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionMessage(UnitTester $I) - { - $I->wantToTest('Flash\Session - message()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/NoticeCest.php b/tests/unit/Flash/Session/NoticeCest.php deleted file mode 100644 index 5d422bf747d..00000000000 --- a/tests/unit/Flash/Session/NoticeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class NoticeCest -{ - /** - * Tests Phalcon\Flash\Session :: notice() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionNotice(UnitTester $I) - { - $I->wantToTest('Flash\Session - notice()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/OutputCest.php b/tests/unit/Flash/Session/OutputCest.php index ec4f88915c0..fda5a0af143 100644 --- a/tests/unit/Flash/Session/OutputCest.php +++ b/tests/unit/Flash/Session/OutputCest.php @@ -11,56 +11,51 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Flash\Session; +namespace Phalcon\Tests\Unit\Flash\Session; use Phalcon\Flash\Session; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use UnitTester; +use function ob_end_clean; +use function ob_get_contents; +use function ob_start; +use function uniqid; + +use const PHP_EOL; + +/** + * Class OutputCest + * + * @package Phalcon\Tests\Unit\Flash\Session + */ class OutputCest { use DiTrait; - /** - * @var array - */ - protected $classes = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - public function _before(UnitTester $I) { - $this->newDi(); - $this->setDiService('escaper'); + $this->setNewFactoryDefault(); $this->setDiService('sessionStream'); } /** - * Tests Phalcon\Flash\Session :: output() + * Tests Phalcon\Flash\Session :: output() - empty session + * + * @param UnitTester $I * * @author Phalcon Team - * @since 2018-11-13 + * @since 2020-09-09 */ public function flashSessionOutput(UnitTester $I) { - $I->wantToTest('Flash\Session - output()'); - $I->skipTest('Need implementation'); - } + $I->wantToTest('Flash\Session - output() - empty session'); - /** - * Tests Phalcon\Flash\Session :: output() in case the session is empty - * - * @author Balázs Németh - * @since 2019-04-29 - */ - public function emptyFlashSessionOutput(UnitTester $I) - { - $I->wantToTest('Flash\Session - output() when session is empty'); + $session = $this->container->getShared('session'); + $session->start(); - $flash = $this->getFlash(); + $flash = new Session(); + $flash->setDI($this->container); $flash->clear(); @@ -70,18 +65,48 @@ public function emptyFlashSessionOutput(UnitTester $I) ob_end_clean(); $I->assertEmpty($result); + + $session->destroy(); } /** - * Return flash instance + * Tests Phalcon\Flash\Session :: output() - types + * + * @param UnitTester $I + * + * @author Phalcon Team + * @since 2020-09-09 */ - protected function getFlash() + public function flashSessionOutputTypes(UnitTester $I) { - $container = $this->getDi(); - $flash = new Session(); - $flash->setDI($container); - $flash->setCssClasses($this->classes); + $I->wantToTest('Flash\Session - output() - types'); + + $session = $this->container->getShared('session'); + $session->start(); + + $flash = new Session(); + $flash->setDI($this->container); + + $message1 = uniqid('m-'); + $message2 = uniqid('m-'); + $flash->success($message1); + $flash->error($message2); + + ob_start(); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + $expected = '
' . $message1 . '
' . PHP_EOL + . '
' . $message2 . '
' . PHP_EOL; + $I->assertEquals($expected, $actual); + + ob_start(); + $flash->output(); + $actual = ob_get_contents(); + ob_end_clean(); + $expected = ''; + $I->assertEquals($expected, $actual); - return $flash; + $session->destroy(); } } diff --git a/tests/unit/Flash/Session/OutputMessageCest.php b/tests/unit/Flash/Session/OutputMessageCest.php deleted file mode 100644 index 82031577c44..00000000000 --- a/tests/unit/Flash/Session/OutputMessageCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class OutputMessageCest -{ - /** - * Tests Phalcon\Flash\Session :: outputMessage() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionOutputMessage(UnitTester $I) - { - $I->wantToTest('Flash\Session - outputMessage()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SetAutoescapeCest.php b/tests/unit/Flash/Session/SetAutoescapeCest.php deleted file mode 100644 index 92aebcb51d1..00000000000 --- a/tests/unit/Flash/Session/SetAutoescapeCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SetAutoescapeCest -{ - /** - * Tests Phalcon\Flash\Session :: setAutoescape() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSetAutoescape(UnitTester $I) - { - $I->wantToTest('Flash\Session - setAutoescape()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SetAutomaticHtmlCest.php b/tests/unit/Flash/Session/SetAutomaticHtmlCest.php deleted file mode 100644 index a4e3873d07c..00000000000 --- a/tests/unit/Flash/Session/SetAutomaticHtmlCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SetAutomaticHtmlCest -{ - /** - * Tests Phalcon\Flash\Session :: setAutomaticHtml() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSetAutomaticHtml(UnitTester $I) - { - $I->wantToTest('Flash\Session - setAutomaticHtml()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SetCssClassesCest.php b/tests/unit/Flash/Session/SetCssClassesCest.php deleted file mode 100644 index 0d2a1bc1f0c..00000000000 --- a/tests/unit/Flash/Session/SetCssClassesCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SetCssClassesCest -{ - /** - * Tests Phalcon\Flash\Session :: setCssClasses() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSetCssClasses(UnitTester $I) - { - $I->wantToTest('Flash\Session - setCssClasses()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SetCustomTemplateCest.php b/tests/unit/Flash/Session/SetCustomTemplateCest.php deleted file mode 100644 index 483aa49e39d..00000000000 --- a/tests/unit/Flash/Session/SetCustomTemplateCest.php +++ /dev/null @@ -1,75 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use Phalcon\Flash\Session; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use UnitTester; - -class SetCustomTemplateCest -{ - use DiTrait; - - /** - * @var array - */ - protected $classes = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - - public function _before(UnitTester $I) - { - $this->newDi(); - $this->setDiService('escaper'); - $this->setDiService('sessionStream'); - } - - /** - * Return flash instance - */ - protected function getFlash() - { - $container = $this->getDi(); - - $flash = new Session(); - $flash->setDI($container); - $flash->setCssClasses($this->classes); - - return $flash; - } - - /** - * Test custom template getter/setter - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/13445 - * @since 2018-10-16 - */ - public function testCustomTemplateGetterSetter(UnitTester $I) - { - $flash = $this->getFlash(); - - $template = '%message%'; - - $flash->setCustomTemplate($template); - - $I->assertEquals( - $template, - $flash->getCustomTemplate() - ); - } -} diff --git a/tests/unit/Flash/Session/SetEscaperServiceCest.php b/tests/unit/Flash/Session/SetEscaperServiceCest.php deleted file mode 100644 index 1c56e94e61b..00000000000 --- a/tests/unit/Flash/Session/SetEscaperServiceCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SetEscaperServiceCest -{ - /** - * Tests Phalcon\Flash\Session :: setEscaperService() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSetEscaperService(UnitTester $I) - { - $I->wantToTest('Flash\Session - setEscaperService()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SetImplicitFlushCest.php b/tests/unit/Flash/Session/SetImplicitFlushCest.php deleted file mode 100644 index 4190f0df9fc..00000000000 --- a/tests/unit/Flash/Session/SetImplicitFlushCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SetImplicitFlushCest -{ - /** - * Tests Phalcon\Flash\Session :: setImplicitFlush() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSetImplicitFlush(UnitTester $I) - { - $I->wantToTest('Flash\Session - setImplicitFlush()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/SuccessCest.php b/tests/unit/Flash/Session/SuccessCest.php deleted file mode 100644 index 3f79d7b77fe..00000000000 --- a/tests/unit/Flash/Session/SuccessCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class SuccessCest -{ - /** - * Tests Phalcon\Flash\Session :: success() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionSuccess(UnitTester $I) - { - $I->wantToTest('Flash\Session - success()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/Session/WarningCest.php b/tests/unit/Flash/Session/WarningCest.php deleted file mode 100644 index beaab48cc31..00000000000 --- a/tests/unit/Flash/Session/WarningCest.php +++ /dev/null @@ -1,32 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE.txt - * file that was distributed with this source code. - */ - -declare(strict_types=1); - -namespace Phalcon\Test\Unit\Flash\Session; - -use UnitTester; - -class WarningCest -{ - /** - * Tests Phalcon\Flash\Session :: warning() - * - * @author Phalcon Team - * @since 2018-11-13 - */ - public function flashSessionWarning(UnitTester $I) - { - $I->wantToTest('Flash\Session - warning()'); - - $I->skipTest('Need implementation'); - } -} diff --git a/tests/unit/Flash/SessionCest.php b/tests/unit/Flash/SessionCest.php deleted file mode 100644 index fb3e36c8171..00000000000 --- a/tests/unit/Flash/SessionCest.php +++ /dev/null @@ -1,339 +0,0 @@ - - * - * For the full copyright and license information, please view the - * LICENSE.txt file that was distributed with this source code. - */ - -namespace Phalcon\Test\Unit\Flash; - -use Codeception\Example; -use Phalcon\Flash\Session; -use Phalcon\Storage\Exception; -use Phalcon\Test\Fixtures\Traits\DiTrait; -use UnitTester; - -class SessionCest -{ - use DiTrait; - - /** - * @var array - */ - protected $classes = [ - 'success' => 'successMessage', - 'notice' => 'noticeMessage', - 'warning' => 'warningMessage', - 'error' => 'errorMessage', - ]; - - /** - * Executed before each test - * - * @param UnitTester $I - * @return void - */ - public function _before(UnitTester $I): void - { - $this->newDi(); - - try { - $this->setDiService('escaper'); - $this->setDiService('sessionStream'); - } catch (Exception $e) { - $I->fail($e->getMessage()); - } - - if (PHP_SESSION_ACTIVE !== session_status()) { - session_start(); - } - - if (!isset($_SESSION)) { - $_SESSION = []; - } - } - - /** - * Executed after each test - * - * @param UnitTester $I - * @return void - */ - public function _after(UnitTester $I): void - { - session_destroy(); - } - - - /** - * Tests auto escaping - * - * @param UnitTester $I - * @param Example $example - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/11448 - * @since 2016-06-15 - * - * @dataProvider testShouldAutoEscapeHtmlProvider - */ - public function testShouldAutoEscapeHtml(UnitTester $I, Example $example) - { - $function = $example[0]; - - $flash = $this->getFlash(); - - - $flash->setAutoescape(false); - - $message = ""; - - $flash->$function($message); - - $I->assertEquals( - [ - $message, - ], - $flash->getMessages($function) - ); - - - ob_start(); - $flash->$function( - "" - ); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - "
" . - "
" . PHP_EOL, - $actual - ); - - - $flash->setAutoescape(true); - - $message = ""; - - $flash->$function($message); - - $I->assertEquals( - [ - $message, - ], - $flash->getMessages($function) - ); - - - ob_start(); - $flash->$function( - "" - ); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - "
" . - "<script>alert('This will execute as JavaScript!" . - "')</script>
" . PHP_EOL, - $actual - ); - } - - private function testShouldAutoEscapeHtmlProvider(): array - { - return [ - ['error'], - ['success'], - ['notice'], - ['warning'], - ]; - } - - /** - * Return flash instance - */ - protected function getFlash() - { - $container = $this->getDi(); - - $flash = new Session(); - $flash->setDI($container); - $flash->setCssClasses($this->classes); - - return $flash; - } - - /** - * Test getMessages with specified type and removal - * activated, only removes the received messages. - * - * @param UnitTester $I - * - * @author Iván Guillén - * @since 2015-10-26 - */ - public function testGetMessagesTypeRemoveMessages(UnitTester $I) - { - $flash = $this->getFlash(); - - $flash->success('sample success'); - $flash->error('sample error'); - - $I->assertEquals( - [ - 'sample success', - ], - $flash->getMessages('success') - ); - - $I->assertEquals( - [ - 'sample error', - ], - $flash->getMessages('error') - ); - - $I->assertEmpty( - $flash->getMessages() - ); - } - - /** - * Tests getMessages in case of non existent type request - * - * @param UnitTester $I - * - * @issue https://github.com/phalcon/cphalcon/issues/11941 - * @author Phalcon Team - * @since 2016-07-03 - */ - public function testGetNonExistentType(UnitTester $I) - { - $flash = $this->getFlash(); - - $flash->error('sample error'); - - $I->assertEquals( - [], - $flash->getMessages('success', false) - ); - - $I->assertCount( - 1, - $flash->getMessages() - ); - } - - /** - * Tests clear method - * - * @param UnitTester $I - * - * @author Iván Guillén - * @since 2015-10-26 - */ - public function testClearMessagesFormSession(UnitTester $I) - { - $flash = $this->getFlash(); - - ob_start(); - $flash->output(); - $flash->success('sample message'); - $flash->clear(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - '', - $actual - ); - } - - /** - * Test output formatted messages - * - * @param UnitTester $I - * @param Example $example - * - * @author Iván Guillén - * @since 2015-10-26 - * - * @dataProvider testMessageFormatProvider - */ - public function testMessageFormat(UnitTester $I, Example $example) - { - $function = $example[0]; - - $flash = $this->getFlash(); - - $class = sprintf( - ' class="%s"', - $this->classes[$function] - ); - - $message = 'sample message'; - - $expected = sprintf( - '%s' . PHP_EOL, - $class, - $message - ); - - ob_start(); - $flash->$function($message); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals($expected, $actual); - } - - private function testMessageFormatProvider(): array - { - return [ - ['error'], - ['success'], - ['notice'], - ]; - } - - /** - * Test custom message - * - * @param UnitTester $I - * - * @author Phalcon Team - * @issue https://github.com/phalcon/cphalcon/issues/13445 - * @since 2018-10-16 - */ - public function testCustomFormat(UnitTester $I) - { - $flash = $this->getFlash(); - - $template = '%message%'; - - $flash->setCustomTemplate($template); - - $message = 'sample message'; - - $flash->success($message); - - ob_start(); - $flash->output(); - $actual = ob_get_contents(); - ob_end_clean(); - - $I->assertEquals( - 'sample message', - $actual - ); - } -} diff --git a/tests/unit/Forms/FormEntityCest.php b/tests/unit/Forms/FormEntityCest.php index 668b6fb8e9e..b01d288b734 100644 --- a/tests/unit/Forms/FormEntityCest.php +++ b/tests/unit/Forms/FormEntityCest.php @@ -1,11 +1,11 @@ * @since 2018-11-13 */ - public function supportVersionGet(UnitTester $I) + public function supportVersionGet(UnitTester $I, Example $example) { - $I->wantToTest('Version - get()'); + $I->wantToTest('Version - get() - ' . $example[0]); - $version = (new Version())->get(); + $version = Stub::make( + Version::class, + [ + 'getVersion' => $example[2] + ] + ); - $I->assertTrue(is_string($version)); + $expected = $example[1]; + $actual = $version->get(); + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); } /** - * Tests the getId() translation to get() - * - * @author Phalcon Team - * @since 2018-11-13 + * @return string[][] */ - public function supportVersionGetIdToGet(UnitTester $I) + private function getExamples(): array { - $I->wantToTest('Version - getId() to get()'); - - $version = new Version(); - $id = $version->getId(); - - $major = intval($id[0]); - $med = intval($id[1] . $id[2]); - $min = intval($id[3] . $id[4]); - $special = $this->numberToSpecial($id[5]); - $specialNo = ($special) ? $id[6] : ''; - $expected = "{$major}.{$med}.{$min}"; - if (true !== empty($special)) { - $expected .= "{$special}"; - if (true !== empty($specialNo)) { - $expected .= "{$specialNo}"; - } - } - - $I->assertEquals(trim($expected), $version->get()); + return [ + [ + 'alpha', + '5.0.0alpha1', + [5, 0, 0, 1, 1] + ], + [ + 'beta', + '5.0.0beta2', + [5, 0, 0, 2, 2] + ], + [ + 'rc', + '5.0.0RC3', + [5, 0, 0, 3, 3] + ], + [ + 'stable', + '5.0.0', + [5, 0, 0, 4, 0] + ], + ]; } } diff --git a/tests/unit/Support/Version/GetIdCest.php b/tests/unit/Support/Version/GetIdCest.php index 741a1ee2a47..e29e21b049f 100644 --- a/tests/unit/Support/Version/GetIdCest.php +++ b/tests/unit/Support/Version/GetIdCest.php @@ -11,10 +11,14 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Support\Version; +namespace Phalcon\Tests\Unit\Support\Version; -use Phalcon\Test\Fixtures\Traits\VersionTrait; -use Phalcon\Support\Version; +use Codeception\Example; +use Phalcon\Tests\Fixtures\Traits\VersionTrait; +use Phalcon\Tests\Fixtures\Support\Version\VersionAlphaFixture; +use Phalcon\Tests\Fixtures\Support\Version\VersionBetaFixture; +use Phalcon\Tests\Fixtures\Support\Version\VersionRcFixture; +use Phalcon\Tests\Fixtures\Support\Version\VersionStableFixture; use UnitTester; use function is_string; @@ -24,54 +28,54 @@ class GetIdCest use VersionTrait; /** - * Tests Phalcon\Support\Version :: getId() + * Tests get() + * + * @dataProvider getExamples + * + * @param UnitTester $I + * @param Example $example * * @author Phalcon Team * @since 2018-11-13 */ - public function supportVersionGetId(UnitTester $I) + public function supportVersionGetId(UnitTester $I, Example $example) { - $I->wantToTest('Version - getId()'); + $I->wantToTest('Version - getId() - ' . $example[0]); + + $version = new $example[1](); - $version = new Version(); - $I->assertTrue(is_string($version->getId())); + $expected = $example[2]; + $actual = $version->getId(); + $I->assertTrue(is_string($actual)); + $I->assertEquals($expected, $actual); } /** - * Tests the get() translation to getId() - * - * @author Phalcon Team - * @since 2018-11-13 + * @return string[][] */ - public function supportVersionGetToGetId(UnitTester $I) + private function getExamples(): array { - $I->wantToTest('Version - get() to getId()'); - - $object = new Version(); - $version = $object->get(); - $chunks = preg_split('/(alpha|beta|RC)/', $version); - - $special = '4'; - $specialNo = '0'; - - // There are pre-release version parts (eg. 4.0.0alpha2) - if (count($chunks) > 1) { - preg_match('/(alpha|beta|RC)/', $version, $stages); - $special = $this->specialToNumber($stages[0]); - if (!empty($chunks[1])) { // 4.0.0alpha - $specialNo = $chunks[1]; - } - } - - // Now the version itself - $verChunks = explode('.', $chunks[0]); - $major = intval($verChunks[0]); - $med = substr('00' . intval($verChunks[1]), -2); - $min = substr('00' . intval($verChunks[2]), -2); - - $I->assertEquals( - "{$major}{$med}{$min}{$special}{$specialNo}", - $object->getId() - ); + return [ + [ + 'alpha', + VersionAlphaFixture::class, + '5000011', + ], + [ + 'beta', + VersionBetaFixture::class, + '5000022', + ], + [ + 'rc', + VersionRcFixture::class, + '5000033', + ], + [ + 'stable', + VersionStableFixture::class, + '5000000', + ], + ]; } } diff --git a/tests/unit/Support/Version/GetPartCest.php b/tests/unit/Support/Version/GetPartCest.php index d17b79176f7..8d4e647f47f 100644 --- a/tests/unit/Support/Version/GetPartCest.php +++ b/tests/unit/Support/Version/GetPartCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Support\Version; +namespace Phalcon\Tests\Unit\Support\Version; -use Phalcon\Test\Fixtures\Traits\VersionTrait; use Phalcon\Support\Version; +use Phalcon\Tests\Fixtures\Traits\VersionTrait; use UnitTester; class GetPartCest @@ -39,7 +39,7 @@ public function supportVersionGetPart(UnitTester $I) */ $version = new Version(); - $id = $version->getId(); + $id = $version->getId(); // The major version is the first digit $I->assertEquals( diff --git a/tests/unit/Tag/AppendTitleCest.php b/tests/unit/Tag/AppendTitleCest.php index 90d3569bce5..d4b9399251f 100644 --- a/tests/unit/Tag/AppendTitleCest.php +++ b/tests/unit/Tag/AppendTitleCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class AppendTitleCest extends TagSetup diff --git a/tests/unit/Tag/CheckFieldCest.php b/tests/unit/Tag/CheckFieldCest.php index c6cd4dad76d..6bdd6c22193 100644 --- a/tests/unit/Tag/CheckFieldCest.php +++ b/tests/unit/Tag/CheckFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; use UnitTester; class CheckFieldCest extends TagHelper diff --git a/tests/unit/Tag/ColorFieldCest.php b/tests/unit/Tag/ColorFieldCest.php index f1558b24514..51cb210fb0b 100644 --- a/tests/unit/Tag/ColorFieldCest.php +++ b/tests/unit/Tag/ColorFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class ColorFieldCest extends TagHelper { diff --git a/tests/unit/Tag/DateFieldCest.php b/tests/unit/Tag/DateFieldCest.php index 620788b7a30..727343ec633 100644 --- a/tests/unit/Tag/DateFieldCest.php +++ b/tests/unit/Tag/DateFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class DateFieldCest extends TagHelper { diff --git a/tests/unit/Tag/DateTimeFieldCest.php b/tests/unit/Tag/DateTimeFieldCest.php index 9e41950301d..45585f8a00b 100644 --- a/tests/unit/Tag/DateTimeFieldCest.php +++ b/tests/unit/Tag/DateTimeFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class DateTimeFieldCest extends TagHelper { diff --git a/tests/unit/Tag/DateTimeLocalFieldCest.php b/tests/unit/Tag/DateTimeLocalFieldCest.php index f52505cd2f1..d9a658d9a01 100644 --- a/tests/unit/Tag/DateTimeLocalFieldCest.php +++ b/tests/unit/Tag/DateTimeLocalFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class DateTimeLocalFieldCest extends TagHelper { diff --git a/tests/unit/Tag/DisplayToCest.php b/tests/unit/Tag/DisplayToCest.php index 11b1a5e83b0..75a565d5f7b 100644 --- a/tests/unit/Tag/DisplayToCest.php +++ b/tests/unit/Tag/DisplayToCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class DisplayToCest extends TagSetup diff --git a/tests/unit/Tag/EmailFieldCest.php b/tests/unit/Tag/EmailFieldCest.php index 604c089bd9b..ff7ae2c91ff 100644 --- a/tests/unit/Tag/EmailFieldCest.php +++ b/tests/unit/Tag/EmailFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class EmailFieldCest extends TagHelper { diff --git a/tests/unit/Tag/EndFormCest.php b/tests/unit/Tag/EndFormCest.php index 685e2074dac..7e1da6ac869 100644 --- a/tests/unit/Tag/EndFormCest.php +++ b/tests/unit/Tag/EndFormCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class EndFormCest extends TagSetup diff --git a/tests/unit/Tag/FileFieldCest.php b/tests/unit/Tag/FileFieldCest.php index 5a5eca88708..6c57463d1c2 100644 --- a/tests/unit/Tag/FileFieldCest.php +++ b/tests/unit/Tag/FileFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class FileFieldCest extends TagHelper { diff --git a/tests/unit/Tag/FormCest.php b/tests/unit/Tag/FormCest.php index 281db7957cf..d9b92c381f4 100644 --- a/tests/unit/Tag/FormCest.php +++ b/tests/unit/Tag/FormCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class FormCest extends TagSetup diff --git a/tests/unit/Tag/FriendlyTitleCest.php b/tests/unit/Tag/FriendlyTitleCest.php index 6a5913d2469..23607c147d7 100644 --- a/tests/unit/Tag/FriendlyTitleCest.php +++ b/tests/unit/Tag/FriendlyTitleCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use Phalcon\Tag\Exception; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class FriendlyTitleCest extends TagSetup diff --git a/tests/unit/Tag/GetDocTypeCest.php b/tests/unit/Tag/GetDocTypeCest.php index 5937527a516..455675c65e8 100644 --- a/tests/unit/Tag/GetDocTypeCest.php +++ b/tests/unit/Tag/GetDocTypeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class GetDocTypeCest extends TagSetup diff --git a/tests/unit/Tag/GetEscaperCest.php b/tests/unit/Tag/GetEscaperCest.php index 8e3517e867e..b7a1fe87c2f 100644 --- a/tests/unit/Tag/GetEscaperCest.php +++ b/tests/unit/Tag/GetEscaperCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Escaper; use Phalcon\Escaper\EscaperInterface; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class GetEscaperCest extends TagSetup diff --git a/tests/unit/Tag/GetEscaperServiceCest.php b/tests/unit/Tag/GetEscaperServiceCest.php index a638c508648..71404b3c433 100644 --- a/tests/unit/Tag/GetEscaperServiceCest.php +++ b/tests/unit/Tag/GetEscaperServiceCest.php @@ -11,12 +11,12 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Escaper; use Phalcon\Escaper\EscaperInterface; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class GetEscaperServiceCest extends TagSetup diff --git a/tests/unit/Tag/GetHasValueCest.php b/tests/unit/Tag/GetHasValueCest.php index 500001c178a..be82155828d 100644 --- a/tests/unit/Tag/GetHasValueCest.php +++ b/tests/unit/Tag/GetHasValueCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; use function uniqid; diff --git a/tests/unit/Tag/GetSetDICest.php b/tests/unit/Tag/GetSetDICest.php index 813a5e75a77..698fe518020 100644 --- a/tests/unit/Tag/GetSetDICest.php +++ b/tests/unit/Tag/GetSetDICest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Di; use Phalcon\Tag; diff --git a/tests/unit/Tag/GetSetTitleSeparatorCest.php b/tests/unit/Tag/GetSetTitleSeparatorCest.php index 3c978f92f80..bc6004b915b 100644 --- a/tests/unit/Tag/GetSetTitleSeparatorCest.php +++ b/tests/unit/Tag/GetSetTitleSeparatorCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/GetTitleCest.php b/tests/unit/Tag/GetTitleCest.php index 950a96d4a40..6c775f0d24e 100644 --- a/tests/unit/Tag/GetTitleCest.php +++ b/tests/unit/Tag/GetTitleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/GetUrlServiceCest.php b/tests/unit/Tag/GetUrlServiceCest.php index ebf40e79b99..f002f9404fe 100644 --- a/tests/unit/Tag/GetUrlServiceCest.php +++ b/tests/unit/Tag/GetUrlServiceCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use Phalcon\Url; use UnitTester; diff --git a/tests/unit/Tag/HiddenFieldCest.php b/tests/unit/Tag/HiddenFieldCest.php index 1075bc9d140..2fb749655a7 100644 --- a/tests/unit/Tag/HiddenFieldCest.php +++ b/tests/unit/Tag/HiddenFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class HiddenFieldCest extends TagHelper { diff --git a/tests/unit/Tag/ImageCest.php b/tests/unit/Tag/ImageCest.php index 1f9056cf564..7fddcb31135 100644 --- a/tests/unit/Tag/ImageCest.php +++ b/tests/unit/Tag/ImageCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class ImageCest extends TagSetup diff --git a/tests/unit/Tag/ImageInputCest.php b/tests/unit/Tag/ImageInputCest.php index d72e014487f..4277ca69a67 100644 --- a/tests/unit/Tag/ImageInputCest.php +++ b/tests/unit/Tag/ImageInputCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class ImageInputCest extends TagSetup diff --git a/tests/unit/Tag/JavascriptIncludeCest.php b/tests/unit/Tag/JavascriptIncludeCest.php index 7be6de5772b..f3df873aa54 100644 --- a/tests/unit/Tag/JavascriptIncludeCest.php +++ b/tests/unit/Tag/JavascriptIncludeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class JavascriptIncludeCest extends TagSetup diff --git a/tests/unit/Tag/LinkToCest.php b/tests/unit/Tag/LinkToCest.php index 536a40fb9ff..261d5af3930 100644 --- a/tests/unit/Tag/LinkToCest.php +++ b/tests/unit/Tag/LinkToCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class LinkToCest extends TagSetup diff --git a/tests/unit/Tag/MonthFieldCest.php b/tests/unit/Tag/MonthFieldCest.php index ea408fca431..a65d1337a30 100644 --- a/tests/unit/Tag/MonthFieldCest.php +++ b/tests/unit/Tag/MonthFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class MonthFieldCest extends TagHelper { diff --git a/tests/unit/Tag/NumericFieldCest.php b/tests/unit/Tag/NumericFieldCest.php index 3f817c519d3..1d3bdf242b8 100644 --- a/tests/unit/Tag/NumericFieldCest.php +++ b/tests/unit/Tag/NumericFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class NumericFieldCest extends TagHelper { diff --git a/tests/unit/Tag/PasswordFieldCest.php b/tests/unit/Tag/PasswordFieldCest.php index 02dd9c3c4f3..452302e1c07 100644 --- a/tests/unit/Tag/PasswordFieldCest.php +++ b/tests/unit/Tag/PasswordFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class PasswordFieldCest extends TagHelper { diff --git a/tests/unit/Tag/PreloadCest.php b/tests/unit/Tag/PreloadCest.php index 4863f89a85e..d614d07556e 100644 --- a/tests/unit/Tag/PreloadCest.php +++ b/tests/unit/Tag/PreloadCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Http\Response; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Traits\DiTrait; +use Phalcon\Tests\Fixtures\Traits\DiTrait; use UnitTester; class PreloadCest diff --git a/tests/unit/Tag/PrependTitleCest.php b/tests/unit/Tag/PrependTitleCest.php index 54d668ec861..53e89379aca 100644 --- a/tests/unit/Tag/PrependTitleCest.php +++ b/tests/unit/Tag/PrependTitleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/RadioFieldCest.php b/tests/unit/Tag/RadioFieldCest.php index 874b726d097..0fda167a2b0 100644 --- a/tests/unit/Tag/RadioFieldCest.php +++ b/tests/unit/Tag/RadioFieldCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class RadioFieldCest extends TagSetup diff --git a/tests/unit/Tag/RangeFieldCest.php b/tests/unit/Tag/RangeFieldCest.php index 77a85af0476..129b9f77223 100644 --- a/tests/unit/Tag/RangeFieldCest.php +++ b/tests/unit/Tag/RangeFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class RangeFieldCest extends TagHelper { diff --git a/tests/unit/Tag/RenderAttributesCest.php b/tests/unit/Tag/RenderAttributesCest.php index 1993dfe27d3..87301a9e87f 100644 --- a/tests/unit/Tag/RenderAttributesCest.php +++ b/tests/unit/Tag/RenderAttributesCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class RenderAttributesCest extends TagSetup diff --git a/tests/unit/Tag/RenderTitleCest.php b/tests/unit/Tag/RenderTitleCest.php index 36121f9d5fa..1f98ceb483f 100644 --- a/tests/unit/Tag/RenderTitleCest.php +++ b/tests/unit/Tag/RenderTitleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/ResetInputCest.php b/tests/unit/Tag/ResetInputCest.php index 9eca50e1bcf..437a7272696 100644 --- a/tests/unit/Tag/ResetInputCest.php +++ b/tests/unit/Tag/ResetInputCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/SearchFieldCest.php b/tests/unit/Tag/SearchFieldCest.php index 0b23dc8997a..0dcd735434c 100644 --- a/tests/unit/Tag/SearchFieldCest.php +++ b/tests/unit/Tag/SearchFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class SearchFieldCest extends TagHelper { diff --git a/tests/unit/Tag/Select/SelectFieldCest.php b/tests/unit/Tag/Select/SelectFieldCest.php index c4691397c8f..012e982171d 100644 --- a/tests/unit/Tag/Select/SelectFieldCest.php +++ b/tests/unit/Tag/Select/SelectFieldCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag\Select; +namespace Phalcon\Tests\Unit\Tag\Select; use Phalcon\Tag\Select; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SelectFieldCest extends TagSetup diff --git a/tests/unit/Tag/SelectCest.php b/tests/unit/Tag/SelectCest.php index f8f8510a0cc..3b476d0a8b6 100644 --- a/tests/unit/Tag/SelectCest.php +++ b/tests/unit/Tag/SelectCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SelectCest extends TagSetup diff --git a/tests/unit/Tag/SelectStaticCest.php b/tests/unit/Tag/SelectStaticCest.php index 64c7ae2a500..d5dc2fdc8dd 100644 --- a/tests/unit/Tag/SelectStaticCest.php +++ b/tests/unit/Tag/SelectStaticCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SelectStaticCest extends TagSetup diff --git a/tests/unit/Tag/SetDefaultCest.php b/tests/unit/Tag/SetDefaultCest.php index 357d26a22b6..314cb197c24 100644 --- a/tests/unit/Tag/SetDefaultCest.php +++ b/tests/unit/Tag/SetDefaultCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SetDefaultCest extends TagSetup diff --git a/tests/unit/Tag/SetDefaultsCest.php b/tests/unit/Tag/SetDefaultsCest.php index 99c7854266b..dd165f03167 100644 --- a/tests/unit/Tag/SetDefaultsCest.php +++ b/tests/unit/Tag/SetDefaultsCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SetDefaultsCest extends TagSetup diff --git a/tests/unit/Tag/SetDocTypeCest.php b/tests/unit/Tag/SetDocTypeCest.php index b6ebdea3581..18cdcb9e0a8 100644 --- a/tests/unit/Tag/SetDocTypeCest.php +++ b/tests/unit/Tag/SetDocTypeCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SetDocTypeCest extends TagSetup diff --git a/tests/unit/Tag/SetTitleCest.php b/tests/unit/Tag/SetTitleCest.php index 6611236c750..6d977c43724 100644 --- a/tests/unit/Tag/SetTitleCest.php +++ b/tests/unit/Tag/SetTitleCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; use UnitTester; diff --git a/tests/unit/Tag/StylesheetLinkCest.php b/tests/unit/Tag/StylesheetLinkCest.php index 73d935e1fec..cf992244867 100644 --- a/tests/unit/Tag/StylesheetLinkCest.php +++ b/tests/unit/Tag/StylesheetLinkCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class StylesheetLinkCest extends TagSetup diff --git a/tests/unit/Tag/SubmitButtonCest.php b/tests/unit/Tag/SubmitButtonCest.php index 6ac9721ca97..bba8ae5904e 100644 --- a/tests/unit/Tag/SubmitButtonCest.php +++ b/tests/unit/Tag/SubmitButtonCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class SubmitButtonCest extends TagSetup diff --git a/tests/unit/Tag/TagHtmlCest.php b/tests/unit/Tag/TagHtmlCest.php index 1781c3f5011..2a2d0b57610 100644 --- a/tests/unit/Tag/TagHtmlCest.php +++ b/tests/unit/Tag/TagHtmlCest.php @@ -11,11 +11,11 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Codeception\Example; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class TagHtmlCest extends TagSetup diff --git a/tests/unit/Tag/TagHtmlCloseCest.php b/tests/unit/Tag/TagHtmlCloseCest.php index 45fb93afc19..15250ba520b 100644 --- a/tests/unit/Tag/TagHtmlCloseCest.php +++ b/tests/unit/Tag/TagHtmlCloseCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class TagHtmlCloseCest extends TagSetup diff --git a/tests/unit/Tag/TelFieldCest.php b/tests/unit/Tag/TelFieldCest.php index f9cd40e75dd..b096f1da48e 100644 --- a/tests/unit/Tag/TelFieldCest.php +++ b/tests/unit/Tag/TelFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class TelFieldCest extends TagHelper { diff --git a/tests/unit/Tag/TextAreaCest.php b/tests/unit/Tag/TextAreaCest.php index 2302d9c4329..9515f7391dc 100644 --- a/tests/unit/Tag/TextAreaCest.php +++ b/tests/unit/Tag/TextAreaCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; use Phalcon\Tag; -use Phalcon\Test\Fixtures\Helpers\TagSetup; +use Phalcon\Tests\Fixtures\Helpers\TagSetup; use UnitTester; class TextAreaCest extends TagSetup diff --git a/tests/unit/Tag/TextFieldCest.php b/tests/unit/Tag/TextFieldCest.php index fdb15657982..36ffc584774 100644 --- a/tests/unit/Tag/TextFieldCest.php +++ b/tests/unit/Tag/TextFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class TextFieldCest extends TagHelper { diff --git a/tests/unit/Tag/TimeFieldCest.php b/tests/unit/Tag/TimeFieldCest.php index 68e4d6a7d86..daf48972588 100644 --- a/tests/unit/Tag/TimeFieldCest.php +++ b/tests/unit/Tag/TimeFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class TimeFieldCest extends TagHelper { diff --git a/tests/unit/Tag/UrlFieldCest.php b/tests/unit/Tag/UrlFieldCest.php index b97e9573ef7..b8a3dff7e2b 100644 --- a/tests/unit/Tag/UrlFieldCest.php +++ b/tests/unit/Tag/UrlFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class UrlFieldCest extends TagHelper { diff --git a/tests/unit/Tag/WeekFieldCest.php b/tests/unit/Tag/WeekFieldCest.php index e9e43553185..e6853bb038b 100644 --- a/tests/unit/Tag/WeekFieldCest.php +++ b/tests/unit/Tag/WeekFieldCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Tag; +namespace Phalcon\Tests\Unit\Tag; -use Phalcon\Test\Fixtures\Helpers\TagHelper; +use Phalcon\Tests\Fixtures\Helpers\TagHelper; class WeekFieldCest extends TagHelper { diff --git a/tests/unit/Text/CamelizeCest.php b/tests/unit/Text/CamelizeCest.php index 867e1828256..7308c2a1091 100644 --- a/tests/unit/Text/CamelizeCest.php +++ b/tests/unit/Text/CamelizeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Codeception\Example; use Phalcon\Text; diff --git a/tests/unit/Text/ConcatCest.php b/tests/unit/Text/ConcatCest.php index 265ea80e547..2cfa3ca5815 100644 --- a/tests/unit/Text/ConcatCest.php +++ b/tests/unit/Text/ConcatCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/DynamicCest.php b/tests/unit/Text/DynamicCest.php index a4ff7149d76..1efda50ffa6 100644 --- a/tests/unit/Text/DynamicCest.php +++ b/tests/unit/Text/DynamicCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/EndsWithCest.php b/tests/unit/Text/EndsWithCest.php index 912a31264ee..1ff55385460 100644 --- a/tests/unit/Text/EndsWithCest.php +++ b/tests/unit/Text/EndsWithCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/HumanizeCest.php b/tests/unit/Text/HumanizeCest.php index 971556e4dc8..b49151f9525 100644 --- a/tests/unit/Text/HumanizeCest.php +++ b/tests/unit/Text/HumanizeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Codeception\Example; use Phalcon\Text; diff --git a/tests/unit/Text/IncrementCest.php b/tests/unit/Text/IncrementCest.php index 8c46913a8f9..529bb63a56d 100644 --- a/tests/unit/Text/IncrementCest.php +++ b/tests/unit/Text/IncrementCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/LowerCest.php b/tests/unit/Text/LowerCest.php index 03bb56d8c0f..42085788d36 100644 --- a/tests/unit/Text/LowerCest.php +++ b/tests/unit/Text/LowerCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/RandomCest.php b/tests/unit/Text/RandomCest.php index 5446e5a552e..b0444a79ba7 100644 --- a/tests/unit/Text/RandomCest.php +++ b/tests/unit/Text/RandomCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Codeception\Example; use Phalcon\Text; diff --git a/tests/unit/Text/ReduceSlashesCest.php b/tests/unit/Text/ReduceSlashesCest.php index 48835d01caa..bad9b6892a9 100644 --- a/tests/unit/Text/ReduceSlashesCest.php +++ b/tests/unit/Text/ReduceSlashesCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Codeception\Example; use Phalcon\Text; diff --git a/tests/unit/Text/StartsWithCest.php b/tests/unit/Text/StartsWithCest.php index d3527f8c7ec..195b7dfec94 100644 --- a/tests/unit/Text/StartsWithCest.php +++ b/tests/unit/Text/StartsWithCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/UncamelizeCest.php b/tests/unit/Text/UncamelizeCest.php index e8f76ae0e39..9b021fda8b4 100644 --- a/tests/unit/Text/UncamelizeCest.php +++ b/tests/unit/Text/UncamelizeCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Codeception\Example; use Phalcon\Text; diff --git a/tests/unit/Text/UnderscoreCest.php b/tests/unit/Text/UnderscoreCest.php index 056871ac411..b01a4c18f9c 100644 --- a/tests/unit/Text/UnderscoreCest.php +++ b/tests/unit/Text/UnderscoreCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Text/UpperCest.php b/tests/unit/Text/UpperCest.php index d289ea35500..d541003ff73 100644 --- a/tests/unit/Text/UpperCest.php +++ b/tests/unit/Text/UpperCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Text; +namespace Phalcon\Tests\Unit\Text; use Phalcon\Text; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Csv/ArrayAccessCest.php b/tests/unit/Translate/Adapter/Csv/ArrayAccessCest.php index fe0370b185d..448569f0576 100644 --- a/tests/unit/Translate/Adapter/Csv/ArrayAccessCest.php +++ b/tests/unit/Translate/Adapter/Csv/ArrayAccessCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Csv/ConstructCest.php b/tests/unit/Translate/Adapter/Csv/ConstructCest.php index 89c251910fe..fa389ad1e48 100644 --- a/tests/unit/Translate/Adapter/Csv/ConstructCest.php +++ b/tests/unit/Translate/Adapter/Csv/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; use ArrayAccess; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\AdapterInterface; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\Exception; diff --git a/tests/unit/Translate/Adapter/Csv/ExistsCest.php b/tests/unit/Translate/Adapter/Csv/ExistsCest.php index cc9cf12ba8b..d08ef4488f5 100644 --- a/tests/unit/Translate/Adapter/Csv/ExistsCest.php +++ b/tests/unit/Translate/Adapter/Csv/ExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Csv/OffsetExistsCest.php b/tests/unit/Translate/Adapter/Csv/OffsetExistsCest.php index f9fd37ec408..af749e2267b 100644 --- a/tests/unit/Translate/Adapter/Csv/OffsetExistsCest.php +++ b/tests/unit/Translate/Adapter/Csv/OffsetExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Csv/OffsetGetCest.php b/tests/unit/Translate/Adapter/Csv/OffsetGetCest.php index 0dce965ae6a..1184299908f 100644 --- a/tests/unit/Translate/Adapter/Csv/OffsetGetCest.php +++ b/tests/unit/Translate/Adapter/Csv/OffsetGetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Csv/OffsetSetCest.php b/tests/unit/Translate/Adapter/Csv/OffsetSetCest.php index 47bd37abbc2..a19555f852d 100644 --- a/tests/unit/Translate/Adapter/Csv/OffsetSetCest.php +++ b/tests/unit/Translate/Adapter/Csv/OffsetSetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/Csv/OffsetUnsetCest.php b/tests/unit/Translate/Adapter/Csv/OffsetUnsetCest.php index dd419754c85..25c6100c1e3 100644 --- a/tests/unit/Translate/Adapter/Csv/OffsetUnsetCest.php +++ b/tests/unit/Translate/Adapter/Csv/OffsetUnsetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/Csv/QueryCest.php b/tests/unit/Translate/Adapter/Csv/QueryCest.php index 57e0487925c..6565f16622e 100644 --- a/tests/unit/Translate/Adapter/Csv/QueryCest.php +++ b/tests/unit/Translate/Adapter/Csv/QueryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Helpers\TranslateCsvHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateCsvHelper; class QueryCest extends TranslateCsvHelper { diff --git a/tests/unit/Translate/Adapter/Csv/TCest.php b/tests/unit/Translate/Adapter/Csv/TCest.php index adfeb7df318..e6abee181af 100644 --- a/tests/unit/Translate/Adapter/Csv/TCest.php +++ b/tests/unit/Translate/Adapter/Csv/TCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Helpers\TranslateCsvHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateCsvHelper; class TCest extends TranslateCsvHelper { diff --git a/tests/unit/Translate/Adapter/Csv/UnderscoreCest.php b/tests/unit/Translate/Adapter/Csv/UnderscoreCest.php index e246041be61..7550d3dd6f1 100644 --- a/tests/unit/Translate/Adapter/Csv/UnderscoreCest.php +++ b/tests/unit/Translate/Adapter/Csv/UnderscoreCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Csv; +namespace Phalcon\Tests\Unit\Translate\Adapter\Csv; -use Phalcon\Test\Fixtures\Helpers\TranslateCsvHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateCsvHelper; class UnderscoreCest extends TranslateCsvHelper { diff --git a/tests/unit/Translate/Adapter/Gettext/ConstructCest.php b/tests/unit/Translate/Adapter/Gettext/ConstructCest.php index 1b7725ac7bc..d68ed1155b9 100644 --- a/tests/unit/Translate/Adapter/Gettext/ConstructCest.php +++ b/tests/unit/Translate/Adapter/Gettext/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; use ArrayAccess; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\AdapterInterface; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\Exception; diff --git a/tests/unit/Translate/Adapter/Gettext/ExistsCest.php b/tests/unit/Translate/Adapter/Gettext/ExistsCest.php index 56719fe913b..e7aecb329be 100644 --- a/tests/unit/Translate/Adapter/Gettext/ExistsCest.php +++ b/tests/unit/Translate/Adapter/Gettext/ExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/GetCategoryCest.php b/tests/unit/Translate/Adapter/Gettext/GetCategoryCest.php index 970fbd72877..23c71fb3c62 100644 --- a/tests/unit/Translate/Adapter/Gettext/GetCategoryCest.php +++ b/tests/unit/Translate/Adapter/Gettext/GetCategoryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/GetSetDefaultDomainCest.php b/tests/unit/Translate/Adapter/Gettext/GetSetDefaultDomainCest.php index b215031b9db..4be925cd207 100644 --- a/tests/unit/Translate/Adapter/Gettext/GetSetDefaultDomainCest.php +++ b/tests/unit/Translate/Adapter/Gettext/GetSetDefaultDomainCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/GetSetDirectoryCest.php b/tests/unit/Translate/Adapter/Gettext/GetSetDirectoryCest.php index 2304fd1adfd..6d62d2c2010 100644 --- a/tests/unit/Translate/Adapter/Gettext/GetSetDirectoryCest.php +++ b/tests/unit/Translate/Adapter/Gettext/GetSetDirectoryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/GetSetLocaleCest.php b/tests/unit/Translate/Adapter/Gettext/GetSetLocaleCest.php index 542a1f1e2d4..7cdd1e02853 100644 --- a/tests/unit/Translate/Adapter/Gettext/GetSetLocaleCest.php +++ b/tests/unit/Translate/Adapter/Gettext/GetSetLocaleCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/NqueryCest.php b/tests/unit/Translate/Adapter/Gettext/NqueryCest.php index e51aa5285d2..7d0e801698b 100644 --- a/tests/unit/Translate/Adapter/Gettext/NqueryCest.php +++ b/tests/unit/Translate/Adapter/Gettext/NqueryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/OffsetExistsCest.php b/tests/unit/Translate/Adapter/Gettext/OffsetExistsCest.php index dafce3dc642..323702cf0c2 100644 --- a/tests/unit/Translate/Adapter/Gettext/OffsetExistsCest.php +++ b/tests/unit/Translate/Adapter/Gettext/OffsetExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/OffsetGetCest.php b/tests/unit/Translate/Adapter/Gettext/OffsetGetCest.php index cafd46b492d..c1e55b3dd1d 100644 --- a/tests/unit/Translate/Adapter/Gettext/OffsetGetCest.php +++ b/tests/unit/Translate/Adapter/Gettext/OffsetGetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/OffsetSetCest.php b/tests/unit/Translate/Adapter/Gettext/OffsetSetCest.php index 8e9ee449936..541a71fa408 100644 --- a/tests/unit/Translate/Adapter/Gettext/OffsetSetCest.php +++ b/tests/unit/Translate/Adapter/Gettext/OffsetSetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/Gettext/OffsetUnsetCest.php b/tests/unit/Translate/Adapter/Gettext/OffsetUnsetCest.php index a369fe24072..5997ae27fb5 100644 --- a/tests/unit/Translate/Adapter/Gettext/OffsetUnsetCest.php +++ b/tests/unit/Translate/Adapter/Gettext/OffsetUnsetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/Gettext/QueryCest.php b/tests/unit/Translate/Adapter/Gettext/QueryCest.php index 38977dc846c..5becdb3e763 100644 --- a/tests/unit/Translate/Adapter/Gettext/QueryCest.php +++ b/tests/unit/Translate/Adapter/Gettext/QueryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/ResetDomainCest.php b/tests/unit/Translate/Adapter/Gettext/ResetDomainCest.php index da6c18871e9..aa879035aa8 100644 --- a/tests/unit/Translate/Adapter/Gettext/ResetDomainCest.php +++ b/tests/unit/Translate/Adapter/Gettext/ResetDomainCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/SetDomainCest.php b/tests/unit/Translate/Adapter/Gettext/SetDomainCest.php index 0271e4b94e2..d768e5469c9 100644 --- a/tests/unit/Translate/Adapter/Gettext/SetDomainCest.php +++ b/tests/unit/Translate/Adapter/Gettext/SetDomainCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/Gettext/TCest.php b/tests/unit/Translate/Adapter/Gettext/TCest.php index e1ef5f33def..16fc78e8847 100644 --- a/tests/unit/Translate/Adapter/Gettext/TCest.php +++ b/tests/unit/Translate/Adapter/Gettext/TCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Helpers\TranslateGettextHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateGettextHelper; class TCest extends TranslateGettextHelper { diff --git a/tests/unit/Translate/Adapter/Gettext/UnderscoreCest.php b/tests/unit/Translate/Adapter/Gettext/UnderscoreCest.php index 1e63b206abf..3fbd5959a47 100644 --- a/tests/unit/Translate/Adapter/Gettext/UnderscoreCest.php +++ b/tests/unit/Translate/Adapter/Gettext/UnderscoreCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\Gettext; +namespace Phalcon\Tests\Unit\Translate\Adapter\Gettext; -use Phalcon\Test\Fixtures\Traits\TranslateGettextTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateGettextTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/NativeArray/ArrayAccessCest.php b/tests/unit/Translate/Adapter/NativeArray/ArrayAccessCest.php index ebab71aa4b6..7e641369d4f 100644 --- a/tests/unit/Translate/Adapter/NativeArray/ArrayAccessCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/ArrayAccessCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/NativeArray/ConstructCest.php b/tests/unit/Translate/Adapter/NativeArray/ConstructCest.php index 8ee6d52bd0e..f35cd2cb40a 100644 --- a/tests/unit/Translate/Adapter/NativeArray/ConstructCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/ConstructCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; use ArrayAccess; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\AdapterInterface; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\Exception; diff --git a/tests/unit/Translate/Adapter/NativeArray/ExistsCest.php b/tests/unit/Translate/Adapter/NativeArray/ExistsCest.php index a516609333e..2d50d6defc2 100644 --- a/tests/unit/Translate/Adapter/NativeArray/ExistsCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/ExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/NativeArray/NotFoundCest.php b/tests/unit/Translate/Adapter/NativeArray/NotFoundCest.php index 15f78a70a1c..3904ca122f6 100644 --- a/tests/unit/Translate/Adapter/NativeArray/NotFoundCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/NotFoundCest.php @@ -11,10 +11,10 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; -use Phalcon\Test\Fixtures\Translate\Adapter\NativeAdapter; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Translate\Adapter\NativeAdapter; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/NativeArray/OffsetExistsCest.php b/tests/unit/Translate/Adapter/NativeArray/OffsetExistsCest.php index ea252a6f972..a531da4421e 100644 --- a/tests/unit/Translate/Adapter/NativeArray/OffsetExistsCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/OffsetExistsCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/NativeArray/OffsetGetCest.php b/tests/unit/Translate/Adapter/NativeArray/OffsetGetCest.php index 8eeb9952184..a1608cf4cb4 100644 --- a/tests/unit/Translate/Adapter/NativeArray/OffsetGetCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/OffsetGetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; use UnitTester; diff --git a/tests/unit/Translate/Adapter/NativeArray/OffsetSetCest.php b/tests/unit/Translate/Adapter/NativeArray/OffsetSetCest.php index 75a54174763..a3195e4938d 100644 --- a/tests/unit/Translate/Adapter/NativeArray/OffsetSetCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/OffsetSetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/NativeArray/OffsetUnsetCest.php b/tests/unit/Translate/Adapter/NativeArray/OffsetUnsetCest.php index 772220db591..d7d77b285ad 100644 --- a/tests/unit/Translate/Adapter/NativeArray/OffsetUnsetCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/OffsetUnsetCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Traits\TranslateArrayTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateArrayTrait; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\Exception; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Adapter/NativeArray/QueryCest.php b/tests/unit/Translate/Adapter/NativeArray/QueryCest.php index 17c69ff59f1..7fdbfd9c079 100644 --- a/tests/unit/Translate/Adapter/NativeArray/QueryCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/QueryCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Helpers\TranslateNativeArrayHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateNativeArrayHelper; class QueryCest extends TranslateNativeArrayHelper { diff --git a/tests/unit/Translate/Adapter/NativeArray/TCest.php b/tests/unit/Translate/Adapter/NativeArray/TCest.php index c408f9d503b..ac9ddeb44b9 100644 --- a/tests/unit/Translate/Adapter/NativeArray/TCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/TCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Helpers\TranslateNativeArrayHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateNativeArrayHelper; class TCest extends TranslateNativeArrayHelper { diff --git a/tests/unit/Translate/Adapter/NativeArray/UnderscoreCest.php b/tests/unit/Translate/Adapter/NativeArray/UnderscoreCest.php index 4d5fbb994a4..8a5af2541d2 100644 --- a/tests/unit/Translate/Adapter/NativeArray/UnderscoreCest.php +++ b/tests/unit/Translate/Adapter/NativeArray/UnderscoreCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Adapter\NativeArray; +namespace Phalcon\Tests\Unit\Translate\Adapter\NativeArray; -use Phalcon\Test\Fixtures\Helpers\TranslateNativeArrayHelper; +use Phalcon\Tests\Fixtures\Helpers\TranslateNativeArrayHelper; class UnderscoreCest extends TranslateNativeArrayHelper { diff --git a/tests/unit/Translate/Interpolator/AssociativeArray/ReplacePlaceholdersCest.php b/tests/unit/Translate/Interpolator/AssociativeArray/ReplacePlaceholdersCest.php index b4e3dced8ea..0b513f7ee13 100644 --- a/tests/unit/Translate/Interpolator/AssociativeArray/ReplacePlaceholdersCest.php +++ b/tests/unit/Translate/Interpolator/AssociativeArray/ReplacePlaceholdersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Interpolator\AssociativeArray; +namespace Phalcon\Tests\Unit\Translate\Interpolator\AssociativeArray; use Phalcon\Translate\Interpolator\AssociativeArray; use UnitTester; diff --git a/tests/unit/Translate/Interpolator/IndexedArray/InterpolatorCest.php b/tests/unit/Translate/Interpolator/IndexedArray/InterpolatorCest.php index 9f6acd34d71..0c82fa0f178 100644 --- a/tests/unit/Translate/Interpolator/IndexedArray/InterpolatorCest.php +++ b/tests/unit/Translate/Interpolator/IndexedArray/InterpolatorCest.php @@ -9,7 +9,7 @@ * file that was distributed with this source code. */ -namespace Phalcon\Test\Unit\Translate\Interpolator\IndexedArray; +namespace Phalcon\Tests\Unit\Translate\Interpolator\IndexedArray; use Phalcon\Translate\Adapter\NativeArray; use Phalcon\Translate\InterpolatorFactory; diff --git a/tests/unit/Translate/Interpolator/IndexedArray/ReplacePlaceholdersCest.php b/tests/unit/Translate/Interpolator/IndexedArray/ReplacePlaceholdersCest.php index 080e9d09695..a1bcf57c85d 100644 --- a/tests/unit/Translate/Interpolator/IndexedArray/ReplacePlaceholdersCest.php +++ b/tests/unit/Translate/Interpolator/IndexedArray/ReplacePlaceholdersCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\Interpolator\IndexedArray; +namespace Phalcon\Tests\Unit\Translate\Interpolator\IndexedArray; use Phalcon\Translate\Interpolator\IndexedArray; use UnitTester; diff --git a/tests/unit/Translate/InterpolatorFactory/NewInstanceCest.php b/tests/unit/Translate/InterpolatorFactory/NewInstanceCest.php index 6803493a846..91d0fe18295 100644 --- a/tests/unit/Translate/InterpolatorFactory/NewInstanceCest.php +++ b/tests/unit/Translate/InterpolatorFactory/NewInstanceCest.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\InterpolatorFactory; +namespace Phalcon\Tests\Unit\Translate\InterpolatorFactory; use Codeception\Example; use Phalcon\Translate\Exception; diff --git a/tests/unit/Translate/TranslateFactory/LoadCest.php b/tests/unit/Translate/TranslateFactory/LoadCest.php index b03aa0928c5..89471205e46 100644 --- a/tests/unit/Translate/TranslateFactory/LoadCest.php +++ b/tests/unit/Translate/TranslateFactory/LoadCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\TranslateFactory; +namespace Phalcon\Tests\Unit\Translate\TranslateFactory; -use Phalcon\Test\Fixtures\Traits\FactoryTrait; +use Phalcon\Tests\Fixtures\Traits\FactoryTrait; use Phalcon\Translate\Adapter\Gettext; use Phalcon\Translate\InterpolatorFactory; use Phalcon\Translate\TranslateFactory; diff --git a/tests/unit/Translate/TranslateFactory/NewInstanceCest.php b/tests/unit/Translate/TranslateFactory/NewInstanceCest.php index 62b6cafec98..d0b704301fc 100644 --- a/tests/unit/Translate/TranslateFactory/NewInstanceCest.php +++ b/tests/unit/Translate/TranslateFactory/NewInstanceCest.php @@ -11,9 +11,9 @@ declare(strict_types=1); -namespace Phalcon\Test\Unit\Translate\TranslateFactory; +namespace Phalcon\Tests\Unit\Translate\TranslateFactory; -use Phalcon\Test\Fixtures\Traits\TranslateCsvTrait; +use Phalcon\Tests\Fixtures\Traits\TranslateCsvTrait; use Phalcon\Translate\Adapter\AdapterInterface; use Phalcon\Translate\Adapter\Csv; use Phalcon\Translate\InterpolatorFactory;