forked from kiiadi/abc-bank-c-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccountTest.cs
67 lines (59 loc) · 1.97 KB
/
AccountTest.cs
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
59
60
61
62
63
64
65
66
67
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbcBank.Test
{
[TestFixture]
public class AccountTest
{
public void Test_Deposit()
{
SavingsAccount svgAccount = new SavingsAccount();
svgAccount.Deposit(100);
Assert.AreEqual(1, svgAccount.transactions.Count);
}
[Test]
[ExpectedException]
public void Test_DepositNegativeAmount()
{
SavingsAccount svgAccount = new SavingsAccount();
svgAccount.Deposit(-100);
Assert.AreEqual(1, svgAccount.transactions.Count);
}
[Test]
public void Test_Withdraw()
{
SavingsAccount svgAccount = new SavingsAccount();
svgAccount.Deposit(100);
svgAccount.Withdraw(100);
Assert.AreEqual(2, svgAccount.transactions.Count);
}
[Test]
[ExpectedException(typeof(ArgumentException), ExpectedMessage = "amount to withdraw is more than your current balance")]
public void Test_WithdrawMoreThanBalance()
{
SavingsAccount svgAccount = new SavingsAccount();
svgAccount.Withdraw(100);
Assert.AreEqual(1, svgAccount.transactions.Count);
}
[Test]
[ExpectedException(typeof(ArgumentException), ExpectedMessage = "amount must be greater than zero")]
public void Test_WithdrawNegativeAmount()
{
SavingsAccount svgAccount = new SavingsAccount();
svgAccount.Withdraw(-100);
Assert.AreEqual(1, svgAccount.transactions.Count);
}
[Test]
public void Test_SumTransactions()
{
SavingsAccount acc1 = new SavingsAccount();
acc1.Deposit(100);
acc1.Deposit(200);
Assert.AreEqual(300, acc1.SumTransactions());
}
}
}