public function DoTrustedCallbackTraitTest::testUntrustedCallbacks in Drupal 9
Same name and namespace in other branches
- 8 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 48
Class
- DoTrustedCallbackTraitTest
- @coversDefaultClass \Drupal\Core\Security\DoTrustedCallbackTrait @group Security
Namespace
Drupal\Tests\Core\SecurityCode
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);
}