ConfigurableLanguageUnitTest.php

Same filename and directory in other branches
  1. 9 core/modules/language/tests/src/Unit/ConfigurableLanguageUnitTest.php
  2. 8.9.x core/modules/language/tests/src/Unit/ConfigurableLanguageUnitTest.php
  3. 10 core/modules/language/tests/src/Unit/ConfigurableLanguageUnitTest.php

Namespace

Drupal\Tests\language\Unit

File

core/modules/language/tests/src/Unit/ConfigurableLanguageUnitTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\language\Unit;

use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\Tests\UnitTestCase;

/**
 * Tests the ConfigurableLanguage entity class.
 *
 * @group language
 * @coversDefaultClass \Drupal\language\Entity\ConfigurableLanguage
 * @see \Drupal\language\Entity\ConfigurableLanguage.
 */
class ConfigurableLanguageUnitTest extends UnitTestCase {
  
  /**
   * @covers ::getDirection
   */
  public function testDirection() : void {
    // Direction of language writing, an integer. Usually either
    // ConfigurableLanguage::DIRECTION_LTR or
    // ConfigurableLanguage::DIRECTION_RTL.
    $configurableLanguage = new ConfigurableLanguage([
      'direction' => ConfigurableLanguage::DIRECTION_LTR,
    ], 'configurable_language');
    $this->assertEquals(ConfigurableLanguage::DIRECTION_LTR, $configurableLanguage->getDirection());
    // Test direction again, setting direction to RTL.
    $configurableLanguage = new ConfigurableLanguage([
      'direction' => ConfigurableLanguage::DIRECTION_RTL,
    ], 'configurable_language');
    $this->assertEquals(ConfigurableLanguage::DIRECTION_RTL, $configurableLanguage->getDirection());
  }
  
  /**
   * @covers ::getWeight
   * @covers ::setWeight
   */
  public function testWeight() : void {
    // The weight, an integer. Used to order languages with larger positive
    // weights sinking items toward the bottom of lists.
    $configurableLanguage = new ConfigurableLanguage([
      'weight' => -5,
    ], 'configurable_language');
    $this->assertEquals(-5, $configurableLanguage->getWeight());
    $this->assertEquals(13, $configurableLanguage->setWeight(13)
      ->getWeight());
  }

}

Classes

Title Deprecated Summary
ConfigurableLanguageUnitTest Tests the ConfigurableLanguage entity class.

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