public function EntityQueryAlterTest::testRegularAccess in Group 8
Same name and namespace in other branches
- 2.0.x tests/src/Kernel/EntityQueryAlterTest.php \Drupal\Tests\group\Kernel\EntityQueryAlterTest::testRegularAccess()
Tests that regular access checks still work.
File
- tests/
src/ Kernel/ EntityQueryAlterTest.php, line 70
Class
- EntityQueryAlterTest
- Tests that Group properly checks access for grouped entities.
Namespace
Drupal\Tests\group\KernelCode
public function testRegularAccess() {
$entity_1 = $this
->createTestEntity();
$entity_2 = $this
->createTestEntity();
$this
->assertQueryAccessResult([
$entity_1
->id(),
$entity_2
->id(),
], 'Regular test entity query access still works.');
}