Same name in other branches
- 8.x-1.x tests/src/Functional/EntityCloneContentTest.php \Drupal\Tests\entity_clone\Functional\EntityCloneContentTest::testContentReferenceConfigEntity()
Test content reference config entity.
Fichier
-
tests/
src/ Functional/ EntityCloneContentTest.php, line 100
Classe
- EntityCloneContentTest
- Create a content and test a clone.
Namespace
Drupal\Tests\entity_clone\FunctionalCode
public function testContentReferenceConfigEntity() {
$this->createEntityReferenceField('node', 'page', 'config_field_reference', 'Config field reference', 'taxonomy_vocabulary');
$node_title = $this->randomMachineName(8);
$node = Node::create([
'type' => 'page',
'title' => $node_title,
'config_field_reference' => 'tags',
]);
$node->save();
$this->drupalGet('entity_clone/node/' . $node->id());
$this->assertSession()
->elementNotExists('css', '#edit-recursive-nodepageconfig-field-reference');
}