function FileStorageTest::testCRUD

Tests basic load/save/delete operations.

File

drupal/core/modules/system/lib/Drupal/system/Tests/PhpStorage/FileStorageTest.php, line 41
Definition of Drupal\system\Tests\PhpStorage\FileStorageTest.

Class

FileStorageTest
Tests the simple file storage.

Namespace

Drupal\system\Tests\PhpStorage

Code

function testCRUD() {
  $php = $this->storageFactory
    ->get('simpletest');
  $this
    ->assertIdentical(get_class($php), 'Drupal\\Component\\PhpStorage\\FileStorage');
  $this
    ->assertCRUD($php);
}