-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AYS-551 | conversation test resolved
- Loading branch information
1 parent
8803a79
commit fed26d9
Showing
2 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -573,7 +573,8 @@ void givenInvalidAdminRegisterApplicationCompleteRequestWithParametrizedInvalidN | |
"[email protected]", | ||
"[email protected]", | ||
" [email protected]", | ||
"[email protected] " | ||
"[email protected] ", | ||
" [email protected] " | ||
}) | ||
void givenInvalidAdminRegisterApplicationCompleteRequestWithParametrizedInvalidEmails_whenEmailsAreNotValid_thenReturnValidationError(String invalidEmail) throws Exception { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,7 +142,8 @@ void givenInvalidLoginRequestWithInvalidPassword_whenPasswordDoesNotValid_thenRe | |
"[email protected]", | ||
"[email protected]", | ||
" [email protected]", | ||
"[email protected] " | ||
"[email protected] ", | ||
" [email protected] " | ||
}) | ||
void givenInvalidLoginRequestWithInvalidEmailAddress_whenEmailsAreNotValid_thenReturnValidationError(String mockEmailAddress) throws Exception { | ||
// Given | ||
|
@@ -282,7 +283,8 @@ void givenValidForgotPasswordRequest_whenSendPasswordCreateMail_thenReturnSucces | |
"[email protected]", | ||
"[email protected]", | ||
" [email protected]", | ||
"[email protected] " | ||
"[email protected] ", | ||
" [email protected] " | ||
}) | ||
void givenForgotPasswordRequestWithInvalidEmailAddress_whenEmailDoesNotValid_thenReturnValidationError(String mockEmailAddress) throws Exception { | ||
|
||
|