
| Current Path : /var/www/html/strat/web/core/tests/Drupal/KernelTests/Core/Entity/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/core/tests/Drupal/KernelTests/Core/Entity/EntityDeprecationTest.php |
<?php
declare(strict_types=1);
namespace Drupal\KernelTests\Core\Entity;
/**
* Tests the deprecations for the \Drupal\KernelTests\Core\Entity namespace.
*
* @group Entity
* @group legacy
*/
class EntityDeprecationTest extends EntityKernelTestBase {
/**
* Tests deprecation of \Drupal\KernelTests\Core\Entity\EntityKernelTestBase::createUser().
*/
public function testCreateUserDeprecation(): void {
$this->expectDeprecation('Calling createUser() with $values as the first parameter is deprecated in drupal:10.1.0 and will be removed from drupal:11.0.0. Use createUser(array $permissions = [], $name = NULL, $admin = FALSE, array $values = []) instead. See https://www.drupal.org/node/3330762');
$this->createUser(['uid' => 2]);
$this->expectDeprecation('Calling createUser() with $permissions as the second parameter is deprecated in drupal:10.1.0 and will be removed from drupal:11.0.0. Use createUser(array $permissions = [], $name = NULL, $admin = FALSE, array $values = []) instead. See https://www.drupal.org/node/3330762');
$this->createUser([], ['administer entity_test content']);
}
}