function FormStateDecoratorBaseTest::testIsCached

Tests is cached.

@legacy-covers ::isCached

Attributes

#[DataProvider('providerSingleBooleanArgument')]

File

core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php, line 155

Class

FormStateDecoratorBaseTest
Tests Drupal\Core\Form\FormStateDecoratorBase.

Namespace

Drupal\Tests\Core\Form

Code

public function testIsCached($cache) : void {
  $this->decoratedFormState
    ->isCached()
    ->willReturn($cache)
    ->shouldBeCalled();
  $this->assertSame($cache, $this->formStateDecoratorBase
    ->isCached());
}

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