EOS end def print_main_header <<-EOS
EOS end def print_main_footer(total_count, failed_count, pending_count, total_time) update_report_js_tmp = '' update_report_js = '' %w{ total_count failed_count pending_count total_time }.each do |key| update_report_js += update_report_js_tmp % [key, eval(key)] end "#{update_report_js}
" end def print_tab_speed_statsitics(passed_scenarios) statistics = TurnipFormatter::Template::Tab::SpeedStatistics.new(passed_scenarios) <<-EOS
Ranking of running time of each successfully scenario: #{statistics.build}
EOS end def print_tab_feature_statsitics(scenarios) statistics = TurnipFormatter::Template::Tab::FeatureStatistics.new(scenarios) <<-EOS
The results for the feature: #{statistics.build}
EOS end def print_tab_tag_statsitics(scenarios) statistics = TurnipFormatter::Template::Tab::TagStatistics.new(scenarios) <<-EOS
The results for the tab: #{statistics.build}
EOS end def print_footer <<-EOS