Module: Hiptest::NodeModifiers
- Defined in:
- lib/hiptest-publisher/node_modifiers/add_all.rb,
lib/hiptest-publisher/node_modifiers/parent_adder.rb,
lib/hiptest-publisher/node_modifiers/gherkin_adder.rb,
lib/hiptest-publisher/node_modifiers/items_orderer.rb,
lib/hiptest-publisher/node_modifiers/datatable_fixer.rb,
lib/hiptest-publisher/node_modifiers/call_arguments_adder.rb,
lib/hiptest-publisher/node_modifiers/parameter_type_adder.rb,
lib/hiptest-publisher/node_modifiers/actionword_uniq_renamer.rb,
lib/hiptest-publisher/node_modifiers/uid_call_reference_adder.rb
Defined Under Namespace
Classes: ActionwordUniqRenamer, AnnotationsCounter, CallTypes, DatatableFixer, DefaultArgumentAdder, GherkinAdder, ItemsOrderer, ParameterTypeAdder, ParentAdder, UidCallReferencerAdder
Class Method Summary collapse
Class Method Details
.add_all(project, sort_method = nil) ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/hiptest-publisher/node_modifiers/add_all.rb', line 12 def self.add_all(project, sort_method = nil) DatatableFixer.add(project) ParentAdder.add(project) UidCallReferencerAdder.add(project) ParameterTypeAdder.add(project) DefaultArgumentAdder.add(project) ActionwordUniqRenamer.add(project) GherkinAdder.add(project) ItemsOrderer.add(project, sort_method) unless sort_method.nil? end |