Files
EWF/library/test/selenium/examples/application.e
jvelilla 31c2be768f Created new classes to represent a web driver.
Added Examples, clean code
2013-04-29 18:02:33 -03:00

28 lines
317 B
Plaintext

note
description : "project application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
execute_example1
end
execute_example1
do
(create {EXAMPLE_1}).test
end
end