Skip to content

Commit

Permalink
improve parent message
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjingyu committed May 27, 2024
1 parent de1e8d5 commit 3280ab9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 89 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ Our project is organized into five main folders:
To run the virtual-bank software, follow these steps:

1. **Using JAR Package:**
- If you have a Java environment with JDK 17 or later installed, you can run the program from the command line.
- Open a terminal in the folder `virtual-bank-main`.
- Enter the following command:
```bash
java --enable-preview -cp virtual-bank-main.jar Controller.Start
```
- The software will start without any further configuration.
- If you have a Java environment with JDK 17 or later installed, you can run the program from the command line.
- Open a terminal in the folder `virtual-bank-main`.
- Enter the following command:
```bash
java --enable-preview -cp virtual-bank-main.jar Controller.Start
```
- The software will start without any further configuration.

2. **Using Clickable Executable (Virtual.exe):**
- If you don't have the Java JDK, you need to download JDK17. Then, name the JDK flie as "jdk-17.0.11" and put it in the virtual-bank-main library. Simply click on the `Virtual_Bank.exe` file to run the software directly.
- If you don't have the Java JDK, you need to download JDK17. Then, name the JDK flie as "jdk-17.0.11" and put it in the virtual-bank-main library. Simply click on the `Virtual_Bank.exe` file to run the software directly.
## Acknowledgement
As the team leader, I would like to express my gratitude to all my team members who
Expand Down
12 changes: 0 additions & 12 deletions src/Test/TestEntity/Bank/HistoryTransactionListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,6 @@ public void testGetAllTransactions() {
assertEquals(transaction2, transactions.get(1));
}

@Test
public void testGetDateList() {
HistoryTransaction transaction1 = new HistoryTransaction("SA1", "CA1", 80.0, "2023:05:21 15:30:45");
HistoryTransaction transaction2 = new HistoryTransaction("CA2", "Shop", -5.0, "2023:05:22 10:20:30");
transactionList.addTransaction(transaction1);
transactionList.addTransaction(transaction2);

List<String> dates = transactionList.getDateList();
assertEquals(2, dates.size());
assertTrue(dates.contains("2023:05:21"));
assertTrue(dates.contains("2023:05:22"));
}

@Test
public void testGetTransactionDetails() {
Expand Down
69 changes: 0 additions & 69 deletions src/Test/TestEntity/Message/MessageTest.java

This file was deleted.

0 comments on commit 3280ab9

Please sign in to comment.