generate_test_runner.rb 19.2 KB
Newer Older
M
Mark VanderVoord 已提交
1 2 3 4 5 6 7 8 9
# ==========================================
#   Unity Project - A Test Framework for C
#   Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
#   [Released under MIT License. Please refer to license.txt for details]
# ==========================================

class UnityTestRunnerGenerator
  def initialize(options = nil)
    @options = UnityTestRunnerGenerator.default_options
10
    case options
11 12 13 14 15 16 17 18 19 20 21 22 23
    when NilClass
      @options
    when String
      @options.merge!(UnityTestRunnerGenerator.grab_config(options))
    when Hash
      # Check if some of these have been specified
      @options[:has_setup] = !options[:setup_name].nil?
      @options[:has_teardown] = !options[:teardown_name].nil?
      @options[:has_suite_setup] = !options[:suite_setup].nil?
      @options[:has_suite_teardown] = !options[:suite_teardown].nil?
      @options.merge!(options)
    else
      raise 'If you specify arguments, it should be a filename or a hash of options'
M
Mark VanderVoord 已提交
24
    end
J
John Lindgren 已提交
25
    require_relative 'type_sanitizer'
M
Mark VanderVoord 已提交
26 27 28 29
  end

  def self.default_options
    {
30 31 32 33 34 35
      includes: [],
      defines: [],
      plugins: [],
      framework: :unity,
      test_prefix: 'test|spec|should',
      mock_prefix: 'Mock',
36
      mock_suffix: '',
37 38
      setup_name: 'setUp',
      teardown_name: 'tearDown',
39
      test_reset_name: 'resetTest',
40
      test_verify_name: 'verifyTest',
41 42 43
      main_name: 'main', # set to :auto to automatically generate each time
      main_export_decl: '',
      cmdline_args: false,
44
      omit_begin_end: false,
45
      use_param_tests: false
M
Mark VanderVoord 已提交
46 47 48 49
    }
  end

  def self.grab_config(config_file)
50 51
    options = default_options
    unless config_file.nil? || config_file.empty?
M
Mark VanderVoord 已提交
52 53 54 55 56
      require 'yaml'
      yaml_guts = YAML.load_file(config_file)
      options.merge!(yaml_guts[:unity] || yaml_guts[:cmock])
      raise "No :unity or :cmock section found in #{config_file}" unless options
    end
57
    options
M
Mark VanderVoord 已提交
58 59
  end

60
  def run(input_file, output_file, options = nil)
M
Mark VanderVoord 已提交
61 62
    @options.merge!(options) unless options.nil?

63
    # pull required data from source file
M
Mark VanderVoord 已提交
64
    source = File.read(input_file)
65
    source = source.force_encoding('ISO-8859-1').encode('utf-8', replace: nil)
M
mvandervoord 已提交
66 67 68 69 70
    tests = find_tests(source)
    headers = find_includes(source)
    testfile_includes = (headers[:local] + headers[:system])
    used_mocks = find_mocks(testfile_includes)
    testfile_includes = (testfile_includes - used_mocks)
71
    testfile_includes.delete_if { |inc| inc =~ /(unity|cmock)/ }
M
Mark VanderVoord 已提交
72
    find_setup_and_teardown(source)
M
Mark VanderVoord 已提交
73

74
    # build runner file
M
Mark VanderVoord 已提交
75 76
    generate(input_file, output_file, tests, used_mocks, testfile_includes)

77
    # determine which files were used to return them
M
Mark VanderVoord 已提交
78
    all_files_used = [input_file, output_file]
79
    all_files_used += testfile_includes.map { |filename| filename + '.c' } unless testfile_includes.empty?
M
Mark VanderVoord 已提交
80
    all_files_used += @options[:includes] unless @options[:includes].empty?
81
    all_files_used += headers[:linkonly] unless headers[:linkonly].empty?
82
    all_files_used.uniq
M
Mark VanderVoord 已提交
83 84 85 86 87 88 89
  end

  def generate(input_file, output_file, tests, used_mocks, testfile_includes)
    File.open(output_file, 'w') do |output|
      create_header(output, used_mocks, testfile_includes)
      create_externs(output, tests, used_mocks)
      create_mock_management(output, used_mocks)
