Method: Scan::TestCommandGenerator#project_path_array

Defined in:
scan/lib/scan/test_command_generator.rb

#project_path_arrayArray

Path to the project or workspace as parameter This will also include the scheme (if given)

Returns:

  • (Array)

    The array with all the components to join



24
25
26
27
28
# File 'scan/lib/scan/test_command_generator.rb', line 24

def project_path_array
  proj = Scan.project.xcodebuild_parameters
  return proj if proj.count > 0
  UI.user_error!("No project/workspace found")
end