function DoTrustedCallbackTraitTest::testException

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Security/DoTrustedCallbackTraitTest.php \Drupal\Tests\Core\Security\DoTrustedCallbackTraitTest::testException()
  2. 10 core/tests/Drupal/Tests/Core/Security/DoTrustedCallbackTraitTest.php \Drupal\Tests\Core\Security\DoTrustedCallbackTraitTest::testException()
  3. 11.x core/tests/Drupal/Tests/Core/Security/DoTrustedCallbackTraitTest.php \Drupal\Tests\Core\Security\DoTrustedCallbackTraitTest::testException()

@dataProvider errorTypeProvider

File

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

Class

DoTrustedCallbackTraitTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Security%21DoTrustedCallbackTrait.php/trait/DoTrustedCallbackTrait/9" title="Ensures that TrustedCallbackInterface can be enforced for callback methods." class="local">\Drupal\Core\Security\DoTrustedCallbackTrait</a> @group Security

Namespace

Drupal\Tests\Core\Security

Code

public function testException($callback) {
    $this->expectException(UntrustedCallbackException::class);
    $this->expectExceptionMessage('Drupal\\Tests\\Core\\Security\\UntrustedObject::callback is not trusted');
    $this->doTrustedCallback($callback, [], '%s is not trusted');
}

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