function RegressionTest::testDBTableExists

Tests the db_table_exists() function.

File

drupal/core/modules/system/lib/Drupal/system/Tests/Database/RegressionTest.php, line 50
Definition of Drupal\system\Tests\Database\RegressionTest.

Class

RegressionTest
Tests for database regressions.

Namespace

Drupal\system\Tests\Database

Code

function testDBTableExists() {
  $this
    ->assertIdentical(TRUE, db_table_exists('test'), 'Returns true for existent table.');
  $this
    ->assertIdentical(FALSE, db_table_exists('nosuchtable'), 'Returns false for nonexistent table.');
}