function ConnectionTest::testEscapeMethods
Test the various escaping methods.
All tested together since they're basically the same method with different names.
@dataProvider providerEscapeMethods @todo Separate test method for each escape method?
File
-
core/
tests/ Drupal/ Tests/ Core/ Database/ ConnectionTest.php, line 131
Class
- ConnectionTest
- Tests the Connection class.
Namespace
Drupal\Tests\Core\DatabaseCode
public function testEscapeMethods($expected, $name) {
$mock_pdo = $this->createMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
$connection = new StubConnection($mock_pdo, []);
$this->assertEquals($expected, $connection->escapeDatabase($name));
$this->assertEquals($expected, $connection->escapeTable($name));
$this->assertEquals($expected, $connection->escapeField($name));
$this->assertEquals($expected, $connection->escapeAlias($name));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.