'TestApp', 'encoding' => 'UTF-8', 'paths' => [ 'templates' => [ PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'templates' . DS, ], ], ]); Configure::write('debug', true); $cache = [ 'default' => [ 'engine' => 'File', 'path' => CACHE, ], '_cake_core_' => [ 'className' => 'File', 'prefix' => 'crud_myapp_cake_core_', 'path' => CACHE . 'persistent/', 'serialize' => true, 'duration' => '+10 seconds', ], '_cake_model_' => [ 'className' => 'File', 'prefix' => 'crud_my_app_cake_model_', 'path' => CACHE . 'models/', 'serialize' => 'File', 'duration' => '+10 seconds', ], ]; Cache::setConfig($cache); class_alias(AppController::class, 'App\Controller\AppController'); Plugin::getCollection()->add(new CakeProductsPlugin()); Chronos::setTestNow(Chronos::now()); if (!getenv('DB_URL')) { putenv('DB_URL=sqlite:///:memory:'); } ConnectionManager::setConfig('test', [ 'className' => Connection::class, 'url' => getenv('DB_URL') ?: null, 'timezone' => 'UTC', 'quoteIdentifiers' => false, 'cacheMetadata' => true, ]); /** * Load schema from a SQL dump file. * * If your plugin does not use database fixtures you can * safely delete this. * * If you want to support multiple databases, consider * using migrations to provide schema for your plugin, * and using \Migrations\TestSuite\Migrator to load schema. */ // Load a schema dump file. //(new SchemaLoader())->loadSqlFiles('tests/schema.sql', 'test'); $migrator = new Migrator(); $migrator->run(['plugin' => 'CakeProducts']);