public function ContentEntityBaseUnitTest::testIsTranslatable in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Entity/ContentEntityBaseUnitTest.php \Drupal\Tests\Core\Entity\ContentEntityBaseUnitTest::testIsTranslatable()
@covers ::isTranslatable
File
- core/
tests/ Drupal/ Tests/ Core/ Entity/ ContentEntityBaseUnitTest.php, line 294
Class
- ContentEntityBaseUnitTest
- @coversDefaultClass \Drupal\Core\Entity\ContentEntityBase @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testIsTranslatable() {
$this->entityTypeBundleInfo
->expects($this
->any())
->method('getBundleInfo')
->with($this->entityTypeId)
->will($this
->returnValue([
$this->bundle => [
'translatable' => TRUE,
],
]));
$this->languageManager
->expects($this
->any())
->method('isMultilingual')
->will($this
->returnValue(TRUE));
$this
->assertSame('en', $this->entity
->language()
->getId());
$this
->assertFalse($this->entity
->language()
->isLocked());
$this
->assertTrue($this->entity
->isTranslatable());
$this
->assertSame(LanguageInterface::LANGCODE_NOT_SPECIFIED, $this->entityUnd
->language()
->getId());
$this
->assertTrue($this->entityUnd
->language()
->isLocked());
$this
->assertFalse($this->entityUnd
->isTranslatable());
}