private UserSecurityDto userSecurityDto;
@BeforeMethod
public void init() throws NotFoundException {
initMocks(this);
userSecurityDto = new UserSecurityDto();
when(userService.getCurrentUser()).thenReturn(
new JCUser(PROFILE_OWNER_NAME, "email", userCurrentPassword));
userSecurityDto.setUserId(1L);
validator = new ChangedPasswordValidator(userService, encryptionService);