90 91
      create_setup(output)
      create_teardown(output)
92 93
      create_suite_setup(output)
      create_suite_teardown(output)
94 95 96
      create_reset(output)
      create_run_test(output)
      create_args_wrappers(output, tests)
M
Mark VanderVoord 已提交
97 98 99
      create_main(output, input_file, tests, used_mocks)
    end

100 101 102 103
    return unless @options[:header_file] && !@options[:header_file].empty?

    File.open(@options[:header_file], 'w') do |output|
      create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks)
M
Mark VanderVoord 已提交
104 105 106 107 108 109
    end
  end

  def find_tests(source)
    tests_and_line_numbers = []

110 111 112 113 114 115 116 117 118
    # contains characters which will be substituted from within strings, doing
    # this prevents these characters from interferring with scrubbers
    # @ is not a valid C character, so there should be no clashes with files genuinely containing these markers
    substring_subs = { '{' => '@co@', '}' => '@cc@', ';' => '@ss@', '/' => '@fs@' }
    substring_re = Regexp.union(substring_subs.keys)
    substring_unsubs = substring_subs.invert                   # the inverse map will be used to fix the strings afterwords
    substring_unsubs['@quote@'] = '\\"'
    substring_unsubs['@apos@'] = '\\\''
    substring_unre = Regexp.union(substring_unsubs.keys)
119
    source_scrubbed = source.clone
