public function EntityUnitTest::testLanguage in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testLanguage()
- 10 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testLanguage()
@covers ::language
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUnitTest.php, line 216
Class
- EntityUnitTest
- @coversDefaultClass \Drupal\Core\Entity\EntityBase @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testLanguage() {
$this->entityType
->expects($this
->any())
->method('getKey')
->willReturnMap([
[
'langcode',
'langcode',
],
]);
$this
->assertSame('en', $this->entity
->language()
->getId());
}