DatabaseTestBase.php

Same filename in this branch
  1. 9 core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php
Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php
  3. 10 core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php
  4. 10 core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php
  5. 11.x core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php
  6. 11.x core/tests/Drupal/KernelTests/Core/Database/DatabaseTestBase.php

Namespace

Drupal\Tests\system\Functional\Database

File

core/modules/system/tests/src/Functional/Database/DatabaseTestBase.php

View source
<?php

namespace Drupal\Tests\system\Functional\Database;

use Drupal\Core\Database\Database;
use Drupal\KernelTests\Core\Database\DatabaseTestSchemaDataTrait;
use Drupal\Tests\BrowserTestBase;

/**
 * Base class for databases database tests.
 */
abstract class DatabaseTestBase extends BrowserTestBase {
    use DatabaseTestSchemaDataTrait;
    
    /**
     * The database connection for testing.
     */
    protected $connection;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'database_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        $this->connection = Database::getConnection();
        $this->addSampleData();
    }

}

Classes

Title Deprecated Summary
DatabaseTestBase Base class for databases database tests.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.