function StateTest::testGetTransitionToException

Same name and namespace in other branches
  1. 10 core/modules/workflows/tests/src/Unit/StateTest.php \Drupal\Tests\workflows\Unit\StateTest::testGetTransitionToException()
  2. 9 core/modules/workflows/tests/src/Unit/StateTest.php \Drupal\Tests\workflows\Unit\StateTest::testGetTransitionToException()
  3. 8.9.x core/modules/workflows/tests/src/Unit/StateTest.php \Drupal\Tests\workflows\Unit\StateTest::testGetTransitionToException()

Tests get transition to exception.

@legacy-covers ::getTransitionTo

File

core/modules/workflows/tests/src/Unit/StateTest.php, line 81

Class

StateTest
Tests Drupal\workflows\State.

Namespace

Drupal\Tests\workflows\Unit

Code

public function testGetTransitionToException() : void {
  $this->expectException(\InvalidArgumentException::class);
  $this->expectExceptionMessage("Can not transition to 'published' state");
  $workflow_type = new TestType([], '', []);
  $workflow_type->addState('draft', 'Draft');
  $state = $workflow_type->getState('draft');
  $state->getTransitionTo('published');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.