Added getest based test program

This commit is contained in:
paul.cohen
2010-03-08 23:46:59 +00:00
parent b389d532b7
commit 11256d697d
13 changed files with 1234 additions and 0 deletions

24
test/getest/author.e Normal file
View File

@@ -0,0 +1,24 @@
class AUTHOR
create
make
feature {NONE} -- Initialization
make (a_name: UC_STRING) is
do
set_name (a_name)
end
feature -- Access
name: UC_STRING
feature -- Status setting
set_name (a_name: UC_STRING) is
do
name := a_name
end
end -- class AUTHOR