You are here

public function StringBaseTest::testSaveWithoutStorage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/locale/tests/src/Unit/StringBaseTest.php \Drupal\Tests\locale\Unit\StringBaseTest::testSaveWithoutStorage()

@covers ::save

File

core/modules/locale/tests/src/Unit/StringBaseTest.php, line 18

Class

StringBaseTest
@coversDefaultClass \Drupal\locale\StringBase @group locale

Namespace

Drupal\Tests\locale\Unit

Code

public function testSaveWithoutStorage() {
  $string = new SourceString([
    'source' => 'test',
  ]);
  $this
    ->expectException(StringStorageException::class);
  $this
    ->expectExceptionMessage('The string cannot be saved because its not bound to a storage: test');
  $string
    ->save();
}