function FormCacheTest::setUp
Overrides KernelTestBase::setUp
File
- 
              core/tests/ Drupal/ KernelTests/ Core/ Form/ FormCacheTest.php, line 46 
Class
- FormCacheTest
- Tests FormBuilder caching.
Namespace
Drupal\KernelTests\Core\FormCode
protected function setUp() : void {
  parent::setUp();
  $this->formBuildId = $this->randomMachineName();
  $this->form = [
    '#property' => $this->randomMachineName(),
  ];
  $this->formState = new FormState();
  $this->formState
    ->set('example', $this->randomMachineName());
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
