function FieldDefinitionTest::testFieldTranslatable
Tests field translatable methods.
@covers ::isTranslatable
      
    
@covers ::setTranslatable
      
    
@dataProvider factoryTypeProvider
File
- 
              core/
tests/ Drupal/ Tests/ Core/ Entity/ FieldDefinitionTest.php, line 239  
Class
- FieldDefinitionTest
 - Unit test for the FieldDefinition class.
 
Namespace
Drupal\Tests\Core\EntityCode
public function testFieldTranslatable($factory_name) : void {
  $definition = $this->initializeFieldUsingFactory($factory_name);
  $this->assertFalse($definition->isTranslatable());
  $definition->setTranslatable(TRUE);
  $this->assertTrue($definition->isTranslatable());
  $definition->setTranslatable(FALSE);
  $this->assertFalse($definition->isTranslatable());
  $this->storageSupportsTranslation = FALSE;
  $definition->setTranslatable(TRUE);
  $this->assertFalse($this->storageDefinition
    ->isTranslatable());
  $this->assertFalse($definition->isTranslatable());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.