view core/modules/locale/tests/src/Unit/StringBaseTest.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 129ea1e6d783
children
line wrap: on
line source
<?php

namespace Drupal\Tests\locale\Unit;

use Drupal\locale\SourceString;
use Drupal\locale\StringStorageException;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\locale\StringBase
 * @group locale
 */
class StringBaseTest extends UnitTestCase {

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

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

}