Method: XCTasks::TestTask::Configuration#runner=

Defined in:
lib/xctasks/test_task.rb

#runner=(runner) ⇒ Object

Raises:



132
133
134
135
136
# File 'lib/xctasks/test_task.rb', line 132

def runner=(runner)
  runner_bin = runner.to_s.split(' ')[0]
  raise ConfigurationError, "Must be :xcodebuild, :xctool or :xcpretty" unless %w{xctool xcodebuild xcpretty}.include?(runner_bin)
  @runner = runner
end