Added autotest test suite

This commit is contained in:
jvelilla
2010-03-09 11:37:55 +00:00
parent 11256d697d
commit 805874dc9c
40 changed files with 532 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
note
description : "test_suite application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
--| Add your code here
print ("Hello Eiffel World!%N")
end
end