Class: XCodeBuildHelper::CoveragePlan

Inherits:
Object
  • Object
show all
Defined in:
lib/coverage_plan.rb

Instance Method Summary collapse

Instance Method Details

#get_outputObject



23
24
25
# File 'lib/coverage_plan.rb', line 23

def get_output
  @output
end

#get_report_typeObject



7
8
9
# File 'lib/coverage_plan.rb', line 7

def get_report_type
  @report_type
end

#get_source_filesObject



15
16
17
# File 'lib/coverage_plan.rb', line 15

def get_source_files
  @source_files
end

#output(name) ⇒ Object



19
20
21
# File 'lib/coverage_plan.rb', line 19

def output(name)
  @output = name
end

#report_type(name) ⇒ Object



3
4
5
# File 'lib/coverage_plan.rb', line 3

def report_type(name)
  @report_type = name
end

#source_files(name) ⇒ Object



11
12
13
# File 'lib/coverage_plan.rb', line 11

def source_files(name)
  @source_files = name
end