summaryrefslogtreecommitdiff
path: root/oop/07-inheritance/AccountTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'oop/07-inheritance/AccountTest.java')
-rw-r--r--oop/07-inheritance/AccountTest.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/oop/07-inheritance/AccountTest.java b/oop/07-inheritance/AccountTest.java
deleted file mode 100644
index cc5056b..0000000
--- a/oop/07-inheritance/AccountTest.java
+++ /dev/null
@@ -1,22 +0,0 @@
-
-public class AccountTest {
-
- /**
- * @param args
- */
- public static void main(String[] args) {
- SavingsAccount a1 = new SavingsAccount();
-
- Account a3 = new SavingsAccount();
-
- Account a2 = new CheckingAccount();
-
-
-
- CheckingAccount a4 = new CheckingAccount();
-
-
-// CheckingAccount a5 = new SavingsAccount(); // not working
- }
-
-}