You are here

public function ConnectionTest::providerFilterComments in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerFilterComments()

Dataprovider for testFilterComments().

Return value

array Array of arrays with the following elements:

  • Expected filtered comment.
  • Comment to filter.

File

core/tests/Drupal/Tests/Core/Database/ConnectionTest.php, line 285
Contains \Drupal\Tests\Core\Database\ConnectionTest.

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function providerFilterComments() {
  return array(
    array(
      '',
      '',
    ),
    array(
      'Exploit  *  / DROP TABLE node. --',
      'Exploit * / DROP TABLE node; --',
    ),
    array(
      'Exploit  * / DROP TABLE node. --',
      'Exploit */ DROP TABLE node; --',
    ),
  );
}