public function ConnectionTest::testEscapeMethods in Drupal 8
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));
}