Issue #3152003 by Beakerboy, sanjayk, alexpott, daffie: EndOfTransactionQueriesTest does not include bootstrap.inc early enough for contrib database drivers
parent
20ee128084
commit
c71e7e4e57
|
@ -31,12 +31,14 @@ class EndOfTransactionQueriesTest extends KernelTestBase {
|
|||
* {@inheritdoc}
|
||||
*/
|
||||
protected function setUp(): void {
|
||||
parent::setUp();
|
||||
|
||||
// This can only be checked after installing Drupal as it requires functions
|
||||
// from bootstrap.inc.
|
||||
if (!class_exists($this->getDatabaseConnectionInfo()['default']['namespace'] . '\Connection')) {
|
||||
$this->markTestSkipped(sprintf('No logging override exists for the %s database driver. Create it, subclass this test class and override ::getDatabaseConnectionInfo().', $this->getDatabaseConnectionInfo()['default']['driver']));
|
||||
}
|
||||
|
||||
parent::setUp();
|
||||
|
||||
$this->installSchema('system', 'sequences');
|
||||
$this->installEntitySchema('entity_test');
|
||||
$this->installEntitySchema('user');
|
||||
|
|
Loading…
Reference in New Issue