Unverified Commit d31a8c63 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3152003 by Beakerboy, sanjayk, alexpott, daffie:...

Issue #3152003 by Beakerboy, sanjayk, alexpott, daffie: EndOfTransactionQueriesTest does not include bootstrap.inc early enough for contrib database drivers
parent 8704d23f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -31,12 +31,14 @@ class EndOfTransactionQueriesTest extends KernelTestBase {
   * {@inheritdoc}
   */
  protected function setUp() {
    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');