You are here

public function UserAgentTest::testGetBestMatchingLangcode in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Utility/UserAgentTest.php \Drupal\Tests\Component\Utility\UserAgentTest::testGetBestMatchingLangcode()
  2. 9 core/tests/Drupal/Tests/Component/Utility/UserAgentTest.php \Drupal\Tests\Component\Utility\UserAgentTest::testGetBestMatchingLangcode()

Tests matching language from user agent.

@dataProvider providerTestGetBestMatchingLangcode @covers ::getBestMatchingLangcode

File

core/tests/Drupal/Tests/Component/Utility/UserAgentTest.php, line 73

Class

UserAgentTest
Tests bytes size parsing helper methods.

Namespace

Drupal\Tests\Component\Utility

Code

public function testGetBestMatchingLangcode($accept_language, $expected) {
  $result = UserAgent::getBestMatchingLangcode($accept_language, $this
    ->getLanguages(), $this
    ->getMappings());
  $this
    ->assertSame($expected, $result);
}