120 121
    source_scrubbed = source_scrubbed.gsub(/\\"/, '@quote@')   # hide escaped quotes to allow capture of the full string/char
    source_scrubbed = source_scrubbed.gsub(/\\'/, '@apos@')    # hide escaped apostrophes to allow capture of the full string/char
122
    source_scrubbed = source_scrubbed.gsub(/("[^"\n]*")|('[^'\n]*')/) { |s| s.gsub(substring_re, substring_subs) } # temporarily hide problematic characters within strings
123 124 125 126
    source_scrubbed = source_scrubbed.gsub(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '')  # remove line comments that comment out the start of blocks
    source_scrubbed = source_scrubbed.gsub(/\/\*.*?\*\//m, '')                     # remove block comments
    source_scrubbed = source_scrubbed.gsub(/\/\/.*$/, '')                          # remove line comments (all that remain)
    lines = source_scrubbed.split(/(^\s*\#.*$) | (;|\{|\}) /x)                     # Treat preprocessor directives as a logical line. Match ;, {, and } as end of lines
127
                           .map { |line| line.gsub(substring_unre, substring_unsubs) } # unhide the problematic characters previously removed
M
Mark VanderVoord 已提交
128

129 130
    lines.each_with_index do |line, _index|
      # find tests
131
      next unless line =~ /^((?:\s*TEST_CASE\s*\(.*?\)\s*)*)\s*void\s+((?:#{@options[:test_prefix]}).*)\s*\(\s*(.*)\s*\)/m
M
mvandervoord 已提交
132

133 134 135 136 137
      arguments = Regexp.last_match(1)
      name = Regexp.last_match(2)
      call = Regexp.last_match(3)
      params = Regexp.last_match(4)
      args = nil
M
mvandervoord 已提交
138

139 140 141
      if @options[:use_param_tests] && !arguments.empty?
        args = []
        arguments.scan(/\s*TEST_CASE\s*\((.*)\)\s*$/) { |a| args << a[0] }
M
Mark VanderVoord 已提交
142
      end
M
mvandervoord 已提交
143

144
      tests_and_line_numbers << { test: name, args: args, call: call, params: params, line_number: 0 }
M
Mark VanderVoord 已提交
145
    end
M
mvandervoord 已提交
146

147
    tests_and_line_numbers.uniq! { |v| v[:test] }
M
Mark VanderVoord 已提交
148

149
    # determine line numbers and create tests to run
M
Mark VanderVoord 已提交
150
    source_lines = source.split("\n")
151
    source_index = 0
M
Mark VanderVoord 已提交
152 153
    tests_and_line_numbers.size.times do |i|
      source_lines[source_index..-1].each_with_index do |line, index|
154
        next unless line =~ /\s+#{tests_and_line_numbers[i][:test]}(?:\s|\()/
M
mvandervoord 已提交
155

156 157 158
        source_index += index
        tests_and_line_numbers[i][:line_number] = source_index + 1
        break
M
Mark VanderVoord 已提交
159 160 161
      end
    end

162
    tests_and_line_numbers
M
Mark VanderVoord 已提交
163 164 165
  end

  def find_includes(source)
166
    # remove comments (block and line, in three steps to ensure correct precedence)
M
Mark VanderVoord 已提交
167 168 169 170
    source.gsub!(/\/\/(?:.+\/\*|\*(?:$|[^\/])).*$/, '')  # remove line comments that comment out the start of blocks
    source.gsub!(/\/\*.*?\*\//m, '')                     # remove block comments
    source.gsub!(/\/\/.*$/, '')                          # remove line comments (all that remain)

171
    # parse out includes
M
Mark VanderVoord 已提交
172
    includes = {
173 174 175
      local: source.scan(/^\s*#include\s+\"\s*(.+)\.[hH]\s*\"/).flatten,
      system: source.scan(/^\s*#include\s+<\s*(.+)\s*>/).flatten.map { |inc| "<#{inc}>" },
      linkonly: source.scan(/^TEST_FILE\(\s*\"\s*(.+)\.[cC]\w*\s*\"/).flatten
M
Mark VanderVoord 已提交
176
    }
177
    includes
M
Mark VanderVoord 已提交
178 179 180 181
  end

  def find_mocks(includes)
    mock_headers = []
182 183
    includes.each do |include_path|
      include_file = File.basename(include_path)
184
      mock_headers << include_path if include_file =~ /^#{@options[:mock_prefix]}.*#{@options[:mock_suffix]}$/i
M
Mark VanderVoord 已提交
185
    end
186
    mock_headers
M
Mark VanderVoord 已提交
187 188
  end

189
  def find_setup_and_teardown(source)
190 191 192 193
    @options[:has_setup] = source =~ /void\s+#{@options[:setup_name]}\s*\(/
    @options[:has_teardown] = source =~ /void\s+#{@options[:teardown_name]}\s*\(/
    @options[:has_suite_setup] ||= (source =~ /void\s+suiteSetUp\s*\(/)
    @options[:has_suite_teardown] ||= (source =~ /void\s+suiteTearDown\s*\(/)
194 195
  end

196
  def create_header(output, mocks, testfile_includes = [])
M
Mark VanderVoord 已提交
197
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
198
    output.puts("\n/*=======Automagically Detected Files To Include=====*/")
J
John Lindgren 已提交
199
    output.puts("#include \"#{@options[:framework]}.h\"")
200 201
    output.puts('#include "cmock.h"') unless mocks.empty?
    if @options[:defines] && !@options[:defines].empty?
202
      @options[:defines].each { |d| output.puts("#ifndef #{d}\n#define #{d}\n#endif /* #{d} */") }
203
    end
204
    if @options[:header_file] && !@options[:header_file].empty?
M
Mark VanderVoord 已提交
205 206 207
      output.puts("#include \"#{File.basename(@options[:header_file])}\"")
    else
      @options[:includes].flatten.uniq.compact.each do |inc|
208
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
209 210
      end
      testfile_includes.each do |inc|
211
        output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
212 213 214
      end
    end
    mocks.each do |mock|
215
      output.puts("#include \"#{mock.gsub('.h', '')}.h\"")
M
Mark VanderVoord 已提交
216
    end
217
    output.puts('#include "CException.h"') if @options[:plugins].include?(:cexception)
218 219 220 221 222 223 224

    return unless @options[:enforce_strict_ordering]

    output.puts('')
    output.puts('int GlobalExpectCount;')
    output.puts('int GlobalVerifyOrder;')
    output.puts('char* GlobalOrderError;')
M
Mark VanderVoord 已提交
225 226
  end

227
  def create_externs(output, tests, _mocks)
228
    output.puts("\n/*=======External Functions This Runner Calls=====*/")
229 230
    output.puts("extern void #{@options[:setup_name]}(void);")
    output.puts("extern void #{@options[:teardown_name]}(void);")
231
    output.puts("\n#ifdef __cplusplus\nextern \"C\"\n{\n#endif") if @options[:externc]
M
Mark VanderVoord 已提交
232 233 234
    tests.each do |test|
      output.puts("extern void #{test[:test]}(#{test[:call] || 'void'});")
    end
235
    output.puts("#ifdef __cplusplus\n}\n#endif") if @options[:externc]
M
Mark VanderVoord 已提交
236 237 238
    output.puts('')
  end

239
  def create_mock_management(output, mock_headers)
240 241 242
    output.puts("\n/*=======Mock Management=====*/")
    output.puts('static void CMock_Init(void)')
    output.puts('{')
M
Mark VanderVoord 已提交
243

244 245 246 247
    if @options[:enforce_strict_ordering]
      output.puts('  GlobalExpectCount = 0;')
      output.puts('  GlobalVerifyOrder = 0;')
      output.puts('  GlobalOrderError = NULL;')
M
Mark VanderVoord 已提交
248 249
    end

250 251 252 253
    mocks = mock_headers.map { |mock| File.basename(mock) }
    mocks.each do |mock|
      mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
      output.puts("  #{mock_clean}_Init();")
M
Mark VanderVoord 已提交
254
    end
255 256 257 258 259 260 261
    output.puts("}\n")

    output.puts('static void CMock_Verify(void)')
    output.puts('{')
    mocks.each do |mock|
      mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
      output.puts("  #{mock_clean}_Verify();")
M
Mark VanderVoord 已提交
262
    end
263 264 265 266 267 268 269 270 271 272 273
    output.puts("}\n")

    output.puts('static void CMock_Destroy(void)')
    output.puts('{')
    mocks.each do |mock|
      mock_clean = TypeSanitizer.sanitize_c_identifier(mock)
      output.puts("  #{mock_clean}_Destroy();")
    end
    output.puts("}\n")
  end

274 275
  def create_setup(output)
    return if @options[:has_setup]
M
mvandervoord 已提交
276

277 278 279 280 281 282
    output.puts("\n/*=======Setup (stub)=====*/")
    output.puts("void #{@options[:setup_name]}(void) {}")
  end

  def create_teardown(output)
    return if @options[:has_teardown]
M
mvandervoord 已提交
283

284 285 286 287
    output.puts("\n/*=======Teardown (stub)=====*/")
    output.puts("void #{@options[:teardown_name]}(void) {}")
  end

288
  def create_suite_setup(output)
289
    return if @options[:suite_setup].nil?
M
mvandervoord 已提交
290

291 292 293 294 295
    output.puts("\n/*=======Suite Setup=====*/")
    output.puts('void suiteSetUp(void)')
    output.puts('{')
    output.puts(@options[:suite_setup])
    output.puts('}')
296 297 298
  end

  def create_suite_teardown(output)
299
    return if @options[:suite_teardown].nil?
M
mvandervoord 已提交
300

301 302 303 304 305
    output.puts("\n/*=======Suite Teardown=====*/")
    output.puts('int suiteTearDown(int num_failures)')
    output.puts('{')
    output.puts(@options[:suite_teardown])
    output.puts('}')
M
Mark VanderVoord 已提交
306 307
  end

308
  def create_reset(output)
309
    output.puts("\n/*=======Test Reset Options=====*/")
310 311
    output.puts("void #{@options[:test_reset_name]}(void);")
    output.puts("void #{@options[:test_reset_name]}(void)")
312
    output.puts('{')
313
    output.puts("  #{@options[:teardown_name]}();")
314 315 316
    output.puts('  CMock_Verify();')
    output.puts('  CMock_Destroy();')
    output.puts('  CMock_Init();')
317
    output.puts("  #{@options[:setup_name]}();")
318
    output.puts('}')
319 320 321 322 323
    output.puts("void #{@options[:test_verify_name]}(void);")
    output.puts("void #{@options[:test_verify_name]}(void)")
    output.puts('{')
    output.puts('  CMock_Verify();')
    output.puts('}')
M
Mark VanderVoord 已提交
324 325
  end

326 327 328 329 330 331 332 333
  def create_run_test(output)
    require 'erb'
    template = ERB.new(File.read(File.join(__dir__, 'run_test.erb')))
    output.puts(template.result(binding))
  end

  def create_args_wrappers(output, tests)
    return unless @options[:use_param_tests]
M
mvandervoord 已提交
334

335 336 337
    output.puts("\n/*=======Parameterized Test Wrappers=====*/")
    tests.each do |test|
      next if test[:args].nil? || test[:args].empty?
M
mvandervoord 已提交
338

339 340 341 342 343 344 345 346 347
      test[:args].each.with_index(1) do |args, idx|
        output.puts("static void runner_args#{idx}_#{test[:test]}(void)")
        output.puts('{')
        output.puts("    #{test[:test]}(#{args});")
        output.puts("}\n")
      end
    end
  end

M
Mark VanderVoord 已提交
348
  def create_main(output, filename, tests, used_mocks)
349
    output.puts("\n\n/*=======MAIN=====*/")
350 351 352
    main_name = @options[:main_name].to_sym == :auto ? "main_#{filename.gsub('.c', '')}" : (@options[:main_name]).to_s
    if @options[:cmdline_args]
      if main_name != 'main'
353 354
        output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv);")
      end
355
      output.puts("#{@options[:main_export_decl]} int #{main_name}(int argc, char** argv)")
356 357 358 359 360 361 362 363
      output.puts('{')
      output.puts('  int parse_status = UnityParseOptions(argc, argv);')
      output.puts('  if (parse_status != 0)')
      output.puts('  {')
      output.puts('    if (parse_status < 0)')
      output.puts('    {')
      output.puts("      UnityPrint(\"#{filename.gsub('.c', '')}.\");")
      output.puts('      UNITY_PRINT_EOL();')
364 365 366 367 368 369 370
      tests.each do |test|
        if (!@options[:use_param_tests]) || test[:args].nil? || test[:args].empty?
          output.puts("      UnityPrint(\"  #{test[:test]}\");")
          output.puts('      UNITY_PRINT_EOL();')
        else
          test[:args].each do |args|
            output.puts("      UnityPrint(\"  #{test[:test]}(#{args})\");")
371
            output.puts('      UNITY_PRINT_EOL();')
372 373 374
          end
        end
      end
375
      output.puts('      return 0;')
376
      output.puts('    }')
377
      output.puts('    return parse_status;')
378
      output.puts('  }')
379
    else
380
      main_return = @options[:omit_begin_end] ? 'void' : 'int'
381
      if main_name != 'main'
382
        output.puts("#{@options[:main_export_decl]} #{main_return} #{main_name}(void);")
383
      end
384
      output.puts("#{main_return} #{main_name}(void)")
385
      output.puts('{')
386
    end
387
    output.puts('  suiteSetUp();') if @options[:has_suite_setup]
388 389 390 391 392
    if @options[:omit_begin_end]
      output.puts("  UnitySetTestFile(\"#{filename.gsub(/\\/, '\\\\\\')}\");")
    else
      output.puts("  UnityBegin(\"#{filename.gsub(/\\/, '\\\\\\')}\");")
    end
393 394 395 396 397 398 399 400
    tests.each do |test|
      if (!@options[:use_param_tests]) || test[:args].nil? || test[:args].empty?
        output.puts("  run_test(#{test[:test]}, \"#{test[:test]}\", #{test[:line_number]});")
      else
        test[:args].each.with_index(1) do |args, idx|
          wrapper = "runner_args#{idx}_#{test[:test]}"
          testname = "#{test[:test]}(#{args})".dump
          output.puts("  run_test(#{wrapper}, #{testname}, #{test[:line_number]});")
M
Mark VanderVoord 已提交
401 402 403
        end
      end
    end
404 405
    output.puts
    output.puts('  CMock_Guts_MemFreeFinal();') unless used_mocks.empty?
406
    if @options[:has_suite_teardown]
407 408 409 410 411
      if @options[:omit_begin_end]
        output.puts('  (void) suite_teardown(0);')
      else
        output.puts('  return suiteTearDown(UnityEnd());')
      end
412
    else
413
      output.puts('  return UnityEnd();') if not @options[:omit_begin_end]
414
    end
415
    output.puts('}')
M
Mark VanderVoord 已提交
416 417
  end

P
Peter Mendham 已提交
418
  def create_h_file(output, filename, tests, testfile_includes, used_mocks)
419 420
    filename = File.basename(filename).gsub(/[-\/\\\.\,\s]/, '_').upcase
    output.puts('/* AUTOGENERATED FILE. DO NOT EDIT. */')
M
Mark VanderVoord 已提交
421 422
    output.puts("#ifndef _#{filename}")
    output.puts("#define _#{filename}\n\n")
423 424
    output.puts("#include \"#{@options[:framework]}.h\"")
    output.puts('#include "cmock.h"') unless used_mocks.empty?
M
Mark VanderVoord 已提交
425
    @options[:includes].flatten.uniq.compact.each do |inc|
426
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
427 428
    end
    testfile_includes.each do |inc|
429
      output.puts("#include #{inc.include?('<') ? inc : "\"#{inc.gsub('.h', '')}.h\""}")
M
Mark VanderVoord 已提交
430 431
    end
    output.puts "\n"
432
    tests.each do |test|
433
      if test[:params].nil? || test[:params].empty?
P
Peter Mendham 已提交
434 435 436 437 438
        output.puts("void #{test[:test]}(void);")
      else
        output.puts("void #{test[:test]}(#{test[:params]});")
      end
    end
M
Mark VanderVoord 已提交
439 440 441 442
    output.puts("#endif\n\n")
  end
end

443
if $0 == __FILE__
444
  options = { includes: [] }
M
Mark VanderVoord 已提交
445

446
  # parse out all the options first (these will all be removed as we go)
M
Mark VanderVoord 已提交
447
  ARGV.reject! do |arg|
448
    case arg
449
    when '-cexception'
450 451
      options[:plugins] = [:cexception]
      true
452
    when /\.*\.ya?ml/
453 454
      options = UnityTestRunnerGenerator.grab_config(arg)
      true
455
    when /--(\w+)=\"?(.*)\"?/
456 457
      options[Regexp.last_match(1).to_sym] = Regexp.last_match(2)
      true
458
    when /\.*\.h/
459 460 461
      options[:includes] << arg
      true
    else false
M
Mark VanderVoord 已提交
462 463 464
    end
  end

465 466
  # make sure there is at least one parameter left (the input file)
  unless ARGV[0]
M
Mark VanderVoord 已提交
467
    puts ["\nusage: ruby #{__FILE__} (files) (options) input_test_file (output)",
468 469 470 471 472 473 474 475
          "\n  input_test_file         - this is the C file you want to create a runner for",
          '  output                  - this is the name of the runner file to generate',
          '                            defaults to (input_test_file)_Runner',
          '  files:',
          '    *.yml / *.yaml        - loads configuration from here in :unity or :cmock',
          '    *.h                   - header files are added as #includes in runner',
          '  options:',
          '    -cexception           - include cexception support',
476
          '    -externc              - add extern "C" for cpp support',
477 478 479 480
          '    --setup_name=""       - redefine setUp func name to something else',
          '    --teardown_name=""    - redefine tearDown func name to something else',
          '    --main_name=""        - redefine main func name to something else',
          '    --test_prefix=""      - redefine test prefix from default test|spec|should',
481
          '    --test_reset_name=""  - redefine resetTest func name to something else',
482
          '    --test_verify_name="" - redefine verifyTest func name to something else',
483 484 485
          '    --suite_setup=""      - code to execute for setup of entire suite',
          '    --suite_teardown=""   - code to execute for teardown of entire suite',
          '    --use_param_tests=1   - enable parameterized tests (disabled by default)',
486
          '    --omit_begin_end=1    - omit calls to UnityBegin and UnityEnd (disabled by default)',
487
          '    --header_file=""      - path/name of test header file to generate too'].join("\n")
M
Mark VanderVoord 已提交
488 489 490
    exit 1
  end

491 492
  # create the default test runner name if not specified
  ARGV[1] = ARGV[0].gsub('.c', '_Runner.c') unless ARGV[1]
M
Mark VanderVoord 已提交
493

494
  UnityTestRunnerGenerator.new(options).run(ARGV[0], ARGV[1])
495
end