-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
92 additions
and
93 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
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
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
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
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
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
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
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
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
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
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
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
45 changes: 0 additions & 45 deletions
45
...see/survey/datacollectionmanagement/query/controller/CheckHabilitationControllerTest.java
This file was deleted.
Oops, something went wrong.
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
41 changes: 41 additions & 0 deletions
41
src/test/resources/integration/query/search_contact.feature
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Feature: search for a contact | ||
|
||
I am searching for a specific contact | ||
|
||
Background: Contact | ||
|
||
| Nom | Prénom | Idep | Adresse mél | | ||
|--------|--------|--------|--------------------| | ||
| Doe | John | JD2024 | john.doe@gmail.com | | ||
| Durant | Doeris | DD1234 | dd1995@orange.fr | | ||
| DOEDOE | johnny | ABCD12 | jojodu94@yahoo.fr | | ||
| | | DOE203 | | | ||
| BOOP | Betty | COCO54 | betty.boop@free.fr | | ||
|
||
Scenario: search for John Doe | ||
Given I am a survey manager who's searching for "John Doe" | ||
When i type "Joh" in the name and surname searching area | ||
Then i found "Johnny" | ||
And i found "John" | ||
|
||
Scenario: search for a contact who has a name or surname beginning by Doe | ||
Given I am a survey manager who's searching for "Doe" | ||
When i type "Doe" in the name and surname searching area | ||
Then i found "Johnny" | ||
And i found "John" | ||
And i found "Doeris" | ||
|
||
Scenario: search for a contact who does not exist | ||
Given I am a survey manager who's searching for "Camille" | ||
When i type "Cam" in the name and surname searching area | ||
Then i found nothing | ||
|
||
Scenario: search for betty boop | ||
Given I am a survey manager who's searching for "Betty Boop" | ||
When i type "bet" in the email searching area | ||
Then i found "betty.boop@free.fr" | ||
|
||
Scenario: search for John Doe by his "idep" | ||
Given I am a survey manager who's searching for "John Doe" | ||
When i type "JD2" in the idep searching area | ||
Then i found "JD2024" |