function DatabaseConnectionTestCase::testConnectionClosing
7.x database_test.test | DatabaseConnectionTestCase::testConnectionClosing() |
Tests the closing of a database connection.
File
- drupal-7.x/
modules/ simpletest/ tests/ database_test.test, line 237
Class
- DatabaseConnectionTestCase
- Test connection management.
Code
function testConnectionClosing() {
// Open the default target so we have an object to compare.
$db1 = Database::getConnection('default', 'default');
// Try to close the the default connection, then open a new one.
Database::closeConnection('default', 'default');
$db2 = Database::getConnection('default', 'default');
// Opening a connection after closing it should yield an object different than the original.
$this->assertNotIdentical($db1, $db2, 'Opening the default connection after it is closed returns a new object.');
}