Module: FacterStatistax::Executors::Executor

Defined in:
lib/executors/executor.rb

Class Method Summary collapse

Class Method Details

.executeObject



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/executors/executor.rb', line 9

def execute
  json_writer = Common::OutputWriter.instance

  read_config_file.each do |test_suite|
    json_writer.write_test_suite(IS_GEM, test_suite.test_run)
    log_information(IS_GEM, test_suite.test_run)
    test_suite.runs.each do |run|
      run_executor(run)
    end
  end
  json_writer.write
end