forked from apache/fineract
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FINERACT-2070: E2E testcase migration - feature files - pt5
- Loading branch information
1 parent
ab1a634
commit 975a176
Showing
7 changed files
with
1,623 additions
and
470 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
651 changes: 444 additions & 207 deletions
651
fineract-e2e-tests-runner/src/test/resources/features/LoanReAging.feature
Large diffs are not rendered by default.
Oops, something went wrong.
347 changes: 334 additions & 13 deletions
347
fineract-e2e-tests-runner/src/test/resources/features/LoanReAmortization.feature
Large diffs are not rendered by default.
Oops, something went wrong.
980 changes: 762 additions & 218 deletions
980
fineract-e2e-tests-runner/src/test/resources/features/LoanRepayment.feature
Large diffs are not rendered by default.
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
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
36 changes: 36 additions & 0 deletions
36
fineract-e2e-tests-runner/src/test/resources/features/SavingsAccount.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,36 @@ | ||
@SavingsAccount | ||
Feature: SavingsAccount | ||
|
||
# TODO unskip and check when PS-1088 is done | ||
@Skip @TestRailId:C2438 | ||
Scenario: As a user I would like to Deposit to my savings account | ||
When Admin sets the business date to "1 June 2022" | ||
When Admin creates a client with random data | ||
And Client creates a new EUR savings account with "1 June 2022" submitted on date | ||
And Approve EUR savings account on "1 June 2022" date | ||
And Activate EUR savings account on "1 June 2022" date | ||
And Client successfully deposits 1000 EUR to the savings account on "1 June 2022" date | ||
|
||
@Skip @TestRailId:C2439 | ||
Scenario: As a user I would like to Withdraw from my savings account | ||
When Admin sets the business date to "1 June 2022" | ||
When Admin creates a client with random data | ||
And Client creates a new EUR savings account with "1 June 2022" submitted on date | ||
And Approve EUR savings account on "1 June 2022" date | ||
And Activate EUR savings account on "1 June 2022" date | ||
And Client successfully deposits 1000 EUR to the savings account on "1 June 2022" date | ||
And Client successfully withdraw 1000 EUR from the savings account on "1 June 2022" date | ||
|
||
@Skip @TestRailId:C2440 | ||
Scenario: As a user I would like to create an EUR and USD Savings accounts and make deposit and withdraw events | ||
When Admin sets the business date to "1 June 2022" | ||
When Admin creates a client with random data | ||
And Client creates a new EUR savings account with "1 June 2022" submitted on date | ||
And Approve EUR savings account on "1 June 2022" date | ||
And Activate EUR savings account on "1 June 2022" date | ||
And Client creates a new USD savings account with "1 June 2022" submitted on date | ||
And Approve USD savings account on "1 June 2022" date | ||
And Activate USD savings account on "1 June 2022" date | ||
And Client successfully deposits 1000 EUR to the savings account on "1 June 2022" date | ||
And Client successfully withdraw 1000 EUR from the savings account on "1 June 2022" date | ||
And Client successfully deposits 1000 USD to the savings account on "1 June 2022" date |