You are a developer and looking for Shopware projects?
Apply Now!
PasswordHasherListener example
$this
->
markTestSkipped
(
'PasswordAuthenticatedUserInterface not available.'
)
;
}
$this
->passwordHasher =
$this
->
createMock
(
UserPasswordHasher::
class
)
;
parent::
setUp
(
)
;
}
protected
function
getExtensions
(
)
{
return
array_merge
(
parent::
getExtensions
(
)
,
[
new
PasswordHasherExtension
(
new
PasswordHasherListener
(
$this
->passwordHasher
)
)
,
]
)
;
}
public
function
testPasswordHashSuccess
(
)
{
$user
=
new
User
(
)
;
$plainPassword
= 'PlainPassword';
$hashedPassword
= 'HashedPassword';
$this
->passwordHasher