-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUS04.feature
More file actions
36 lines (29 loc) · 1.48 KB
/
US04.feature
File metadata and controls
36 lines (29 loc) · 1.48 KB
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
27
28
29
30
31
32
33
34
35
36
Feature: Company Registration
As a financial accountant user
I want to create an account using my corporate email
So that I can register my company
Scenario: Company Registration
Given the financial accountant user accesses the company account creation form,
When the user enters the corporate email address provided by the company and a password,
Then the company is registered and the user is redirected to the homepage.
Examples:
| email | password |
| accountant@company.com | pass123 |
| finance@business.com | pass456 |
Scenario: Registration without Data
Given the financial accountant user accesses the company account creation form,
When the user does not enter the corporate email address or a password,
Then an error message is displayed indicating that the data needs to be entered.
Examples:
| email | password |
| | pass123 |
| accountant | |
| | |
Scenario: Registration with Invalid Password
Given the financial accountant user accesses the company account creation form,
When the user enters the corporate email address provided by the company and an invalid password,
Then an error message is displayed indicating that the password is invalid.
Examples:
| email | password |
| accountant@company.com | short |
| finance@business.com | 123 |