Skip to content
Snippets Groups Projects
Verified Commit b70a8a15 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3260227 by mondrake: Move driver specific database Unit tests to their modules

(cherry picked from commit f4b955cf)
parent f59520e3
No related branches found
No related tags found
No related merge requests found
<?php
namespace Drupal\Tests\Core\Database\Driver\mysql;
namespace Drupal\Tests\mysql\Unit;
use Drupal\mysql\Driver\Database\mysql\Connection;
use Drupal\Tests\UnitTestCase;
......
<?php
namespace Drupal\Tests\Core\Database\Driver\mysql\install;
namespace Drupal\Tests\mysql\Unit;
use Drupal\mysql\Driver\Database\mysql\Connection;
use Drupal\mysql\Driver\Database\mysql\Install\Tasks;
......@@ -12,7 +12,7 @@
* @coversDefaultClass \Drupal\mysql\Driver\Database\mysql\Install\Tasks
* @group Database
*/
class TasksTest extends UnitTestCase {
class InstallTasksTest extends UnitTestCase {
/**
* A connection object prophecy.
......
<?php
namespace Drupal\Tests\Core\Database\Driver\pgsql;
namespace Drupal\Tests\pgsql\Unit;
use Drupal\pgsql\Driver\Database\pgsql\Schema;
use Drupal\Tests\UnitTestCase;
......@@ -11,7 +11,7 @@
* @coversDefaultClass \Drupal\pgsql\Driver\Database\pgsql\Schema
* @group Database
*/
class PostgresqlSchemaTest extends UnitTestCase {
class SchemaTest extends UnitTestCase {
/**
* The PostgreSql DB connection.
......
<?php
namespace Drupal\Tests\Core\Database\Driver\sqlite;
namespace Drupal\Tests\sqlite\Unit;
use Drupal\sqlite\Driver\Database\sqlite\Connection;
use Drupal\Tests\Core\Database\Stub\StubPDO;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment