Sha256: 27869ce2a7ad4fd759c420b4a08a090c2cc4ee9ccf9033fd5c0b3f24b37d33ef
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
require 'albacore/albacoremodel' require 'albacore/config/specflowreportconfig' class SpecFlowReport include AlbacoreModel include RunCommand include Configuration::SpecFlowReport attr_array :projects, :options, :report def initialize(command=nil, report=nil) @options=[] @projects =[] super() update_attributes specflowreport.to_hash @command = command unless command.nil? @report = report unless command.nil? end def get_command_line command_params = [] command_params << @command command_params << get_command_parameters commandline = command_params.join(" ") @logger.debug "Build SpecFlow Command Line: " + commandline commandline end def get_projects if @projects.empty? then failure_message = "SpecFlow Expects at list one project file" @logger.debug failure_message fail_with_message failure_message else @projects.map{|asm| "\"#{asm}\""}.join(' ') end end def get_options if @options.empty? then "/xmlTestResult:TestResult.xml /out:specs.html" else @options.join(" ") end end def get_command_parameters command_params = [] command_params << @report command_params << get_projects command_params << get_options command_params end def execute() command_params = get_command_parameters result = run_command "specflow.exe", command_params.join(" ") failure_message = 'SpecFlow Failed. See Build Log For Detail. ' + command_params.join(" ") fail_with_message failure_message if !result end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
albacore-0.2.0.preview1 | lib/albacore/specflowreport.rb |