public function EntityKernelTestBaseTest::testSetUpCurrentUser in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Entity/EntityKernelTestBaseTest.php \Drupal\KernelTests\Core\Entity\EntityKernelTestBaseTest::testSetUpCurrentUser()
Tests that the current user is set up correctly.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityKernelTestBaseTest.php, line 23
Class
Namespace
Drupal\KernelTests\Core\EntityCode
public function testSetUpCurrentUser() {
$account = $this
->setUpCurrentUser();
$current_user = \Drupal::currentUser();
$this
->assertSame($account
->id(), $current_user
->id());
}