public function ContentEntityBaseUnitTest::testIsTranslatable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 284 - Contains \Drupal\Tests\Core\Entity\ContentEntityBaseUnitTest.
Class
- ContentEntityBaseUnitTest
- @coversDefaultClass \Drupal\Core\Entity\ContentEntityBase @group Entity @group Access
Namespace
Drupal\Tests\Core\EntityCode
public function testIsTranslatable() {
$this->entityManager
->expects($this
->any())
->method('getBundleInfo')
->with($this->entityTypeId)
->will($this
->returnValue(array(
$this->bundle => array(
'translatable' => TRUE,
),
)));
$this->languageManager
->expects($this
->any())
->method('isMultilingual')
->will($this
->returnValue(TRUE));
$this
->assertTrue($this->entity
->language()
->getId() == 'en');
$this
->assertFalse($this->entity
->language()
->isLocked());
$this
->assertTrue($this->entity
->isTranslatable());
$this
->assertTrue($this->entityUnd
->language()
->getId() == LanguageInterface::LANGCODE_NOT_SPECIFIED);
$this
->assertTrue($this->entityUnd
->language()
->isLocked());
$this
->assertFalse($this->entityUnd
->isTranslatable());
}