You are here

public function CsrfTokenGeneratorTest::providerTestInvalidParameterTypes 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::providerTestInvalidParameterTypes()
  2. 10 core/tests/Drupal/Tests/Core/Access/CsrfTokenGeneratorTest.php \Drupal\Tests\Core\Access\CsrfTokenGeneratorTest::providerTestInvalidParameterTypes()

Provides data for testInvalidParameterTypes.

Return value

array An array of data used by the test.

File

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

Class

CsrfTokenGeneratorTest
Tests the CsrfTokenGenerator class.

Namespace

Drupal\Tests\Core\Access

Code

public function providerTestInvalidParameterTypes() {
  return [
    [
      NULL,
      new \stdClass(),
    ],
    [
      0,
      [],
    ],
    [
      '',
      [],
    ],
    [
      [],
      [],
    ],
  ];
}