UnpublishByKeywordActionTest.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\Tests\node\Unit\ActionFile
-
core/
modules/ node/ tests/ src/ Unit/ Action/ UnpublishByKeywordActionTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\node\Unit\Action;
use Drupal\node\Plugin\Action\UnpublishByKeywordNode;
use Drupal\Tests\UnitTestCase;
/**
* @group node
* @group legacy
*/
class UnpublishByKeywordActionTest extends UnitTestCase {
/**
* Tests deprecation of \Drupal\node\Plugin\Action\UnpublishByKeywordNode.
*/
public function testUnpublishByKeywordAction() : void {
$this->expectDeprecation('Drupal\\node\\Plugin\\Action\\UnpublishByKeywordNode is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. Use \\Drupal\\action\\Plugin\\Action\\UnpublishByKeywordNode instead. See https://www.drupal.org/node/3424506');
$this->assertIsObject(new UnpublishByKeywordNode([], 'foo', []));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
UnpublishByKeywordActionTest | @group node @group legacy |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.