function KernelTestBaseTest::testSetUp
Same name in this branch
- 11.x core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUp()
Same name in other branches
- 9 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUp()
- 8.9.x core/modules/simpletest/src/Tests/KernelTestBaseTest.php \Drupal\simpletest\Tests\KernelTestBaseTest::testSetUp()
- 8.9.x core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUp()
- 10 core/modules/pgsql/tests/src/Kernel/pgsql/KernelTestBaseTest.php \Drupal\Tests\pgsql\Kernel\pgsql\KernelTestBaseTest::testSetUp()
- 10 core/tests/Drupal/KernelTests/KernelTestBaseTest.php \Drupal\KernelTests\KernelTestBaseTest::testSetUp()
@covers ::setUp
File
-
core/
modules/ pgsql/ tests/ src/ Kernel/ pgsql/ KernelTestBaseTest.php, line 20
Class
- KernelTestBaseTest
- @coversDefaultClass \Drupal\KernelTests\KernelTestBase
Namespace
Drupal\Tests\pgsql\Kernel\pgsqlCode
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());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.