Lines Matching refs:tests
71 tests = find_tests(source)
80 generate(input_file, output_file, tests, used_mocks, testfile_includes)
90 def generate(input_file, output_file, tests, used_mocks, testfile_includes)
93 create_externs(output, tests, used_mocks)
100 create_run_test(output) unless tests.empty?
101 create_args_wrappers(output, tests)
102 create_main(output, input_file, tests, used_mocks)
108 create_h_file(output, @options[:header_file], tests, testfile_includes, used_mocks)
135 # find tests
188 # determine line numbers and create tests to run
273 def create_externs(output, tests, _mocks)
278 tests.each do |test|
379 def create_args_wrappers(output, tests)
383 tests.each do |test|
395 def create_main(output, filename, tests, used_mocks)
411 tests.each do |test|
440 tests.each do |test|
465 def create_h_file(output, filename, tests, testfile_includes, used_mocks)
479 tests.each do |test|
535 ' --use_param_tests=1 - enable parameterized tests (disabled by default)',