KernelTestBaseTest.php
Namespace
Drupal\Tests\pgsql\Kernel\pgsqlFile
-
core/
modules/ pgsql/ tests/ src/ Kernel/ pgsql/ KernelTestBaseTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\pgsql\Kernel\pgsql;
use Drupal\KernelTests\Core\Database\DriverSpecificKernelTestBase;
use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
/**
* Tests Drupal\KernelTests\KernelTestBase.
*/
class KernelTestBaseTest extends DriverSpecificKernelTestBase {
/**
* Tests set up.
*
* @legacy-covers ::setUp
*/
public function testSetUp() : void {
// Ensure that the database tasks have been run during set up.
$this->assertSame('on', $this->connection
->query("SHOW standard_conforming_strings")
->fetchField());
$this->assertSame('escape', $this->connection
->query("SHOW bytea_output")
->fetchField());
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
KernelTestBaseTest | Tests Drupal\KernelTests\KernelTestBase. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.