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

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

parent 946d2715
No related branches found
No related tags found
No related merge requests found
<?php <?php
namespace Drupal\Tests\Core\Database\Driver\mysql; namespace Drupal\Tests\mysql\Unit;
use Drupal\mysql\Driver\Database\mysql\Connection; use Drupal\mysql\Driver\Database\mysql\Connection;
use Drupal\Tests\UnitTestCase; use Drupal\Tests\UnitTestCase;
......
<?php <?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\Connection;
use Drupal\mysql\Driver\Database\mysql\Install\Tasks; use Drupal\mysql\Driver\Database\mysql\Install\Tasks;
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* @coversDefaultClass \Drupal\mysql\Driver\Database\mysql\Install\Tasks * @coversDefaultClass \Drupal\mysql\Driver\Database\mysql\Install\Tasks
* @group Database * @group Database
*/ */
class TasksTest extends UnitTestCase { class InstallTasksTest extends UnitTestCase {
/** /**
* A connection object prophecy. * A connection object prophecy.
......
<?php <?php
namespace Drupal\Tests\Core\Database\Driver\pgsql; namespace Drupal\Tests\pgsql\Unit;
use Drupal\pgsql\Driver\Database\pgsql\Schema; use Drupal\pgsql\Driver\Database\pgsql\Schema;
use Drupal\Tests\UnitTestCase; use Drupal\Tests\UnitTestCase;
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* @coversDefaultClass \Drupal\pgsql\Driver\Database\pgsql\Schema * @coversDefaultClass \Drupal\pgsql\Driver\Database\pgsql\Schema
* @group Database * @group Database
*/ */
class PostgresqlSchemaTest extends UnitTestCase { class SchemaTest extends UnitTestCase {
/** /**
* The PostgreSql DB connection. * The PostgreSql DB connection.
......
<?php <?php
namespace Drupal\Tests\Core\Database\Driver\sqlite; namespace Drupal\Tests\sqlite\Unit;
use Drupal\sqlite\Driver\Database\sqlite\Connection; use Drupal\sqlite\Driver\Database\sqlite\Connection;
use Drupal\Tests\Core\Database\Stub\StubPDO; 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