protected function UserAuthTest::setUp in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::setUp()
- 9 core/modules/user/tests/src/Unit/UserAuthTest.php \Drupal\Tests\user\Unit\UserAuthTest::setUp()
File
- core/modules/user/tests/src/Unit/UserAuthTest.php, line 68
Class
- UserAuthTest
- @coversDefaultClass \Drupal\user\UserAuth
@group user
Namespace
Drupal\Tests\user\Unit
Code
protected function setUp() : void {
$this->userStorage = $this
->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
$entity_type_manager = $this
->createMock(EntityTypeManagerInterface::class);
$entity_type_manager
->expects($this
->any())
->method('getStorage')
->with('user')
->will($this
->returnValue($this->userStorage));
$this->passwordService = $this
->createMock('Drupal\\Core\\Password\\PasswordInterface');
$this->testUser = $this
->getMockBuilder('Drupal\\user\\Entity\\User')
->disableOriginalConstructor()
->onlyMethods([
'id',
'setPassword',
'save',
'getPassword',
])
->getMock();
$this->userAuth = new UserAuth($entity_type_manager, $this->passwordService);
}