-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_bank_account.py
58 lines (37 loc) · 1.56 KB
/
test_bank_account.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# tests/test_bank_account.py
import pytest
from playground.classes.bank_account import BankAccount
@pytest.fixture
def bank_account():
# Initialize a new BankAccount instance for each test.
return BankAccount(name="Richard Beninya", account_id=666, initial_balance=100.00)
def test_get_balance(bank_account):
assert bank_account.get_balance() == 100.00
def test_deposit(bank_account):
bank_account.deposit(50.00)
assert bank_account.get_balance() == 150.00
def test_withdraw(bank_account):
bank_account.withdraw(50.00)
assert bank_account.get_balance() == 50.00
def test_withdraw_insufficient_funds(bank_account):
with pytest.raises(ValueError, match="Insufficient Funds"):
bank_account.withdraw(200.00)
def test_withdraw_to_exact_zero(bank_account):
bank_account.withdraw(100.00)
assert bank_account.get_balance() == 0.00
def test_deposit_zero(bank_account):
bank_account.deposit(0.00)
assert bank_account.get_balance() == 100.00
def test_deposit_negative_amount(bank_account):
with pytest.raises(ValueError): # Assuming your implementation should handle this
bank_account.deposit(-10.00)
def test_multiple_transactions(bank_account):
bank_account.deposit(50.00)
bank_account.withdraw(25.00)
bank_account.deposit(10.00)
assert bank_account.get_balance() == 135.00
def test_large_deposit_withdrawal(bank_account):
bank_account.deposit(1_000_000.00)
assert bank_account.get_balance() == 1_000_100.00
bank_account.withdraw(1_000_000.00)
assert bank_account.get_balance() == 100.00