-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathTestConstants.java
More file actions
21 lines (17 loc) · 912 Bytes
/
TestConstants.java
File metadata and controls
21 lines (17 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public class TestConstants {
// -------------------- ACCOUNT TEST DATA ---------------------------//
public static final int INITIAL_ACCOUNT_MONEY = 10000;
public static final int DEPOSIT_ACCOUNT_MONEY = 100;
public static final int WITHDRAW_ACCOUNT_MONEY = 200;
public static final int AFTER_DEPOSIT_ACCOUNT_MONEY = 10100;
public static final int AFTER_WITHDRAW_ACCOUNT_MONEY = 9800;
public static final int WITHDRAW_INSUFFICIENT_ACCOUNT_MONEY = 11000;
// --------------------- BANK TEST DATA --------------------- //
public static final int ACCOUNT_KEY_1 = 1;
public static final int ACCOUNT_KEY_2 = 2;
public static final int ACCOUNT_KEY_3 = 3;
public static final int NOT_EXISTING_ACCOUNT_KEY = 5;
public static final int ACCOUNT_MONEY_1 = 1000;
public static final int ACCOUNT_MONEY_2 = 1500;
public static final int ACCOUNT_MONEY_3 = 2000;
}