-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts.js
73 lines (68 loc) · 2.1 KB
/
accounts.js
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
68
69
70
71
module.exports = {
cases: [
{
// current
in: [
[
{ type: 'current', balance: 10000 },
{ type: 'credit', balance: 30000, limit: 20000 },
{ type: 'savings', balance: 40000 }
],
2000
],
out: [
{ type: 'current', balance: 8000 },
{ type: 'credit', balance: 30000, limit: 20000 },
{ type: 'savings', balance: 40000 }
]
},
//current, credit
{
in: [
[
{ type: 'current', balance: 10000 },
{ type: 'credit', balance: 30000, limit: 20000 },
{ type: 'savings', balance: 40000 }
],
13000
],
out: [
{ type: 'current', balance: 0 },
{ type: 'credit', balance: 27000, limit: 20000 },
{ type: 'savings', balance: 40000 }
]
},
//current, credit and limit
{
in: [
[
{ type: 'current', balance: 10000 },
{ type: 'credit', balance: 30000, limit: 20002 },
{ type: 'savings', balance: 40001 }
],
44000
],
out: [
{ type: 'current', balance: 0 },
{ type: 'credit', balance: 0, limit: 16002 },
{ type: 'savings', balance: 40001 }
]
},
// current, credit and limit, savings
{
in: [
[
{ type: 'current', balance: 10000 },
{ type: 'credit', balance: 30000, limit: 20000 },
{ type: 'savings', balance: 40005 }
],
63000
],
out: [
{ type: 'current', balance: 0 },
{ type: 'credit', balance: 0, limit: 0 },
{ type: 'savings', balance: 37005 }
]
}
]
};