/**
* Tests basic load/save/delete operations.
*
* @covers ::load
* @covers ::save
* @covers ::exists
* @covers ::delete
*/
public function testCRUD() { $php =
new FileStorage($this->standardSettings
);
$this->
assertCRUD($php);
} /**
* @covers ::writeable
* @group legacy
*/
public function testWritable() { $this->
expectDeprecation('Drupal\Component\PhpStorage\FileStorage::writeable() is deprecated in drupal:10.1.0 and will be removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3155413'
);
$php =
new FileStorage($this->standardSettings
);
$this->
assertTrue($php->
writeable());
}