Initial commit

This commit is contained in:
github-classroom[bot]
2024-02-20 09:57:32 +00:00
committed by GitHub
commit bc35187221
20 changed files with 874 additions and 0 deletions
View File
View File
+6
View File
@@ -0,0 +1,6 @@
# - In this file, you have to write an E2E test on Bank project.
# - See, app/bank.py
# - For understanding purposes, you can interact with main.py
# - Create a real life usage scenario for this project and follow the order for testing components
# - Make sure that the test tests almost all of the functionalities of the project.
View File
+4
View File
@@ -0,0 +1,4 @@
# - In this file, you have to add your tests on Account module.
# - See, app/account.py
# - Test account creation and deletion
# - Use mocks
+5
View File
@@ -0,0 +1,5 @@
# - In this file, you have to add your tests on Customer module.
# - See, app/customer.py
# - Test customer creation, loading, updating and deletion
# - Use mocks
+5
View File
@@ -0,0 +1,5 @@
# - In this file, you have to add your tests on Database module.
# - See, app/database.py
# - Test most of the methods
# - Use mocks in proper parts
+5
View File
@@ -0,0 +1,5 @@
# - In this file, you have to add your tests on Transaction module.
# - See, app/transaction.py
# - Test transaction with different types - deposit, withdraw and transfer
# - Use mocks accordingly