-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUS03.feature
26 lines (21 loc) · 1.01 KB
/
US03.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Feature: Account Verification
As a user
I want to fill out a form during account creation
So that I can verify my name and credibility
Scenario: Form Completed Successfully
Given the user wants to verify their account,
When the user fills out the verification form with all the required data,
Then the account verification process is initiated.
Examples:
| name | address | id_number |
| John Doe | 123 Main St | 987654321 |
| Jane Doe | 456 Elm St | 123456789 |
Scenario: Error Completing the Form
Given the user wants to verify their account,
When the user fills out the verification form without all the required data,
Then an error message is displayed requesting all mandatory fields to be filled.
Examples:
| name | address | id_number |
| John Doe | | 987654321 |
| | 456 Elm St | |
| Jane Doe | 789 Oak St | |