Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::testCustomStorage()
  2. 9 core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::testCustomStorage()

Tests custom storage.

@covers ::hasCustomStorage @covers ::setCustomStorage

File

core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php, line 346

Class

BaseFieldDefinitionTest
Unit test for BaseFieldDefinition.

Namespace

Drupal\Tests\Core\Entity

Code

public function testCustomStorage() {
  $definition = BaseFieldDefinition::create($this->fieldType);
  $this
    ->assertFalse($definition
    ->hasCustomStorage());
  $definition
    ->setCustomStorage(TRUE);
  $this
    ->assertTrue($definition
    ->hasCustomStorage());
  $definition
    ->setCustomStorage(FALSE);
  $this
    ->assertFalse($definition
    ->hasCustomStorage());
}