You are here

class LocaleTranslationTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/locale/tests/src/Unit/LocaleTranslationTest.php \Drupal\Tests\locale\Unit\LocaleTranslationTest

@coversDefaultClass \Drupal\locale\LocaleTranslation @group locale

Hierarchy

Expanded class hierarchy of LocaleTranslationTest

File

core/modules/locale/tests/src/Unit/LocaleTranslationTest.php, line 18
Contains \Drupal\Tests\locale\Unit\LocaleTranslationTest.

Namespace

Drupal\Tests\locale\Unit
View source
class LocaleTranslationTest extends UnitTestCase {

  /**
   * A mocked storage to use when instantiating LocaleTranslation objects.
   *
   * @var \PHPUnit_Framework_MockObject_MockObject
   */
  protected $storage;

  /**
   * A mocked language manager built from LanguageManagerInterface.
   *
   * @var \Drupal\Core\Language\LanguageManagerInterface|\PHPUnit_Framework_MockObject_MockObject
   */
  protected $languageManager;

  /**
   * The request stack.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->storage = $this
      ->getMock('Drupal\\locale\\StringStorageInterface');
    $this->cache = $this
      ->getMock('Drupal\\Core\\Cache\\CacheBackendInterface');
    $this->lock = $this
      ->getMock('Drupal\\Core\\Lock\\LockBackendInterface');
    $this->languageManager = $this
      ->getMock('Drupal\\Core\\Language\\LanguageManagerInterface');
    $this->requestStack = new RequestStack();
  }

  /**
   * Tests for \Drupal\locale\LocaleTranslation::destruct().
   */
  public function testDestruct() {
    $translation = new LocaleTranslation($this->storage, $this->cache, $this->lock, $this
      ->getConfigFactoryStub(), $this->languageManager, $this->requestStack);

    // Prove that destruction works without errors when translations are empty.
    $this
      ->assertAttributeEmpty('translations', $translation);
    $translation
      ->destruct();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LocaleTranslationTest::$languageManager protected property A mocked language manager built from LanguageManagerInterface.
LocaleTranslationTest::$requestStack protected property The request stack.
LocaleTranslationTest::$storage protected property A mocked storage to use when instantiating LocaleTranslation objects.
LocaleTranslationTest::setUp protected function Overrides UnitTestCase::setUp
LocaleTranslationTest::testDestruct public function Tests for \Drupal\locale\LocaleTranslation::destruct().
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root.
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName protected function Mocks a block with a block plugin.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.