public function UserAgentTest::testGetBestMatchingLangcode in Drupal 9
Same name and namespace in other branches
- 8 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\UtilityCode
public function testGetBestMatchingLangcode($accept_language, $expected) {
$result = UserAgent::getBestMatchingLangcode($accept_language, $this
->getLanguages(), $this
->getMappings());
$this
->assertSame($expected, $result);
}