summaryrefslogtreecommitdiffstats
path: root/bank-eiffel/tests
diff options
context:
space:
mode:
Diffstat (limited to 'bank-eiffel/tests')
-rw-r--r--bank-eiffel/tests/test_account.e5
1 files changed, 4 insertions, 1 deletions
diff --git a/bank-eiffel/tests/test_account.e b/bank-eiffel/tests/test_account.e
index 7f16cc7..a460023 100644
--- a/bank-eiffel/tests/test_account.e
+++ b/bank-eiffel/tests/test_account.e
@@ -18,10 +18,13 @@ feature -- Test routines
18 CREATE_EDIT_ACCOUNT 18 CREATE_EDIT_ACCOUNT
19 local 19 local
20 person1: PERSON 20 person1: PERSON
21 person2: PERSON
21 account: ACCOUNT 22 account: ACCOUNT
22 do 23 do
23 create person1.make ("SOME_SURNAME", "SOME_FIRSTNAME") 24 create person1.make ("SOME_SURNAME_1", "SOME_FIRSTNAME_1")
25 create person2.make ("SOME_SURNAME_2", "SOME_FIRSTNAME_2")
24 create account.make (person1) 26 create account.make (person1)
27 account.add_authorized_signer (person2)
25 --assert ("not_implemented", False) 28 --assert ("not_implemented", False)
26 end 29 end
27 30