function StringBaseTest::testDeleteWithoutStorage

Same name and namespace in other branches
  1. 9 core/modules/locale/tests/src/Unit/StringBaseTest.php \Drupal\Tests\locale\Unit\StringBaseTest::testDeleteWithoutStorage()
  2. 10 core/modules/locale/tests/src/Unit/StringBaseTest.php \Drupal\Tests\locale\Unit\StringBaseTest::testDeleteWithoutStorage()
  3. 11.x core/modules/locale/tests/src/Unit/StringBaseTest.php \Drupal\Tests\locale\Unit\StringBaseTest::testDeleteWithoutStorage()

@covers ::delete

File

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

Class

StringBaseTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21locale%21src%21StringBase.php/class/StringBase/8.9.x" title="Defines the locale string base class." class="local">\Drupal\locale\StringBase</a> @group locale

Namespace

Drupal\Tests\locale\Unit

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.