function FormStateTest::providerTestIsCached

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestIsCached()
  2. 8.9.x core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestIsCached()
  3. 11.x core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::providerTestIsCached()

Provides test data for testIsCached().

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 267

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

public static function providerTestIsCached() {
    $data = [];
    $data[] = [
        TRUE,
        TRUE,
        FALSE,
    ];
    $data[] = [
        FALSE,
        TRUE,
        FALSE,
    ];
    $data[] = [
        FALSE,
        FALSE,
        FALSE,
    ];
    $data[] = [
        TRUE,
        FALSE,
        TRUE,
    ];
    $data[] = [
        TRUE,
        NULL,
        TRUE,
    ];
    $data[] = [
        FALSE,
        NULL,
        FALSE,
    ];
    return $data;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.