public function ConnectionTest::testEscapeMethods in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\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 135 - Contains \Drupal\Tests\Core\Database\ConnectionTest.
Class
- ConnectionTest
- Tests the Connection class.
Namespace
Drupal\Tests\Core\DatabaseCode
public function testEscapeMethods($expected, $name) {
$mock_pdo = $this
->getMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
$connection = new StubConnection($mock_pdo, array());
$this
->assertEquals($expected, $connection
->escapeDatabase($name));
$this
->assertEquals($expected, $connection
->escapeTable($name));
$this
->assertEquals($expected, $connection
->escapeField($name));
$this
->assertEquals($expected, $connection
->escapeAlias($name));
}