You are here

public function FormStateTest::testIsCached in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Form/FormStateTest.php \Drupal\Tests\Core\Form\FormStateTest::testIsCached()

@covers ::isCached

@dataProvider providerTestIsCached

File

core/tests/Drupal/Tests/Core/Form/FormStateTest.php, line 254
Contains \Drupal\Tests\Core\Form\FormStateTest.

Class

FormStateTest
@coversDefaultClass \Drupal\Core\Form\FormState

Namespace

Drupal\Tests\Core\Form

Code

public function testIsCached($cache_key, $no_cache_key, $expected) {
  $form_state = (new FormState())
    ->setFormState([
    'cache' => $cache_key,
    'no_cache' => $no_cache_key,
  ]);
  $form_state
    ->setMethod('POST');
  $this
    ->assertSame($expected, $form_state
    ->isCached());
  $form_state
    ->setMethod('GET');
  $this
    ->assertSame($expected, $form_state
    ->isCached());
}