summaryrefslogtreecommitdiffstats
path: root/bank-eiffel/tests/test_account.e
blob: 7f16cc7e8839cbf2f0caf70138fe3e98bc92806b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
note
	description: "[
		Eiffel tests that can be executed by testing tool.
	]"
	author: "EiffelStudio test wizard"
	date: "$Date$"
	revision: "$Revision$"
	testing: "type/manual"

class
	TEST_ACCOUNT

inherit
	EQA_TEST_SET

feature -- Test routines

	CREATE_EDIT_ACCOUNT
		local
			person1: PERSON
			account: ACCOUNT
		do
			create person1.make ("SOME_SURNAME", "SOME_FIRSTNAME")
			create account.make (person1)
			--assert ("not_implemented", False)
		end

end