function AccessResultTest::testAccessAllowed

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\AccessResultTest::testAccessAllowed()
  2. 10 core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\AccessResultTest::testAccessAllowed()
  3. 9 core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\AccessResultTest::testAccessAllowed()
  4. 8.9.x core/tests/Drupal/Tests/Core/Access/AccessResultTest.php \Drupal\Tests\Core\Access\AccessResultTest::testAccessAllowed()

Tests access allowed.

@legacy-covers ::allowed @legacy-covers ::isAllowed @legacy-covers ::isForbidden @legacy-covers ::isNeutral

File

core/tests/Drupal/Tests/Core/Access/AccessResultTest.php, line 90

Class

AccessResultTest
Tests Drupal\Core\Access\AccessResult.

Namespace

Drupal\Tests\Core\Access

Code

public function testAccessAllowed() : void {
  $verify = function (AccessResult $access) : void {
    $this->assertTrue($access->isAllowed());
    $this->assertFalse($access->isForbidden());
    $this->assertFalse($access->isNeutral());
    $this->assertDefaultCacheability($access);
  };
  // Verify the object when using the ::allowed() convenience static method.
  $b = AccessResult::allowed();
  $verify($b);
}

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