You are here

public function ComparatorTest::getTestData in Database Sanitize 7

File

vendor/symfony/finder/Tests/Comparator/ComparatorTest.php, line 59

Class

ComparatorTest

Namespace

Symfony\Component\Finder\Tests\Comparator

Code

public function getTestData() {
  return array(
    array(
      '<',
      '1000',
      array(
        '500',
        '999',
      ),
      array(
        '1000',
        '1500',
      ),
    ),
  );
}