WorkflowValidationTest.php
Same filename in other branches
Namespace
Drupal\Tests\workflows\KernelFile
-
core/
modules/ workflows/ tests/ src/ Kernel/ WorkflowValidationTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\workflows\Kernel;
use Drupal\KernelTests\Core\Config\ConfigEntityValidationTestBase;
use Drupal\workflows\Entity\Workflow;
/**
* Tests validation of workflow entities.
*
* @group workflows
* @group #slow
*/
class WorkflowValidationTest extends ConfigEntityValidationTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'workflows',
'workflow_type_test',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->entity = Workflow::create([
'id' => 'test',
'label' => 'Test',
'type' => 'workflow_type_test',
]);
$this->entity
->save();
}
/**
* Tests that the workflow type plugin is validated.
*/
public function testTypePluginIsValidated() : void {
$this->entity
->set('type', 'non_existent');
$this->assertValidationErrors([
'type' => "The 'non_existent' plugin does not exist.",
]);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
WorkflowValidationTest | Tests validation of workflow entities. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.