function ModuleTestBase::assertModuleTablesDoNotExist
Assert that none of the tables defined in a module's hook_schema() exist.
Parameters
$module: The name of the module.
1 call to ModuleTestBase::assertModuleTablesDoNotExist()
- ConfigImportAllTest::testInstallUninstall in core/
modules/ config/ tests/ src/ Functional/ ConfigImportAllTest.php - Tests that a fixed set of modules can be installed and uninstalled.
File
-
core/
modules/ system/ tests/ src/ Functional/ Module/ ModuleTestBase.php, line 63
Class
- ModuleTestBase
- Helper class for module test cases.
Namespace
Drupal\Tests\system\Functional\ModuleCode
public function assertModuleTablesDoNotExist($module) {
$tables = array_keys(SchemaInspector::getTablesSpecification(\Drupal::moduleHandler(), $module));
$tables_exist = FALSE;
$schema = Database::getConnection()->schema();
foreach ($tables as $table) {
if ($schema->tableExists($table)) {
$tables_exist = TRUE;
}
}
$this->assertFalse($tables_exist, "None of the database tables defined by the {$module} module exist.");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.