You are here

public function CsrfTokenGeneratorTest::providerTestValidateParameterTypes in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Access/CsrfTokenGeneratorTest.php \Drupal\Tests\Core\Access\CsrfTokenGeneratorTest::providerTestValidateParameterTypes()

Provides data for testValidateParameterTypes.

Return value

array An array of data used by the test.

File

core/tests/Drupal/Tests/Core/Access/CsrfTokenGeneratorTest.php, line 158

Class

CsrfTokenGeneratorTest
Tests the CsrfTokenGenerator class.

Namespace

Drupal\Tests\Core\Access

Code

public function providerTestValidateParameterTypes() {
  return [
    [
      [],
      '',
    ],
    [
      TRUE,
      'foo',
    ],
    [
      0,
      'foo',
    ],
  ];
}