From c230b1982730b2084ad884d7ded23c6da66dca83 Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 12 Mar 2020 14:22:12 -0400 Subject: [PATCH 01/14] POM POM --- Pom.xml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Pom.xml diff --git a/Pom.xml b/Pom.xml new file mode 100644 index 0000000..9362ff7 --- /dev/null +++ b/Pom.xml @@ -0,0 +1,23 @@ + + + + JustCode + com.zipcodewilmington + 1.0-SNAPSHOT + + 4.0.0 + + main + + + junit + junit + 4.12 + test + + + + + From 192cd7ac9f90861e202af4780471cf2b9d275c3d Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 12 Mar 2020 14:29:52 -0400 Subject: [PATCH 02/14] create Pom --- .idea/.gitignore | 2 ++ .idea/.name | 1 + .idea/compiler.xml | 16 ++++++++++++++++ .idea/misc.xml | 11 +++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ Pom.xml | 26 ++++++++++++++++++-------- main.iml | 12 ++++++++++++ 8 files changed, 74 insertions(+), 8 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/.name create mode 100644 .idea/compiler.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 main.iml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..5c98b42 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..88d050b --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +main \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..4c1f4b3 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d63847d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..122a905 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Pom.xml b/Pom.xml index 9362ff7..bab5d84 100644 --- a/Pom.xml +++ b/Pom.xml @@ -2,22 +2,32 @@ - - JustCode - com.zipcodewilmington - 1.0-SNAPSHOT - 4.0.0 - main + com.zipcodewilmington + justcode + 1.0-SNAPSHOT + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 8 + 8 + + + + + junit junit 4.12 - test - + \ No newline at end of file diff --git a/main.iml b/main.iml new file mode 100644 index 0000000..4fd5057 --- /dev/null +++ b/main.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file From 7c2eda49f88fe3f76686e53131bbea4209420982 Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 12 Mar 2020 15:36:33 -0400 Subject: [PATCH 03/14] ProjectTestReadMe --- .idea/compiler.xml | 2 +- .idea/libraries/Maven__junit_junit_4_12.xml | 13 +++++++++++++ .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 +++++++++++++ ProjectTestReadMe | 0 main.iml | 4 +++- 5 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 .idea/libraries/Maven__junit_junit_4_12.xml create mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 ProjectTestReadMe diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 4c1f4b3..7bfb024 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -10,7 +10,7 @@ - + \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_12.xml b/.idea/libraries/Maven__junit_junit_4_12.xml new file mode 100644 index 0000000..d411041 --- /dev/null +++ b/.idea/libraries/Maven__junit_junit_4_12.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..f58bbc1 --- /dev/null +++ b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectTestReadMe b/ProjectTestReadMe new file mode 100644 index 0000000..e69de29 diff --git a/main.iml b/main.iml index 4fd5057..a5cc752 100644 --- a/main.iml +++ b/main.iml @@ -1,6 +1,6 @@ - + @@ -8,5 +8,7 @@ + + \ No newline at end of file From 917186941f04bc6e0de1c22ce9cec1d90ebbdfdc Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 12 Mar 2020 16:31:00 -0400 Subject: [PATCH 04/14] test readme start --- ProjectTestReadMe | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/ProjectTestReadMe b/ProjectTestReadMe index e69de29..0ebd6f6 100644 --- a/ProjectTestReadMe +++ b/ProjectTestReadMe @@ -0,0 +1,20 @@ +JUST CODE TEST README + +Create a test to make sure the app sends the right query to the user giving options to complete transaction and print receipt or continue with options: + +and test that if done with transaction the correct balance is returned. + +1) round up to the next dollar amount. Check interface options + +//test to ensure that the options chosen match what user picks, and returns the correct amount. + +2) round up by dollar amount? same options in interface? + +3) choose percentage of purchase they want to add? +to add to interface choices? + +interfaces for each class. +a. put into savings, b. put into checking, c. donate to charity d. send to family member e. put into mutual fund + + + From 9fb7b308100847931a0e07888116be624bd6033b Mon Sep 17 00:00:00 2001 From: Zanetta Norris Date: Thu, 12 Mar 2020 16:46:11 -0400 Subject: [PATCH 05/14] added project proposal readme --- .idea/compiler.xml | 2 +- .idea/libraries/Maven__junit_junit_4_12.xml | 13 +++++++++++++ .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 +++++++++++++ ProjectStructure Readme | 14 ++++++++++++++ main.iml | 4 +++- 5 files changed, 44 insertions(+), 2 deletions(-) create mode 100644 .idea/libraries/Maven__junit_junit_4_12.xml create mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 ProjectStructure Readme diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 4c1f4b3..7bfb024 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -10,7 +10,7 @@ - + \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_12.xml b/.idea/libraries/Maven__junit_junit_4_12.xml new file mode 100644 index 0000000..d411041 --- /dev/null +++ b/.idea/libraries/Maven__junit_junit_4_12.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..f58bbc1 --- /dev/null +++ b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/ProjectStructure Readme b/ProjectStructure Readme new file mode 100644 index 0000000..6a6890e --- /dev/null +++ b/ProjectStructure Readme @@ -0,0 +1,14 @@ +JUST CODE README + +Create a financial app which interacts with a user at a Point of Sale terminal. +The app scans the user’s purchase total, and gives the option to round up to the next whole dollar (or other specified figure) +The app then provides a menu of options of where to send the extra funds. The funds could be sent to a savings account, a charity, a mutual fund or other investment. +The app would also print a receipt showing the value of the original bill, the rounded up value, and how much was + committed to each account. +The initial development stage would involve creating the UML, the user interface, and the functionality of adding and subtracting dollar amounts. + + +Future functionality +The app could provide access to a database which stores customer account profile data, balance, fund choices. +It could also track the progress of the chosen fund from real market data, and return the resulting change in value to balance. +The app might also give the option to add a new fund or charity diff --git a/main.iml b/main.iml index 4fd5057..a5cc752 100644 --- a/main.iml +++ b/main.iml @@ -1,6 +1,6 @@ - + @@ -8,5 +8,7 @@ + + \ No newline at end of file From bb5a23d38cf15188212a434cf9567e1b9524d1dd Mon Sep 17 00:00:00 2001 From: Zanetta Norris Date: Thu, 12 Mar 2020 17:02:07 -0400 Subject: [PATCH 06/14] practising pull request --- ProjectStructure Readme | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ProjectStructure Readme b/ProjectStructure Readme index 6a6890e..85d820f 100644 --- a/ProjectStructure Readme +++ b/ProjectStructure Readme @@ -11,4 +11,5 @@ The initial development stage would involve creating the UML, the user interface Future functionality The app could provide access to a database which stores customer account profile data, balance, fund choices. It could also track the progress of the chosen fund from real market data, and return the resulting change in value to balance. -The app might also give the option to add a new fund or charity +The app might also give the option to add a new fund or charity. + From de96ae9b26538d4daabd7148533d52325bb1c085 Mon Sep 17 00:00:00 2001 From: aartikansal Date: Thu, 12 Mar 2020 17:06:39 -0400 Subject: [PATCH 07/14] chages to read me --- .idea/compiler.xml | 2 +- .idea/libraries/Maven__junit_junit_4_12.xml | 13 +++++++++++++ .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 +++++++++++++ main.iml | 4 +++- 4 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 .idea/libraries/Maven__junit_junit_4_12.xml create mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 4c1f4b3..7bfb024 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -10,7 +10,7 @@ - + \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_12.xml b/.idea/libraries/Maven__junit_junit_4_12.xml new file mode 100644 index 0000000..d411041 --- /dev/null +++ b/.idea/libraries/Maven__junit_junit_4_12.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..f58bbc1 --- /dev/null +++ b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/main.iml b/main.iml index 4fd5057..a5cc752 100644 --- a/main.iml +++ b/main.iml @@ -1,6 +1,6 @@ - + @@ -8,5 +8,7 @@ + + \ No newline at end of file From 69e8f5e81d9cedf758591526898dc6a54fa8c1a5 Mon Sep 17 00:00:00 2001 From: Zanetta Norris Date: Sun, 15 Mar 2020 23:43:02 -0400 Subject: [PATCH 08/14] added project structure --- .idea/compiler.xml | 2 +- .idea/misc.xml | 5 +++++ Pom.xml | 4 ++++ main.iml | 2 ++ src/main/java/Charity.java | 4 ++++ src/main/java/Deposit.java | 12 ++++++++++++ src/main/java/Family.java | 4 ++++ src/main/java/MainApplication.java | 20 ++++++++++++++++++++ src/main/java/MutualFund.java | 4 ++++ src/main/java/ReceiptPrinter.java | 15 +++++++++++++++ src/main/java/SavingsChecking.java | 4 ++++ src/main/java/Withdraw.java | 12 ++++++++++++ src/pom.xml | 15 +++++++++++++++ 13 files changed, 102 insertions(+), 1 deletion(-) create mode 100644 src/main/java/Charity.java create mode 100644 src/main/java/Deposit.java create mode 100644 src/main/java/Family.java create mode 100644 src/main/java/MainApplication.java create mode 100644 src/main/java/MutualFund.java create mode 100644 src/main/java/ReceiptPrinter.java create mode 100644 src/main/java/SavingsChecking.java create mode 100644 src/main/java/Withdraw.java create mode 100644 src/pom.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 7bfb024..973fcd2 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -6,11 +6,11 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index d63847d..687810c 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -6,6 +6,11 @@ + \ No newline at end of file diff --git a/Pom.xml b/Pom.xml index bab5d84..1daacd9 100644 --- a/Pom.xml +++ b/Pom.xml @@ -6,6 +6,7 @@ com.zipcodewilmington justcode + pom 1.0-SNAPSHOT @@ -20,6 +21,9 @@ + + src + diff --git a/main.iml b/main.iml index a5cc752..a1034f6 100644 --- a/main.iml +++ b/main.iml @@ -4,6 +4,8 @@ + + diff --git a/src/main/java/Charity.java b/src/main/java/Charity.java new file mode 100644 index 0000000..52a41ff --- /dev/null +++ b/src/main/java/Charity.java @@ -0,0 +1,4 @@ +package java; + +public class Charity { +} diff --git a/src/main/java/Deposit.java b/src/main/java/Deposit.java new file mode 100644 index 0000000..8c3b283 --- /dev/null +++ b/src/main/java/Deposit.java @@ -0,0 +1,12 @@ +package java; + +public interface Deposit { + +public Double Amount = null; + +public double deposit(double deposit); + +public void roundUp(double r); + +public void newBalance(double b); +} diff --git a/src/main/java/Family.java b/src/main/java/Family.java new file mode 100644 index 0000000..3c26c32 --- /dev/null +++ b/src/main/java/Family.java @@ -0,0 +1,4 @@ +package java; + +public class Family { +} diff --git a/src/main/java/MainApplication.java b/src/main/java/MainApplication.java new file mode 100644 index 0000000..6723f84 --- /dev/null +++ b/src/main/java/MainApplication.java @@ -0,0 +1,20 @@ +package java; + +public class MainApplication { + +String customerName; + +Double billAmount; + +String fundName; + +Double newTotal; + +public void getCustomerInfo(){} + +public void printConsole(){} + +public boolean transferYorN(){ + return false; +} +} diff --git a/src/main/java/MutualFund.java b/src/main/java/MutualFund.java new file mode 100644 index 0000000..dc1cf95 --- /dev/null +++ b/src/main/java/MutualFund.java @@ -0,0 +1,4 @@ +package java; + +public class MutualFund { +} diff --git a/src/main/java/ReceiptPrinter.java b/src/main/java/ReceiptPrinter.java new file mode 100644 index 0000000..543194c --- /dev/null +++ b/src/main/java/ReceiptPrinter.java @@ -0,0 +1,15 @@ +package java; + +public class ReceiptPrinter { + + private String customerName; + + private String investmentName; + + private Double amountAdded; + + private Double newBalance; + + private void print() { + } +} diff --git a/src/main/java/SavingsChecking.java b/src/main/java/SavingsChecking.java new file mode 100644 index 0000000..51c0273 --- /dev/null +++ b/src/main/java/SavingsChecking.java @@ -0,0 +1,4 @@ +package java; + +public class SavingsChecking { +} diff --git a/src/main/java/Withdraw.java b/src/main/java/Withdraw.java new file mode 100644 index 0000000..359ec43 --- /dev/null +++ b/src/main/java/Withdraw.java @@ -0,0 +1,12 @@ +package java; + +public interface Withdraw { + + public Double Amount = null; + + public void Withdraw(double w); + + public void showTotal(double s); + + public void newBalance(double b); +} diff --git a/src/pom.xml b/src/pom.xml new file mode 100644 index 0000000..2b39858 --- /dev/null +++ b/src/pom.xml @@ -0,0 +1,15 @@ + + + + justcode + com.zipcodewilmington + 1.0-SNAPSHOT + + 4.0.0 + + src + + + \ No newline at end of file From 5b01fbf3e3ed8efba191971c3f6d13fc9b9b89fa Mon Sep 17 00:00:00 2001 From: April Howard Date: Mon, 16 Mar 2020 13:08:36 -0400 Subject: [PATCH 09/14] create projectTestReadMe --- ProjectTestReadMe | 21 ++++++++------------- main.iml | 2 +- 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/ProjectTestReadMe b/ProjectTestReadMe index 0ebd6f6..b7a4440 100644 --- a/ProjectTestReadMe +++ b/ProjectTestReadMe @@ -1,20 +1,15 @@ JUST CODE TEST README -Create a test to make sure the app sends the right query to the user giving options to complete transaction and print receipt or continue with options: +*Create a test to ensure the console displays customer name, +bill Amount, Fund Name and new Total. -and test that if done with transaction the correct balance is returned. - -1) round up to the next dollar amount. Check interface options - -//test to ensure that the options chosen match what user picks, and returns the correct amount. -2) round up by dollar amount? same options in interface? - -3) choose percentage of purchase they want to add? -to add to interface choices? - -interfaces for each class. -a. put into savings, b. put into checking, c. donate to charity d. send to family member e. put into mutual fund +* Create test to ensure the console sends the right query to the user giving options to +complete transaction and print receipt or continue with options: +and test that if done with transaction the correct balance is returned. +*test to ensure that the options chosen match what user picks, and returns the correct amount. +*Ensure each of the methods for manipulating and accessing class fields have +appropriate testing. diff --git a/main.iml b/main.iml index a1034f6..a0383c0 100644 --- a/main.iml +++ b/main.iml @@ -5,7 +5,7 @@ - + From 63ff077d1872a5c566d2c90bc5f1fcad42836b50 Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 19 Mar 2020 07:07:03 -0400 Subject: [PATCH 10/14] saving --- main.iml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.iml b/main.iml index a0383c0..648fd83 100644 --- a/main.iml +++ b/main.iml @@ -10,7 +10,7 @@ - + \ No newline at end of file From b395eaa20cf427faad8585e5086eccaaf14ec0b8 Mon Sep 17 00:00:00 2001 From: April Howard Date: Thu, 19 Mar 2020 07:29:40 -0400 Subject: [PATCH 11/14] add local charities class --- src/main/java/java/localCharities.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/java/java/localCharities.java diff --git a/src/main/java/java/localCharities.java b/src/main/java/java/localCharities.java new file mode 100644 index 0000000..6dfa679 --- /dev/null +++ b/src/main/java/java/localCharities.java @@ -0,0 +1,13 @@ +package java; + +public enum localCharities { + + JUNIOR_LEAGUE_OF_WILMINGTON, + SUNDAY_BREAKFAST_MISSION, + MARTHA_HOUSE, + BAYARD_HOUSE, + LITERACY_LITERACY, + GREEN_DROP, + KIND_TO_KIDS, + CONNECTIONS_COMMUNITY_SUPPORT_PROGRAM, +} From ef4d7c78545c16d1a482c087ae87d54a28aa1ff8 Mon Sep 17 00:00:00 2001 From: aartikansal Date: Thu, 19 Mar 2020 11:37:23 -0400 Subject: [PATCH 12/14] global charities added --- src/main/java/java/GlobalCharities.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/java/GlobalCharities.java diff --git a/src/main/java/java/GlobalCharities.java b/src/main/java/java/GlobalCharities.java new file mode 100644 index 0000000..b443d98 --- /dev/null +++ b/src/main/java/java/GlobalCharities.java @@ -0,0 +1,11 @@ +package java; + +public enum GlobalCharities { + UNICEF, + The_Missionaries_of_Charity, + Amoud_Foundation, + Save_the_Children, + Azim_Premji_Foundation, + + +} From 6949ff846ac586f910aa47350205da21c1fd0446 Mon Sep 17 00:00:00 2001 From: aartikansal Date: Thu, 19 Mar 2020 19:09:31 -0400 Subject: [PATCH 13/14] test classes stubbed and tests added --- .idea/compiler.xml | 1 + main.iml | 2 +- src/.DS_Store | Bin 0 -> 6148 bytes src/main/.DS_Store | Bin 0 -> 6148 bytes src/main/java/{java => Bank}/AccountInfo.java | 5 +-- src/main/java/{java => Bank}/Charity.java | 2 +- src/main/java/{java => Bank}/Deposit.java | 2 +- src/main/java/{java => Bank}/Family.java | 2 +- .../java/{java => Bank}/GlobalCharities.java | 2 +- .../java/{java => Bank}/MainApplication.java | 2 +- src/main/java/{java => Bank}/MutualFund.java | 2 +- .../java/{java => Bank}/ReceiptPrinter.java | 2 +- .../java/{java => Bank}/SavingsChecking.java | 2 +- src/main/java/{java => Bank}/Withdraw.java | 2 +- .../java/{java => Bank}/localCharities.java | 2 +- src/test/Bank/AccountInfoTest.java | 40 ++++++++++++++++++ .../test-classes/META-INF/main.kotlin_module | Bin 0 -> 16 bytes 17 files changed, 53 insertions(+), 15 deletions(-) create mode 100644 src/.DS_Store create mode 100644 src/main/.DS_Store rename src/main/java/{java => Bank}/AccountInfo.java (98%) rename src/main/java/{java => Bank}/Charity.java (93%) rename src/main/java/{java => Bank}/Deposit.java (92%) rename src/main/java/{java => Bank}/Family.java (64%) rename src/main/java/{java => Bank}/GlobalCharities.java (91%) rename src/main/java/{java => Bank}/MainApplication.java (94%) rename src/main/java/{java => Bank}/MutualFund.java (67%) rename src/main/java/{java => Bank}/ReceiptPrinter.java (93%) rename src/main/java/{java => Bank}/SavingsChecking.java (70%) rename src/main/java/{java => Bank}/Withdraw.java (92%) rename src/main/java/{java => Bank}/localCharities.java (94%) create mode 100644 src/test/Bank/AccountInfoTest.java create mode 100644 target/test-classes/META-INF/main.kotlin_module diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 973fcd2..9b7ab75 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -6,6 +6,7 @@ + diff --git a/main.iml b/main.iml index 648fd83..a0383c0 100644 --- a/main.iml +++ b/main.iml @@ -10,7 +10,7 @@ - + \ No newline at end of file diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..0787fb7b15229e3b1308635a538cf207523385ad GIT binary patch literal 6148 zcmeH~K?=e^3`G;|LU7Zi%h`AUZ!na40xzH-h@ce&UC+_|$ppdbT10*z`IF3q(zoa| zBBI@GzY=LhWCk~trG=3x@0kh68F=pTt>P!&@2c$2NroNPq-LfCNb3 zhX~lc4V%rYGLirZkie6GeIF9sG>4X|{^>yQ5dhkt?1r_^63}D?Xbvq^QGsbp4;roN zV~Ewg9h%}?4lPw{yJ!p_8c$Z6VqjX^MH3R3W)}t$Ab}BqY0X=^|JU$O^Z%%YDG89k zpApce-}D_`D(=>|*R%RIs;=wTS#c@+X-IrEk$` zL`3`haV^q`NDDWWm4%5Z@&JhP8{Tj3ht;B=96)--iS@&7q~Le>xC+1b{XuyJ79K1T}(S!u1*@b}wNMJ%>Uh~fG|1JE}{6A@7N&+PC zX9Tp_>^41KD(=>|*R%RQs Date: Fri, 20 Mar 2020 08:20:21 -0400 Subject: [PATCH 14/14] changes to test classes --- src/test/Bank/CharityTest.java | 4 ++++ src/test/Bank/FamilyTest.java | 4 ++++ src/test/Bank/GlobalCharitiesTest.java | 4 ++++ src/test/Bank/MainApplicationTest.java | 4 ++++ src/test/Bank/MutualFundTest.java | 4 ++++ src/test/Bank/ReceiptPrinterTest.java | 4 ++++ src/test/Bank/SavingsCheckingTest.java | 4 ++++ src/test/Bank/localCharitiesTest.java | 4 ++++ 8 files changed, 32 insertions(+) create mode 100644 src/test/Bank/CharityTest.java create mode 100644 src/test/Bank/FamilyTest.java create mode 100644 src/test/Bank/GlobalCharitiesTest.java create mode 100644 src/test/Bank/MainApplicationTest.java create mode 100644 src/test/Bank/MutualFundTest.java create mode 100644 src/test/Bank/ReceiptPrinterTest.java create mode 100644 src/test/Bank/SavingsCheckingTest.java create mode 100644 src/test/Bank/localCharitiesTest.java diff --git a/src/test/Bank/CharityTest.java b/src/test/Bank/CharityTest.java new file mode 100644 index 0000000..43625a6 --- /dev/null +++ b/src/test/Bank/CharityTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class CharityTest { +} diff --git a/src/test/Bank/FamilyTest.java b/src/test/Bank/FamilyTest.java new file mode 100644 index 0000000..96fa3d4 --- /dev/null +++ b/src/test/Bank/FamilyTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class FamilyTest { +} diff --git a/src/test/Bank/GlobalCharitiesTest.java b/src/test/Bank/GlobalCharitiesTest.java new file mode 100644 index 0000000..beec4fe --- /dev/null +++ b/src/test/Bank/GlobalCharitiesTest.java @@ -0,0 +1,4 @@ +package Bank; + +public enum GlobalCharitiesTest { +} diff --git a/src/test/Bank/MainApplicationTest.java b/src/test/Bank/MainApplicationTest.java new file mode 100644 index 0000000..27e652f --- /dev/null +++ b/src/test/Bank/MainApplicationTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class MainApplicationTest { +} diff --git a/src/test/Bank/MutualFundTest.java b/src/test/Bank/MutualFundTest.java new file mode 100644 index 0000000..b5499ab --- /dev/null +++ b/src/test/Bank/MutualFundTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class MutualFundTest { +} diff --git a/src/test/Bank/ReceiptPrinterTest.java b/src/test/Bank/ReceiptPrinterTest.java new file mode 100644 index 0000000..29fce5d --- /dev/null +++ b/src/test/Bank/ReceiptPrinterTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class ReceiptPrinterTest { +} diff --git a/src/test/Bank/SavingsCheckingTest.java b/src/test/Bank/SavingsCheckingTest.java new file mode 100644 index 0000000..fb14b25 --- /dev/null +++ b/src/test/Bank/SavingsCheckingTest.java @@ -0,0 +1,4 @@ +package Bank; + +public class SavingsCheckingTest { +} diff --git a/src/test/Bank/localCharitiesTest.java b/src/test/Bank/localCharitiesTest.java new file mode 100644 index 0000000..77573c6 --- /dev/null +++ b/src/test/Bank/localCharitiesTest.java @@ -0,0 +1,4 @@ +package Bank; + +public enum localCharitiesTest { +}