You are here

public function TokenTest::testTokenInvalidTokenException in Hook Event Dispatcher 8

Test Token invalid token exception.

File

tests/src/Unit/Token/TokenTest.php, line 28

Class

TokenTest
Class TokenTest.

Namespace

Drupal\Tests\hook_event_dispatcher\Unit\Token

Code

public function testTokenInvalidTokenException() {
  $this
    ->setExpectedException(\UnexpectedValueException::class);
  Token::create('', NULL, '');
}