summaryrefslogtreecommitdiff
path: root/oop/06-encapsulation/AccountTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'oop/06-encapsulation/AccountTest.java')
-rw-r--r--oop/06-encapsulation/AccountTest.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/oop/06-encapsulation/AccountTest.java b/oop/06-encapsulation/AccountTest.java
deleted file mode 100644
index 9242cea..0000000
--- a/oop/06-encapsulation/AccountTest.java
+++ /dev/null
@@ -1,16 +0,0 @@
-
-public class AccountTest {
-
- /**
- * @param args
- */
- public static void main(String[] args) {
- Account a1 = new Account(); // Instantiation of 'Account' class
-
- a1.setBalance(200.0);
-
-// a1.deposit(100.0);
-// a1.withdraw(10.0);
- }
-
-}