summaryrefslogtreecommitdiffstats
path: root/bank-eiffel/tests/test_account.e
diff options
context:
space:
mode:
Diffstat (limited to 'bank-eiffel/tests/test_account.e')
-rw-r--r--bank-eiffel/tests/test_account.e30
1 files changed, 30 insertions, 0 deletions
diff --git a/bank-eiffel/tests/test_account.e b/bank-eiffel/tests/test_account.e
new file mode 100644
index 0000000..1820c45
--- /dev/null
+++ b/bank-eiffel/tests/test_account.e
@@ -0,0 +1,30 @@
1note
2 description: "[
3 Eiffel tests that can be executed by testing tool.
4 ]"
5 author: "EiffelStudio test wizard"
6 date: "$Date$"
7 revision: "$Revision$"
8 testing: "type/manual"
9
10class
11 TEST_ACCOUNT
12
13inherit
14 EQA_TEST_SET
15
16feature -- Test routines
17
18 CREATE_ACCOUNT
19 -- New test routine
20 local
21 person1: PERSON
22 account: ACCOUNT
23 do
24 create person1.make ("VORNAME", "NACHNAME")
25 --assert ("not_implemented", False)
26 end
27
28end
29
30