You are here

public function FileStorageTest::testWriteable in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php \Drupal\Tests\Component\PhpStorage\FileStorageTest::testWriteable()
  2. 9 core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php \Drupal\Tests\Component\PhpStorage\FileStorageTest::testWriteable()

@covers ::writeable

File

core/tests/Drupal/Tests/Component/PhpStorage/FileStorageTest.php, line 54

Class

FileStorageTest
@coversDefaultClass \Drupal\Component\PhpStorage\FileStorage @group Drupal @group PhpStorage

Namespace

Drupal\Tests\Component\PhpStorage

Code

public function testWriteable() {
  $php = new FileStorage($this->standardSettings);
  $this
    ->assertTrue($php
    ->writeable());
}