
| Current Path : /var/www/html/12park/web/modules/contrib/webform/tests/src/Functional/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/web/modules/contrib/webform/tests/src/Functional/WebformEntityStorageTest.php |
<?php
namespace Drupal\Tests\webform\Functional;
/**
* Tests for webform storage tests.
*
* @group webform
*/
class WebformEntityStorageTest extends WebformBrowserTestBase {
/**
* Test webform storage.
*/
public function testWebformEntityStorage() {
// Check webform entity storage caching.
// @see \Drupal\webform\WebformEntityStorage::load
/** @var \Drupal\webform\WebformEntityStorage $storage */
$storage = \Drupal::entityTypeManager()->getStorage('webform');
$webform = $storage->load('contact');
$webform->cached = TRUE;
// Check that load (single) has the custom 'cached' property.
$this->assertEquals($webform->cached, $storage->load('contact')->cached);
// Check that loadMultiple does not have the custom 'cached' property.
// The below test will fail when and if
// 'Issue #1885830: Enable static caching for config entities.'
// is resolved.
$this->assertFalse(isset($storage->loadMultiple(['contact'])->cached));
}
}