Add tags to the post with PostBuilder

> Error: Call to undefined method Drupal\example\Builder\PostBuilder::setTags()
This commit is contained in:
Oliver Davies 2024-01-18 13:15:55 +00:00
parent 22d61485fd
commit 19f6f0287a

View file

@ -52,6 +52,7 @@ final class PostBuilderTest extends EntityKernelTestBase {
$node = PostBuilder::create()
->setTitle('test')
->setTags(['Drupal', 'PHP', 'Testing'])
->getPost();
self::assertInstanceOf(NodeInterface::class, $node);