You are here

public function DoTrustedCallbackTraitTest::testUntrustedCallbacks in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Security/DoTrustedCallbackTraitTest.php \Drupal\Tests\Core\Security\DoTrustedCallbackTraitTest::testUntrustedCallbacks()

@covers ::doTrustedCallback @dataProvider providerTestUntrustedCallbacks

File

core/tests/Drupal/Tests/Core/Security/DoTrustedCallbackTraitTest.php, line 49

Class

DoTrustedCallbackTraitTest
@coversDefaultClass \Drupal\Core\Security\DoTrustedCallbackTrait @group Security

Namespace

Drupal\Tests\Core\Security

Code

public function testUntrustedCallbacks(callable $callback, $extra_trusted_interface = NULL) {
  $this
    ->expectException(UntrustedCallbackException::class);
  $this
    ->doTrustedCallback($callback, [], '%s is not trusted', TrustedCallbackInterface::THROW_EXCEPTION, $extra_trusted_interface);
}