module Hiptest::NodeModifiers

Public Class Methods

add_all(project, sort_method = nil) click to toggle source
# File lib/hiptest-publisher/node_modifiers/add_all.rb, line 11
def self.add_all(project, sort_method = nil)
  DatatableFixer.add(project)
  ParentAdder.add(project)
  ParameterTypeAdder.add(project)
  DefaultArgumentAdder.add(project)
  ActionwordUniqRenamer.add(project)
  GherkinAdder.add(project)
  ItemsOrderer.add(project, sort_method) unless sort_method.nil?
end