Class: LegoTechSelenium::TestCase::Builder
- Inherits:
-
Object
- Object
- LegoTechSelenium::TestCase::Builder
- Defined in:
- lib/ui/test-cases/TestCase.rb
Instance Method Summary collapse
-
#add_action(action) ⇒ Builder
Function used to add an action using a Builder class.
-
#build ⇒ TestCase
A function the return the built TestCase.
-
#initialize(name, driver) ⇒ Builder
constructor
A new instance of Builder.
Constructor Details
Instance Method Details
#add_action(action) ⇒ Builder
Function used to add an action using a Builder class
62 63 64 65 |
# File 'lib/ui/test-cases/TestCase.rb', line 62 def add_action(action) @testCase.add_action(action) self end |
#build ⇒ TestCase
A function the return the built TestCase
69 70 71 |
# File 'lib/ui/test-cases/TestCase.rb', line 69 def build @testCase end |