function FieldDefinitionTest::testBundle

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testBundle()
  2. 10 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testBundle()
  3. 9 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testBundle()
  4. 8.9.x core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::testBundle()

Tests bundle.

@legacy-covers ::setTargetBundle @legacy-covers ::getTargetBundle

Attributes

#[DataProvider('factoryTypeProvider')]

File

core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php, line 133

Class

FieldDefinitionTest
Unit test for the FieldDefinition class.

Namespace

Drupal\Tests\Core\Entity

Code

public function testBundle($factory_name) : void {
  $definition = $this->initializeFieldUsingFactory($factory_name);
  $bundle = $this->randomMachineName();
  $definition->setTargetBundle($bundle);
  $this->assertEquals($bundle, $definition->getTargetBundle());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.