protected function WorkflowCollectorTest::assertTransition in Workbench Moderation to Content Moderation 8.2
Asserts that a workflow type plugin has a specific transition.
Parameters
\Drupal\workflows\WorkflowTypeInterface $plugin: The workflow type plugin.
string $transition_id: The transition ID.
1 call to WorkflowCollectorTest::assertTransition()
- WorkflowCollectorTest::assertWorkflow in tests/
src/ Kernel/ WorkflowCollectorTest.php - Asserts various aspects of a workflow.
File
- tests/
src/ Kernel/ WorkflowCollectorTest.php, line 238
Class
- WorkflowCollectorTest
- @covers \Drupal\wbm2cm\WorkflowCollector @group wbm2cm
Namespace
Drupal\Tests\wbm2cm\KernelCode
protected function assertTransition(WorkflowTypeInterface $plugin, $transition_id) {
$this
->assertInstanceOf(TransitionInterface::class, $plugin
->getTransition($transition_id));
}