public function ConnectionTest::testMakeComments in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::testMakeComments()
Test Connection::makeComments().
@dataProvider providerMakeComments
File
- core/
tests/ Drupal/ Tests/ Core/ Database/ ConnectionTest.php, line 259
Class
- ConnectionTest
- Tests the Connection class.
Namespace
Drupal\Tests\Core\DatabaseCode
public function testMakeComments($expected, $comment_array) {
$mock_pdo = $this
->createMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
$connection = new StubConnection($mock_pdo, []);
$this
->assertEquals($expected, $connection
->makeComment($comment_array));
}